victorioșii-din-bucurești-2012.html 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  1. <table>
  2. <tr class="ro2">
  3. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  4. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  5. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  6. <td style="text-align:right; width:0.894cm; " class="ce4"><p>1</p></td>
  7. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  8. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  9. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PRIGOAN&#258; VASILE-SILVIU</p></td>
  10. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  11. <td style="text-align:right; width:2.321cm; " class="ce4"><p>22</p></td>
  12. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  13. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1963</p></td>
  14. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  15. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  16. </tr>
  17. <tr class="ro2">
  18. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  19. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  20. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  21. <td style="text-align:right; width:0.894cm; " class="ce4"><p>2</p></td>
  22. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  23. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  24. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CRETU SIMONA</p></td>
  25. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  26. <td style="text-align:right; width:2.321cm; " class="ce4"><p>29</p></td>
  27. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  28. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1979</p></td>
  29. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  30. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  31. </tr>
  32. <tr class="ro2">
  33. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  34. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  35. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  36. <td style="text-align:right; width:0.894cm; " class="ce4"><p>3</p></td>
  37. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  38. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  39. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DEACONESCU IONEL-CRISTINEL</p></td>
  40. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  41. <td style="text-align:right; width:2.321cm; " class="ce4"><p>22</p></td>
  42. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  43. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1967</p></td>
  44. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  45. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  46. </tr>
  47. <tr class="ro2">
  48. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  49. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  50. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  51. <td style="text-align:right; width:0.894cm; " class="ce4"><p>4</p></td>
  52. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  53. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  54. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#354;UGUREL MARIUS-CRISTIAN</p></td>
  55. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  56. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  57. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  58. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1980</p></td>
  59. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  60. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  61. </tr>
  62. <tr class="ro2">
  63. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  64. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  65. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  66. <td style="text-align:right; width:0.894cm; " class="ce4"><p>5</p></td>
  67. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  68. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  69. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ILIESCU C&#258;T&#258;LIN-LUCIAN</p></td>
  70. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  71. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  72. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  73. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  74. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  75. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  76. </tr>
  77. <tr class="ro2">
  78. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  79. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  80. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  81. <td style="text-align:right; width:0.894cm; " class="ce4"><p>6</p></td>
  82. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  83. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  84. <td style="text-align:left;width:10.068cm; " class="ce4"><p>RAICU MIRCEA-CRISTIAN</p></td>
  85. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  86. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  87. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  88. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1961</p></td>
  89. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  90. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  91. </tr>
  92. <tr class="ro2">
  93. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  94. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  95. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  96. <td style="text-align:right; width:0.894cm; " class="ce4"><p>7</p></td>
  97. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  98. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  99. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VL&#258;DAN FLORIN-LAUREN&#354;IU</p></td>
  100. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  101. <td style="text-align:right; width:2.321cm; " class="ce4"><p>30</p></td>
  102. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  103. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1979</p></td>
  104. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  105. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  106. </tr>
  107. <tr class="ro2">
  108. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  109. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  110. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  111. <td style="text-align:right; width:0.894cm; " class="ce4"><p>8</p></td>
  112. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  113. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  114. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICOLIN TIBERIU-IONEL</p></td>
  115. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  116. <td style="text-align:right; width:2.321cm; " class="ce4"><p>7</p></td>
  117. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  118. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  119. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  120. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  121. </tr>
  122. <tr class="ro2">
  123. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  124. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  125. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  126. <td style="text-align:right; width:0.894cm; " class="ce4"><p>9</p></td>
  127. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  128. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  129. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DINU MARIA-MIRELA</p></td>
  130. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  131. <td style="text-align:right; width:2.321cm; " class="ce4"><p>4</p></td>
  132. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  133. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  134. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  135. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  136. </tr>
  137. <tr class="ro2">
  138. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  139. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  140. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  141. <td style="text-align:right; width:0.894cm; " class="ce4"><p>10</p></td>
  142. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  143. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  144. <td style="text-align:left;width:10.068cm; " class="ce4"><p>V&#258;DUVA SILVIU</p></td>
  145. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  146. <td style="text-align:right; width:2.321cm; " class="ce4"><p>4</p></td>
  147. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  148. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1974</p></td>
  149. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  150. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  151. </tr>
  152. <tr class="ro2">
  153. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  154. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  155. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  156. <td style="text-align:right; width:0.894cm; " class="ce4"><p>11</p></td>
  157. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  158. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  159. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#350;TE&#354;CO IOAN</p></td>
  160. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  161. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  162. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  163. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1957</p></td>
  164. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  165. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  166. </tr>
  167. <tr class="ro2">
  168. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  169. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  170. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  171. <td style="text-align:right; width:0.894cm; " class="ce4"><p>12</p></td>
  172. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  173. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  174. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TICA HORA&#354;IU-FLORIN</p></td>
  175. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  176. <td style="text-align:right; width:2.321cm; " class="ce4"><p>7</p></td>
  177. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  178. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  179. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  180. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  181. </tr>
  182. <tr class="ro2">
  183. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  184. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  185. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  186. <td style="text-align:right; width:0.894cm; " class="ce4"><p>13</p></td>
  187. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  188. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  189. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VOICU MIHAI</p></td>
  190. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  191. <td style="text-align:right; width:2.321cm; " class="ce4"><p>29</p></td>
  192. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  193. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1950</p></td>
  194. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  195. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  196. </tr>
  197. <tr class="ro2">
  198. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  199. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  200. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  201. <td style="text-align:right; width:0.894cm; " class="ce4"><p>14</p></td>
  202. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  203. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  204. <td style="text-align:left;width:10.068cm; " class="ce4"><p>P&Icirc;RVU COSMIN GABRIEL</p></td>
  205. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  206. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  207. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  208. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  209. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  210. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  211. </tr>
  212. <tr class="ro2">
  213. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  214. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  215. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  216. <td style="text-align:right; width:0.894cm; " class="ce4"><p>15</p></td>
  217. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  218. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  219. <td style="text-align:left;width:10.068cm; " class="ce4"><p>IONESCU BOGDAN</p></td>
  220. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  221. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  222. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  223. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  224. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  225. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  226. </tr>
  227. <tr class="ro2">
  228. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  229. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  230. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  231. <td style="text-align:right; width:0.894cm; " class="ce4"><p>16</p></td>
  232. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  233. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  234. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MIHAILOVICI VIRGINIA</p></td>
  235. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  236. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  237. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  238. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1957</p></td>
  239. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  240. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  241. </tr>
  242. <tr class="ro2">
  243. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  244. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  245. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  246. <td style="text-align:right; width:0.894cm; " class="ce4"><p>17</p></td>
  247. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  248. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  249. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#350;ERBAN NICOLAE</p></td>
  250. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  251. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  252. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  253. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  254. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  255. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  256. </tr>
  257. <tr class="ro2">
  258. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  259. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  260. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  261. <td style="text-align:right; width:0.894cm; " class="ce4"><p>18</p></td>
  262. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  263. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  264. <td style="text-align:left;width:10.068cm; " class="ce4"><p>G&Acirc;F-DEAC IOAN</p></td>
  265. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  266. <td style="text-align:right; width:2.321cm; " class="ce4"><p>11</p></td>
  267. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  268. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1980</p></td>
  269. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  270. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  271. </tr>
  272. <tr class="ro2">
  273. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  274. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  275. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  276. <td style="text-align:right; width:0.894cm; " class="ce4"><p>19</p></td>
  277. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  278. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  279. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CHIRI&#350; MARIANA</p></td>
  280. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  281. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  282. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  283. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1950</p></td>
  284. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  285. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  286. </tr>
  287. <tr class="ro2">
  288. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  289. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  290. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  291. <td style="text-align:right; width:0.894cm; " class="ce4"><p>20</p></td>
  292. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  293. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  294. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SILAGHI RADU</p></td>
  295. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  296. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  297. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  298. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  299. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  300. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  301. </tr>
  302. <tr class="ro2">
  303. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  304. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  305. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  306. <td style="text-align:right; width:0.894cm; " class="ce4"><p>21</p></td>
  307. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  308. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  309. <td style="text-align:left;width:10.068cm; " class="ce4"><p>UNTARU VIRGIL</p></td>
  310. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  311. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  312. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  313. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1947</p></td>
  314. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  315. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  316. </tr>
  317. <tr class="ro2">
  318. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  319. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  320. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  321. <td style="text-align:right; width:0.894cm; " class="ce4"><p>22</p></td>
  322. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  323. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  324. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ANASTASESCU ALEXANDRU-NOROCEL</p></td>
  325. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  326. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  327. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  328. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1971</p></td>
  329. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  330. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  331. </tr>
  332. <tr class="ro2">
  333. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  334. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  335. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  336. <td style="text-align:right; width:0.894cm; " class="ce4"><p>23</p></td>
  337. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  338. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  339. <td style="text-align:left;width:10.068cm; " class="ce4"><p>IONESCU DAN-CEZAR</p></td>
  340. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  341. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  342. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  343. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1958</p></td>
  344. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  345. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  346. </tr>
  347. <tr class="ro2">
  348. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  349. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  350. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  351. <td style="text-align:right; width:0.894cm; " class="ce4"><p>24</p></td>
  352. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  353. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  354. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DR&#258;GAN ROMEO-IONEL</p></td>
  355. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  356. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  357. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  358. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  359. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  360. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  361. </tr>
  362. <tr class="ro2">
  363. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  364. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  365. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  366. <td style="text-align:right; width:0.894cm; " class="ce4"><p>25</p></td>
  367. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  368. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  369. <td style="text-align:left;width:10.068cm; " class="ce4"><p>OPREA CRISTINA-MARIANA</p></td>
  370. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  371. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  372. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  373. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  374. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  375. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  376. </tr>
  377. <tr class="ro2">
  378. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  379. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  380. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  381. <td style="text-align:right; width:0.894cm; " class="ce4"><p>26</p></td>
  382. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  383. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  384. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ALMA&#350;I ALEXANDRU BOGDAN</p></td>
  385. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  386. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  387. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  388. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1981</p></td>
  389. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  390. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  391. </tr>
  392. <tr class="ro2">
  393. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  394. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  395. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  396. <td style="text-align:right; width:0.894cm; " class="ce4"><p>27</p></td>
  397. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  398. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  399. <td style="text-align:left;width:10.068cm; " class="ce4"><p>LUNGU FLORIN-GABRIEL</p></td>
  400. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  401. <td style="text-align:right; width:2.321cm; " class="ce4"><p>30</p></td>
  402. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  403. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1970</p></td>
  404. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  405. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  406. </tr>
  407. <tr class="ro2">
  408. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  409. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  410. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  411. <td style="text-align:right; width:0.894cm; " class="ce4"><p>28</p></td>
  412. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  413. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  414. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TRU&#350;C&#258; MU&#350;AT FLORIAN</p></td>
  415. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  416. <td style="text-align:right; width:2.321cm; " class="ce4"><p>27</p></td>
  417. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  418. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  419. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  420. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  421. </tr>
  422. <tr class="ro2">
  423. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  424. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  425. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  426. <td style="text-align:right; width:0.894cm; " class="ce4"><p>29</p></td>
  427. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  428. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  429. <td style="text-align:left;width:10.068cm; " class="ce4"><p>T&#258;LM&#258;CEAN C&#258;T&#258;LIN-EDMOND</p></td>
  430. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  431. <td style="text-align:right; width:2.321cm; " class="ce4"><p>20</p></td>
  432. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  433. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1967</p></td>
  434. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  435. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  436. </tr>
  437. <tr class="ro2">
  438. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  439. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  440. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  441. <td style="text-align:right; width:0.894cm; " class="ce4"><p>30</p></td>
  442. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  443. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  444. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NEAGU MIHAI</p></td>
  445. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  446. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  447. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  448. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  449. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  450. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  451. </tr>
  452. <tr class="ro2">
  453. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  454. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  455. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  456. <td style="text-align:right; width:0.894cm; " class="ce4"><p>31</p></td>
  457. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  458. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  459. <td style="text-align:left;width:10.068cm; " class="ce4"><p>F&#258;LCESCU JEAN-ANDREI</p></td>
  460. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  461. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  462. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  463. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1981</p></td>
  464. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  465. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  466. </tr>
  467. <tr class="ro2">
  468. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  469. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  470. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  471. <td style="text-align:right; width:0.894cm; " class="ce4"><p>32</p></td>
  472. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  473. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  474. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#354;OLEA IONU&#354;</p></td>
  475. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  476. <td style="text-align:right; width:2.321cm; " class="ce4"><p>7</p></td>
  477. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  478. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1983</p></td>
  479. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  480. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  481. </tr>
  482. <tr class="ro2">
  483. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  484. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  485. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  486. <td style="text-align:right; width:0.894cm; " class="ce4"><p>33</p></td>
  487. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  488. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  489. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MU&#350;AT CRISTINA</p></td>
  490. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  491. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  492. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  493. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1958</p></td>
  494. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  495. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  496. </tr>
  497. <tr class="ro2">
  498. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  499. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  500. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  501. <td style="text-align:right; width:0.894cm; " class="ce4"><p>34</p></td>
  502. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  503. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  504. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TUDOR-POPESCU CRISTIAN</p></td>
  505. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  506. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  507. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  508. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1967</p></td>
  509. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  510. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  511. </tr>
  512. <tr class="ro2">
  513. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  514. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  515. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  516. <td style="text-align:right; width:0.894cm; " class="ce4"><p>35</p></td>
  517. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  518. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  519. <td style="text-align:left;width:10.068cm; " class="ce4"><p>STOICAN VICHI-&#350;TEFANIA</p></td>
  520. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  521. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  522. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  523. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1980</p></td>
  524. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  525. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  526. </tr>
  527. <tr class="ro2">
  528. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  529. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  530. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  531. <td style="text-align:right; width:0.894cm; " class="ce4"><p>36</p></td>
  532. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  533. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  534. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPESCU MARIAN-RADU</p></td>
  535. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  536. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  537. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  538. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  539. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  540. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  541. </tr>
  542. <tr class="ro2">
  543. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  544. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  545. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  546. <td style="text-align:right; width:0.894cm; " class="ce4"><p>37</p></td>
  547. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  548. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  549. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GROZA GHEORGHE</p></td>
  550. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  551. <td style="text-align:right; width:2.321cm; " class="ce4"><p>10</p></td>
  552. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  553. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1950</p></td>
  554. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  555. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  556. </tr>
  557. <tr class="ro2">
  558. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  559. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  560. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  561. <td style="text-align:right; width:0.894cm; " class="ce4"><p>38</p></td>
  562. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  563. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  564. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CLINCEANU &#350;TEFAN-GIUSEPPE</p></td>
  565. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  566. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  567. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  568. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1971</p></td>
  569. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  570. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  571. </tr>
  572. <tr class="ro2">
  573. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  574. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  575. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  576. <td style="text-align:right; width:0.894cm; " class="ce4"><p>39</p></td>
  577. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  578. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  579. <td style="text-align:left;width:10.068cm; " class="ce4"><p>OPRESCU CONSTANTIN</p></td>
  580. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  581. <td style="text-align:right; width:2.321cm; " class="ce4"><p>20</p></td>
  582. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  583. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  584. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  585. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  586. </tr>
  587. <tr class="ro2">
  588. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  589. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  590. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  591. <td style="text-align:right; width:0.894cm; " class="ce4"><p>40</p></td>
  592. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  593. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  594. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICULAE ION</p></td>
  595. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  596. <td style="text-align:right; width:2.321cm; " class="ce4"><p>14</p></td>
  597. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  598. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  599. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  600. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  601. </tr>
  602. <tr class="ro2">
  603. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  604. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  605. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  606. <td style="text-align:right; width:0.894cm; " class="ce4"><p>41</p></td>
  607. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  608. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  609. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MIHALCEA &#350;TEFAN</p></td>
  610. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  611. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  612. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  613. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1957</p></td>
  614. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  615. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  616. </tr>
  617. <tr class="ro2">
  618. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  619. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  620. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  621. <td style="text-align:right; width:0.894cm; " class="ce4"><p>42</p></td>
  622. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  623. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  624. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TOMA VERONICA</p></td>
  625. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  626. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  627. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  628. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1963</p></td>
  629. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  630. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  631. </tr>
  632. <tr class="ro2">
  633. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  634. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  635. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  636. <td style="text-align:right; width:0.894cm; " class="ce4"><p>43</p></td>
  637. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  638. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  639. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MIRESCU IULIA</p></td>
  640. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  641. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  642. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  643. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1956</p></td>
  644. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  645. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  646. </tr>
  647. <tr class="ro2">
  648. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  649. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  650. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  651. <td style="text-align:right; width:0.894cm; " class="ce4"><p>44</p></td>
  652. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  653. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  654. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PASCU BOGDAN</p></td>
  655. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  656. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  657. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  658. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  659. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  660. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  661. </tr>
  662. <tr class="ro2">
  663. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  664. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  665. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  666. <td style="text-align:right; width:0.894cm; " class="ce4"><p>45</p></td>
  667. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  668. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  669. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICOLA GIGI</p></td>
  670. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  671. <td style="text-align:right; width:2.321cm; " class="ce4"><p>19</p></td>
  672. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  673. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  674. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  675. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  676. </tr>
  677. <tr class="ro2">
  678. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  679. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  680. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  681. <td style="text-align:right; width:0.894cm; " class="ce4"><p>46</p></td>
  682. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  683. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  684. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GAI&#350; CONSTANTIN</p></td>
  685. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  686. <td style="text-align:right; width:2.321cm; " class="ce4"><p>10</p></td>
  687. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  688. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  689. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  690. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  691. </tr>
  692. <tr class="ro2">
  693. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  694. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  695. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  696. <td style="text-align:right; width:0.894cm; " class="ce4"><p>47</p></td>
  697. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  698. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  699. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PRUN&#258; TUDOREL</p></td>
  700. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  701. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  702. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  703. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1954</p></td>
  704. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  705. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  706. </tr>
  707. <tr class="ro2">
  708. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  709. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  710. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  711. <td style="text-align:right; width:0.894cm; " class="ce4"><p>48</p></td>
  712. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  713. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  714. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CIUFUDEAN NICOLETA-IOANA</p></td>
  715. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  716. <td style="text-align:right; width:2.321cm; " class="ce4"><p>19</p></td>
  717. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  718. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  719. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  720. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  721. </tr>
  722. <tr class="ro2">
  723. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  724. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  725. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  726. <td style="text-align:right; width:0.894cm; " class="ce4"><p>49</p></td>
  727. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  728. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  729. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPA VIOREL-STELIAN</p></td>
  730. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  731. <td style="text-align:right; width:2.321cm; " class="ce4"><p>13</p></td>
  732. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  733. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1972</p></td>
  734. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  735. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  736. </tr>
  737. <tr class="ro2">
  738. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  739. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  740. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  741. <td style="text-align:right; width:0.894cm; " class="ce4"><p>50</p></td>
  742. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  743. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  744. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VI&#350;OIU NICOLETA</p></td>
  745. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  746. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  747. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  748. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1966</p></td>
  749. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  750. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  751. </tr>
  752. <tr class="ro2">
  753. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  754. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  755. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  756. <td style="text-align:right; width:0.894cm; " class="ce4"><p>51</p></td>
  757. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  758. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  759. <td style="text-align:left;width:10.068cm; " class="ce4"><p>STACOJIU VICTOR-CLAUDIU</p></td>
  760. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  761. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  762. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  763. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  764. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  765. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  766. </tr>
  767. <tr class="ro2">
  768. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  769. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  770. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  771. <td style="text-align:right; width:0.894cm; " class="ce4"><p>52</p></td>
  772. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  773. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  774. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MITU MARIUS-EDUARD</p></td>
  775. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  776. <td style="text-align:right; width:2.321cm; " class="ce4"><p>27</p></td>
  777. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  778. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1983</p></td>
  779. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  780. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  781. </tr>
  782. <tr class="ro2">
  783. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  784. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  785. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  786. <td style="text-align:right; width:0.894cm; " class="ce4"><p>53</p></td>
  787. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  788. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  789. <td style="text-align:left;width:10.068cm; " class="ce4"><p>STAN CHIRI&#354;&#258;</p></td>
  790. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  791. <td style="text-align:right; width:2.321cm; " class="ce4"><p>22</p></td>
  792. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  793. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1952</p></td>
  794. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  795. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  796. </tr>
  797. <tr class="ro2">
  798. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  799. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  800. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  801. <td style="text-align:right; width:0.894cm; " class="ce4"><p>54</p></td>
  802. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  803. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  804. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MUNTEANU RADU-ALEXANDRU</p></td>
  805. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  806. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  807. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  808. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1985</p></td>
  809. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  810. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  811. </tr>
  812. <tr class="ro2">
  813. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  814. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  815. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  816. <td style="text-align:right; width:0.894cm; " class="ce4"><p>55</p></td>
  817. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  818. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  819. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NI&#354;&#258; STELIC&#258;</p></td>
  820. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  821. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  822. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  823. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1955</p></td>
  824. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  825. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  826. </tr>
  827. <tr class="ro2">
  828. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  829. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  830. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  831. <td style="text-align:right; width:0.894cm; " class="ce4"><p>56</p></td>
  832. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  833. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  834. <td style="text-align:left;width:10.068cm; " class="ce4"><p>JIPA-MIH&#258;ILESCU FLORIN-AURELIAN</p></td>
  835. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  836. <td style="text-align:right; width:2.321cm; " class="ce4"><p>30</p></td>
  837. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  838. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  839. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  840. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  841. </tr>
  842. <tr class="ro2">
  843. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  844. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  845. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  846. <td style="text-align:right; width:0.894cm; " class="ce4"><p>57</p></td>
  847. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  848. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  849. <td style="text-align:left;width:10.068cm; " class="ce4"><p>LUCACIU MARIANA</p></td>
  850. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  851. <td style="text-align:right; width:2.321cm; " class="ce4"><p>19</p></td>
  852. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  853. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1949</p></td>
  854. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  855. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  856. </tr>
  857. <tr class="ro2">
  858. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  859. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  860. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  861. <td style="text-align:right; width:0.894cm; " class="ce4"><p>58</p></td>
  862. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  863. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  864. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CIOC&Acirc;RLAN C&#258;T&#258;LIN-GEORGE</p></td>
  865. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  866. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  867. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  868. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1984</p></td>
  869. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  870. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  871. </tr>
  872. <tr class="ro2">
  873. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  874. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  875. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  876. <td style="text-align:right; width:0.894cm; " class="ce4"><p>59</p></td>
  877. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  878. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  879. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ENE MIHAI</p></td>
  880. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  881. <td style="text-align:right; width:2.321cm; " class="ce4"><p>3</p></td>
  882. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  883. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1961</p></td>
  884. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  885. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  886. </tr>
  887. <tr class="ro2">
  888. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  889. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  890. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  891. <td style="text-align:right; width:0.894cm; " class="ce4"><p>60</p></td>
  892. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  893. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  894. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#354;&Icirc;RU ALEXANDRA-LAURA</p></td>
  895. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  896. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  897. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  898. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1989</p></td>
  899. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  900. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  901. </tr>
  902. <tr class="ro2">
  903. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  904. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  905. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  906. <td style="text-align:right; width:0.894cm; " class="ce4"><p>61</p></td>
  907. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  908. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  909. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BARBU MARIAN</p></td>
  910. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  911. <td style="text-align:right; width:2.321cm; " class="ce4"><p>4</p></td>
  912. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  913. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1965</p></td>
  914. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  915. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  916. </tr>
  917. <tr class="ro2">
  918. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  919. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  920. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  921. <td style="text-align:right; width:0.894cm; " class="ce4"><p>62</p></td>
  922. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  923. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  924. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BRATU IUNIANA-MARIANA</p></td>
  925. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  926. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  927. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  928. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  929. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  930. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  931. </tr>
  932. <tr class="ro2">
  933. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  934. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  935. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  936. <td style="text-align:right; width:0.894cm; " class="ce4"><p>63</p></td>
  937. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  938. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  939. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#354;ICU CRISTINA</p></td>
  940. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  941. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  942. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  943. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  944. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  945. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  946. </tr>
  947. <tr class="ro2">
  948. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  949. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  950. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  951. <td style="text-align:right; width:0.894cm; " class="ce4"><p>64</p></td>
  952. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  953. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  954. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICOLESCU RADU</p></td>
  955. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  956. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  957. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  958. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1986</p></td>
  959. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  960. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  961. </tr>
  962. <tr class="ro2">
  963. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  964. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  965. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  966. <td style="text-align:right; width:0.894cm; " class="ce4"><p>65</p></td>
  967. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  968. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  969. <td style="text-align:left;width:10.068cm; " class="ce4"><p>STOICA DUMITRU-NOREL</p></td>
  970. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  971. <td style="text-align:right; width:2.321cm; " class="ce4"><p>5</p></td>
  972. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  973. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  974. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  975. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  976. </tr>
  977. <tr class="ro2">
  978. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  979. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  980. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  981. <td style="text-align:right; width:0.894cm; " class="ce4"><p>66</p></td>
  982. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  983. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  984. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BURLACU OLEG</p></td>
  985. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  986. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  987. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  988. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  989. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  990. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  991. </tr>
  992. <tr class="ro2">
  993. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  994. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  995. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  996. <td style="text-align:right; width:0.894cm; " class="ce4"><p>67</p></td>
  997. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  998. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  999. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SIMION FLORIN</p></td>
  1000. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1001. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  1002. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1003. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1965</p></td>
  1004. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1005. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1006. </tr>
  1007. <tr class="ro2">
  1008. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1009. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1010. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1011. <td style="text-align:right; width:0.894cm; " class="ce4"><p>68</p></td>
  1012. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  1013. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  1014. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICULAE ROXANA-NICOLETA</p></td>
  1015. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1016. <td style="text-align:right; width:2.321cm; " class="ce4"><p>27</p></td>
  1017. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1018. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  1019. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1020. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1021. </tr>
  1022. <tr class="ro2">
  1023. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1024. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1025. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1026. <td style="text-align:right; width:0.894cm; " class="ce4"><p>69</p></td>
  1027. <td style="text-align:right; width:5.23cm; " class="ce4"><p>15</p></td>
  1028. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  1029. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ZAHARIA DRAGO&#350;-LAUREN&#354;IU</p></td>
  1030. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1031. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  1032. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  1033. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1962</p></td>
  1034. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1035. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1036. </tr>
  1037. <tr class="ro2">
  1038. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1039. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1040. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1041. <td style="text-align:right; width:0.894cm; " class="ce4"><p>1</p></td>
  1042. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1043. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1044. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PIEPTEA CORNEL</p></td>
  1045. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1046. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  1047. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  1048. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  1049. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1050. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1051. </tr>
  1052. <tr class="ro2">
  1053. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1054. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1055. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1056. <td style="text-align:right; width:0.894cm; " class="ce4"><p>2</p></td>
  1057. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1058. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1059. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NEGOI&#354;&#258; ROBERT SORIN</p></td>
  1060. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1061. <td style="text-align:right; width:2.321cm; " class="ce4"><p>29</p></td>
  1062. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1063. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1972</p></td>
  1064. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1065. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1066. </tr>
  1067. <tr class="ro2">
  1068. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1069. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1070. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1071. <td style="text-align:right; width:0.894cm; " class="ce4"><p>3</p></td>
  1072. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1073. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1074. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPESCU MANUELA-VIOLETA</p></td>
  1075. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1076. <td style="text-align:right; width:2.321cm; " class="ce4"><p>10</p></td>
  1077. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1078. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1968</p></td>
  1079. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1080. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1081. </tr>
  1082. <tr class="ro2">
  1083. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1084. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1085. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1086. <td style="text-align:right; width:0.894cm; " class="ce4"><p>4</p></td>
  1087. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1088. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1089. <td style="text-align:left;width:10.068cm; " class="ce4"><p>COM&#258;NICI ANCU&#354;A-SORINA</p></td>
  1090. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1091. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  1092. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  1093. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1967</p></td>
  1094. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1095. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1096. </tr>
  1097. <tr class="ro2">
  1098. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1099. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1100. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1101. <td style="text-align:right; width:0.894cm; " class="ce4"><p>5</p></td>
  1102. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1103. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1104. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NEAC&#350;U ADRIAN</p></td>
  1105. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1106. <td style="text-align:right; width:2.321cm; " class="ce4"><p>23</p></td>
  1107. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  1108. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  1109. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1110. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1111. </tr>
  1112. <tr class="ro2">
  1113. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1114. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1115. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1116. <td style="text-align:right; width:0.894cm; " class="ce4"><p>6</p></td>
  1117. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1118. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1119. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPA MARIA</p></td>
  1120. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1121. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  1122. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1123. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1953</p></td>
  1124. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1125. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1126. </tr>
  1127. <tr class="ro2">
  1128. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1129. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1130. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1131. <td style="text-align:right; width:0.894cm; " class="ce4"><p>7</p></td>
  1132. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1133. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1134. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICOLAESCU MARCEL-OCTAVIAN</p></td>
  1135. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1136. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  1137. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  1138. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1952</p></td>
  1139. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1140. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1141. </tr>
  1142. <tr class="ro2">
  1143. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1144. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1145. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1146. <td style="text-align:right; width:0.894cm; " class="ce4"><p>8</p></td>
  1147. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1148. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1149. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NAGHI GABRIEL</p></td>
  1150. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1151. <td style="text-align:right; width:2.321cm; " class="ce4"><p>22</p></td>
  1152. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1153. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1962</p></td>
  1154. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1155. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1156. </tr>
  1157. <tr class="ro2">
  1158. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1159. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1160. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1161. <td style="text-align:right; width:0.894cm; " class="ce4"><p>9</p></td>
  1162. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1163. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1164. <td style="text-align:left;width:10.068cm; " class="ce4"><p>OLTEANU CRISTIAN-MARIAN</p></td>
  1165. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1166. <td style="text-align:right; width:2.321cm; " class="ce4"><p>13</p></td>
  1167. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1168. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  1169. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1170. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1171. </tr>
  1172. <tr class="ro2">
  1173. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1174. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1175. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1176. <td style="text-align:right; width:0.894cm; " class="ce4"><p>10</p></td>
  1177. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1178. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1179. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MANOLACHE VALERIU MARIAN</p></td>
  1180. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1181. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  1182. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1183. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  1184. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1185. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1186. </tr>
  1187. <tr class="ro2">
  1188. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1189. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1190. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1191. <td style="text-align:right; width:0.894cm; " class="ce4"><p>11</p></td>
  1192. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1193. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1194. <td style="text-align:left;width:10.068cm; " class="ce4"><p>COM&#258;NESCU MIHAI</p></td>
  1195. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1196. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  1197. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1198. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  1199. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1200. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1201. </tr>
  1202. <tr class="ro2">
  1203. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1204. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1205. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1206. <td style="text-align:right; width:0.894cm; " class="ce4"><p>12</p></td>
  1207. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1208. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1209. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GIUGULA MIHAI-DORU</p></td>
  1210. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1211. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  1212. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  1213. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1956</p></td>
  1214. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1215. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1216. </tr>
  1217. <tr class="ro2">
  1218. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1219. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1220. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1221. <td style="text-align:right; width:0.894cm; " class="ce4"><p>13</p></td>
  1222. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1223. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1224. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SAVA IOAN-RAZVAN</p></td>
  1225. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1226. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  1227. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1228. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  1229. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1230. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1231. </tr>
  1232. <tr class="ro2">
  1233. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1234. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1235. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1236. <td style="text-align:right; width:0.894cm; " class="ce4"><p>14</p></td>
  1237. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1238. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1239. <td style="text-align:left;width:10.068cm; " class="ce4"><p>STAN ION</p></td>
  1240. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1241. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  1242. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1243. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  1244. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1245. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1246. </tr>
  1247. <tr class="ro2">
  1248. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1249. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1250. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1251. <td style="text-align:right; width:0.894cm; " class="ce4"><p>15</p></td>
  1252. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1253. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1254. <td style="text-align:left;width:10.068cm; " class="ce4"><p>C&Acirc;MPEANU REMUS C&#258;T&#258;LIN</p></td>
  1255. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1256. <td style="text-align:right; width:2.321cm; " class="ce4"><p>11</p></td>
  1257. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1258. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  1259. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1260. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1261. </tr>
  1262. <tr class="ro2">
  1263. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1264. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1265. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1266. <td style="text-align:right; width:0.894cm; " class="ce4"><p>16</p></td>
  1267. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1268. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1269. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PEPTAN MIHAI</p></td>
  1270. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1271. <td style="text-align:right; width:2.321cm; " class="ce4"><p>31</p></td>
  1272. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  1273. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  1274. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1275. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1276. </tr>
  1277. <tr class="ro2">
  1278. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1279. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1280. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1281. <td style="text-align:right; width:0.894cm; " class="ce4"><p>17</p></td>
  1282. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1283. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1284. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POTERA&#350;U CORNEL-CONSTANTIN</p></td>
  1285. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1286. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  1287. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  1288. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  1289. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1290. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1291. </tr>
  1292. <tr class="ro2">
  1293. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1294. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1295. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1296. <td style="text-align:right; width:0.894cm; " class="ce4"><p>18</p></td>
  1297. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1298. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1299. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DR&#258;GHICI AURELIA-GRA&#354;IELA</p></td>
  1300. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1301. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  1302. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  1303. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1965</p></td>
  1304. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1305. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1306. </tr>
  1307. <tr class="ro2">
  1308. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1309. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1310. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1311. <td style="text-align:right; width:0.894cm; " class="ce4"><p>19</p></td>
  1312. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1313. <td style="text-align:right; width:6.405cm; " class="ce4"><p>56</p></td>
  1314. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TACHE FELIX MIHAI</p></td>
  1315. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1316. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  1317. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1318. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  1319. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1320. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1321. </tr>
  1322. <tr class="ro2">
  1323. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1324. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1325. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1326. <td style="text-align:right; width:0.894cm; " class="ce4"><p>20</p></td>
  1327. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1328. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1329. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GEORGESCU BOGDAN-CRISTIAN</p></td>
  1330. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1331. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  1332. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  1333. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  1334. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1335. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1336. </tr>
  1337. <tr class="ro2">
  1338. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1339. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1340. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1341. <td style="text-align:right; width:0.894cm; " class="ce4"><p>21</p></td>
  1342. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1343. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1344. <td style="text-align:left;width:10.068cm; " class="ce4"><p>R&#258;DULESCU &#350;TEFAN-CRISTIAN</p></td>
  1345. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1346. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  1347. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1348. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  1349. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1350. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1351. </tr>
  1352. <tr class="ro2">
  1353. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1354. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1355. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1356. <td style="text-align:right; width:0.894cm; " class="ce4"><p>22</p></td>
  1357. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1358. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1359. <td style="text-align:left;width:10.068cm; " class="ce4"><p>M&#258;N&#258;STIREANU VLADIMIR ALEXANDRU</p></td>
  1360. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1361. <td style="text-align:right; width:2.321cm; " class="ce4"><p>30</p></td>
  1362. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1363. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  1364. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1365. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1366. </tr>
  1367. <tr class="ro2">
  1368. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1369. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1370. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1371. <td style="text-align:right; width:0.894cm; " class="ce4"><p>23</p></td>
  1372. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1373. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1374. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICOLAE ANDREI</p></td>
  1375. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1376. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  1377. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1378. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  1379. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1380. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1381. </tr>
  1382. <tr class="ro2">
  1383. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1384. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1385. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1386. <td style="text-align:right; width:0.894cm; " class="ce4"><p>24</p></td>
  1387. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1388. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1389. <td style="text-align:left;width:10.068cm; " class="ce4"><p>RIZOIU MIRCEA</p></td>
  1390. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1391. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  1392. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  1393. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1934</p></td>
  1394. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1395. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1396. </tr>
  1397. <tr class="ro2">
  1398. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1399. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1400. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1401. <td style="text-align:right; width:0.894cm; " class="ce4"><p>25</p></td>
  1402. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1403. <td style="text-align:right; width:6.405cm; " class="ce4"><p>56</p></td>
  1404. <td style="text-align:left;width:10.068cm; " class="ce4"><p>T&#258;L&#258;U MIHNEA-&#350;TEFAN</p></td>
  1405. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1406. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  1407. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1408. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1963</p></td>
  1409. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1410. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1411. </tr>
  1412. <tr class="ro2">
  1413. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1414. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1415. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1416. <td style="text-align:right; width:0.894cm; " class="ce4"><p>26</p></td>
  1417. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1418. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1419. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#354;APARDEL ANA-CLAUDIA</p></td>
  1420. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1421. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  1422. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  1423. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1983</p></td>
  1424. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1425. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1426. </tr>
  1427. <tr class="ro2">
  1428. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1429. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1430. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1431. <td style="text-align:right; width:0.894cm; " class="ce4"><p>27</p></td>
  1432. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1433. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1434. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ILINA ION-COSMIN</p></td>
  1435. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1436. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  1437. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  1438. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  1439. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1440. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1441. </tr>
  1442. <tr class="ro2">
  1443. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1444. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1445. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1446. <td style="text-align:right; width:0.894cm; " class="ce4"><p>28</p></td>
  1447. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1448. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1449. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPESCU DORIN</p></td>
  1450. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1451. <td style="text-align:right; width:2.321cm; " class="ce4"><p>31</p></td>
  1452. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  1453. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  1454. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1455. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1456. </tr>
  1457. <tr class="ro2">
  1458. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1459. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1460. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1461. <td style="text-align:right; width:0.894cm; " class="ce4"><p>29</p></td>
  1462. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1463. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1464. <td style="text-align:left;width:10.068cm; " class="ce4"><p>M&#258;RG&#258;RIT NICOLAE-SORIN</p></td>
  1465. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1466. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  1467. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1468. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  1469. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1470. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1471. </tr>
  1472. <tr class="ro2">
  1473. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1474. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1475. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1476. <td style="text-align:right; width:0.894cm; " class="ce4"><p>30</p></td>
  1477. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1478. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1479. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ANGELESCU RAMIRO-ROBERT-EDUARD</p></td>
  1480. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1481. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  1482. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  1483. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1979</p></td>
  1484. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1485. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1486. </tr>
  1487. <tr class="ro2">
  1488. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1489. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1490. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1491. <td style="text-align:right; width:0.894cm; " class="ce4"><p>31</p></td>
  1492. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1493. <td style="text-align:right; width:6.405cm; " class="ce4"><p>56</p></td>
  1494. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BOLOGA C&#258;T&#258;LIN-GHEORGHE</p></td>
  1495. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1496. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  1497. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  1498. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  1499. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1500. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1501. </tr>
  1502. <tr class="ro2">
  1503. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1504. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1505. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1506. <td style="text-align:right; width:0.894cm; " class="ce4"><p>32</p></td>
  1507. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1508. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1509. <td style="text-align:left;width:10.068cm; " class="ce4"><p>FLORESCU DRAGO&#350;</p></td>
  1510. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1511. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  1512. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1513. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1962</p></td>
  1514. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1515. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1516. </tr>
  1517. <tr class="ro2">
  1518. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1519. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1520. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1521. <td style="text-align:right; width:0.894cm; " class="ce4"><p>33</p></td>
  1522. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1523. <td style="text-align:right; width:6.405cm; " class="ce4"><p>56</p></td>
  1524. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MUST&#258;CIOSU &nbsp;VLAD</p></td>
  1525. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1526. <td style="text-align:right; width:2.321cm; " class="ce4"><p>3</p></td>
  1527. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  1528. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1979</p></td>
  1529. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1530. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1531. </tr>
  1532. <tr class="ro2">
  1533. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1534. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1535. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1536. <td style="text-align:right; width:0.894cm; " class="ce4"><p>34</p></td>
  1537. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1538. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1539. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PARASCHIV GIGEL</p></td>
  1540. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1541. <td style="text-align:right; width:2.321cm; " class="ce4"><p>14</p></td>
  1542. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  1543. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1966</p></td>
  1544. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1545. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1546. </tr>
  1547. <tr class="ro2">
  1548. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1549. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1550. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1551. <td style="text-align:right; width:0.894cm; " class="ce4"><p>35</p></td>
  1552. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1553. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1554. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ALEXANDRE-FONTOURA L&#258;CR&#258;MIOARA</p></td>
  1555. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1556. <td style="text-align:right; width:2.321cm; " class="ce4"><p>3</p></td>
  1557. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1558. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  1559. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1560. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1561. </tr>
  1562. <tr class="ro2">
  1563. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1564. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1565. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1566. <td style="text-align:right; width:0.894cm; " class="ce4"><p>36</p></td>
  1567. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1568. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1569. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DARABONT ALEXANDRU-DAN</p></td>
  1570. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1571. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  1572. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  1573. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  1574. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1575. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1576. </tr>
  1577. <tr class="ro2">
  1578. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1579. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1580. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1581. <td style="text-align:right; width:0.894cm; " class="ce4"><p>37</p></td>
  1582. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1583. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1584. <td style="text-align:left;width:10.068cm; " class="ce4"><p>T&#258;NASE ION-GABRIEL</p></td>
  1585. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1586. <td style="text-align:right; width:2.321cm; " class="ce4"><p>13</p></td>
  1587. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  1588. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1971</p></td>
  1589. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1590. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1591. </tr>
  1592. <tr class="ro2">
  1593. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1594. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1595. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1596. <td style="text-align:right; width:0.894cm; " class="ce4"><p>38</p></td>
  1597. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1598. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1599. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BOAJ&#258; MINIC&#258;</p></td>
  1600. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1601. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  1602. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  1603. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1954</p></td>
  1604. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1605. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1606. </tr>
  1607. <tr class="ro2">
  1608. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1609. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1610. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1611. <td style="text-align:right; width:0.894cm; " class="ce4"><p>39</p></td>
  1612. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1613. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1614. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SCARLAT HORIA</p></td>
  1615. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1616. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  1617. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  1618. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1974</p></td>
  1619. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1620. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1621. </tr>
  1622. <tr class="ro2">
  1623. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1624. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1625. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1626. <td style="text-align:right; width:0.894cm; " class="ce4"><p>40</p></td>
  1627. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1628. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1629. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MOCIOAC&#258; &#350;TEFAN ALEXANDRU</p></td>
  1630. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1631. <td style="text-align:right; width:2.321cm; " class="ce4"><p>29</p></td>
  1632. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1633. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1985</p></td>
  1634. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1635. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1636. </tr>
  1637. <tr class="ro2">
  1638. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1639. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1640. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1641. <td style="text-align:right; width:0.894cm; " class="ce4"><p>41</p></td>
  1642. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1643. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1644. <td style="text-align:left;width:10.068cm; " class="ce4"><p>T&#258;NASE ANTONEL</p></td>
  1645. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1646. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  1647. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1648. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1972</p></td>
  1649. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1650. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1651. </tr>
  1652. <tr class="ro2">
  1653. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1654. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1655. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1656. <td style="text-align:right; width:0.894cm; " class="ce4"><p>42</p></td>
  1657. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1658. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1659. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MACOVEI DOREL</p></td>
  1660. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1661. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  1662. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  1663. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1961</p></td>
  1664. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1665. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1666. </tr>
  1667. <tr class="ro2">
  1668. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1669. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1670. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1671. <td style="text-align:right; width:0.894cm; " class="ce4"><p>43</p></td>
  1672. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1673. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1674. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DOBRESCU DANA-ALEXANDRA</p></td>
  1675. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1676. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  1677. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  1678. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1984</p></td>
  1679. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1680. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1681. </tr>
  1682. <tr class="ro2">
  1683. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1684. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1685. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1686. <td style="text-align:right; width:0.894cm; " class="ce4"><p>44</p></td>
  1687. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1688. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1689. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PETER ALEXANDRINA</p></td>
  1690. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1691. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  1692. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  1693. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1961</p></td>
  1694. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1695. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1696. </tr>
  1697. <tr class="ro2">
  1698. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1699. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1700. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1701. <td style="text-align:right; width:0.894cm; " class="ce4"><p>45</p></td>
  1702. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1703. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1704. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VINTIL&#258; MARIUS &#350;TEFAN</p></td>
  1705. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1706. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  1707. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1708. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  1709. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1710. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1711. </tr>
  1712. <tr class="ro2">
  1713. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1714. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1715. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1716. <td style="text-align:right; width:0.894cm; " class="ce4"><p>46</p></td>
  1717. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1718. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1719. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NEAGU CORNELIU</p></td>
  1720. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1721. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  1722. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1723. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  1724. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1725. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1726. </tr>
  1727. <tr class="ro2">
  1728. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1729. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1730. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1731. <td style="text-align:right; width:0.894cm; " class="ce4"><p>47</p></td>
  1732. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1733. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1734. <td style="text-align:left;width:10.068cm; " class="ce4"><p>IONESCU ALEXANDRU-SILVIU</p></td>
  1735. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1736. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  1737. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1738. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  1739. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1740. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1741. </tr>
  1742. <tr class="ro2">
  1743. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1744. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1745. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1746. <td style="text-align:right; width:0.894cm; " class="ce4"><p>48</p></td>
  1747. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1748. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1749. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SITARU DAN</p></td>
  1750. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1751. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  1752. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1753. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1954</p></td>
  1754. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1755. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1756. </tr>
  1757. <tr class="ro2">
  1758. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1759. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1760. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1761. <td style="text-align:right; width:0.894cm; " class="ce4"><p>49</p></td>
  1762. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1763. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1764. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PAN&#258; GIGI</p></td>
  1765. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1766. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  1767. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  1768. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1954</p></td>
  1769. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1770. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1771. </tr>
  1772. <tr class="ro2">
  1773. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1774. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1775. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1776. <td style="text-align:right; width:0.894cm; " class="ce4"><p>50</p></td>
  1777. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1778. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1779. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ST&#258;NOI LUCIA</p></td>
  1780. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1781. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  1782. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1783. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1954</p></td>
  1784. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1785. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1786. </tr>
  1787. <tr class="ro2">
  1788. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1789. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1790. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1791. <td style="text-align:right; width:0.894cm; " class="ce4"><p>51</p></td>
  1792. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1793. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1794. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MARIN DANIELA-ALINA</p></td>
  1795. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1796. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  1797. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  1798. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  1799. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1800. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1801. </tr>
  1802. <tr class="ro2">
  1803. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1804. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1805. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1806. <td style="text-align:right; width:0.894cm; " class="ce4"><p>52</p></td>
  1807. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1808. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1809. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TIMNEA VALENTIN</p></td>
  1810. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1811. <td style="text-align:right; width:2.321cm; " class="ce4"><p>11</p></td>
  1812. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  1813. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1952</p></td>
  1814. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1815. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1816. </tr>
  1817. <tr class="ro2">
  1818. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1819. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1820. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1821. <td style="text-align:right; width:0.894cm; " class="ce4"><p>53</p></td>
  1822. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1823. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1824. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DUMITRESCU FLORIN ALEXANDRU</p></td>
  1825. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1826. <td style="text-align:right; width:2.321cm; " class="ce4"><p>3</p></td>
  1827. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1828. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  1829. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1830. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1831. </tr>
  1832. <tr class="ro2">
  1833. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1834. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1835. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1836. <td style="text-align:right; width:0.894cm; " class="ce4"><p>54</p></td>
  1837. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1838. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1839. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TR&#258;ISTARU CONSTANTIN</p></td>
  1840. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1841. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  1842. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  1843. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1957</p></td>
  1844. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1845. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1846. </tr>
  1847. <tr class="ro2">
  1848. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1849. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1850. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1851. <td style="text-align:right; width:0.894cm; " class="ce4"><p>55</p></td>
  1852. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1853. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1854. <td style="text-align:left;width:10.068cm; " class="ce4"><p>V&Icirc;LVOI ALEXANDRU</p></td>
  1855. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1856. <td style="text-align:right; width:2.321cm; " class="ce4"><p>31</p></td>
  1857. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1858. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1986</p></td>
  1859. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1860. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1861. </tr>
  1862. <tr class="ro2">
  1863. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1864. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1865. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1866. <td style="text-align:right; width:0.894cm; " class="ce4"><p>56</p></td>
  1867. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1868. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1869. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SITARU JANINA-MIRELA</p></td>
  1870. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1871. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  1872. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  1873. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  1874. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1875. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1876. </tr>
  1877. <tr class="ro2">
  1878. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1879. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1880. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1881. <td style="text-align:right; width:0.894cm; " class="ce4"><p>57</p></td>
  1882. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1883. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1884. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#350;APTEFRA&#354;I MIHAI-RADU</p></td>
  1885. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1886. <td style="text-align:right; width:2.321cm; " class="ce4"><p>5</p></td>
  1887. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1888. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  1889. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1890. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1891. </tr>
  1892. <tr class="ro2">
  1893. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1894. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1895. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1896. <td style="text-align:right; width:0.894cm; " class="ce4"><p>58</p></td>
  1897. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1898. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1899. <td style="text-align:left;width:10.068cm; " class="ce4"><p>P&#258;UNIC&#258; ADRIANA</p></td>
  1900. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1901. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  1902. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  1903. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1971</p></td>
  1904. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1905. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1906. </tr>
  1907. <tr class="ro2">
  1908. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1909. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1910. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1911. <td style="text-align:right; width:0.894cm; " class="ce4"><p>59</p></td>
  1912. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1913. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1914. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CORBU ION</p></td>
  1915. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1916. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  1917. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1918. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1951</p></td>
  1919. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1920. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1921. </tr>
  1922. <tr class="ro2">
  1923. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1924. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1925. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1926. <td style="text-align:right; width:0.894cm; " class="ce4"><p>60</p></td>
  1927. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1928. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1929. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPA GABRIEL</p></td>
  1930. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1931. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  1932. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  1933. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1960</p></td>
  1934. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1935. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1936. </tr>
  1937. <tr class="ro2">
  1938. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1939. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1940. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1941. <td style="text-align:right; width:0.894cm; " class="ce4"><p>61</p></td>
  1942. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1943. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1944. <td style="text-align:left;width:10.068cm; " class="ce4"><p>IONESCU VICTOR-LUCIAN</p></td>
  1945. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1946. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  1947. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  1948. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  1949. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1950. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1951. </tr>
  1952. <tr class="ro2">
  1953. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1954. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1955. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1956. <td style="text-align:right; width:0.894cm; " class="ce4"><p>62</p></td>
  1957. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1958. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1959. <td style="text-align:left;width:10.068cm; " class="ce4"><p>R&#258;UC&#258; OVIDIU</p></td>
  1960. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1961. <td style="text-align:right; width:2.321cm; " class="ce4"><p>20</p></td>
  1962. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  1963. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1985</p></td>
  1964. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1965. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1966. </tr>
  1967. <tr class="ro2">
  1968. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1969. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1970. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1971. <td style="text-align:right; width:0.894cm; " class="ce4"><p>63</p></td>
  1972. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1973. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  1974. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MERAN &#350;TEFAN DAN</p></td>
  1975. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  1976. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  1977. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  1978. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  1979. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1980. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1981. </tr>
  1982. <tr class="ro2">
  1983. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1984. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  1985. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  1986. <td style="text-align:right; width:0.894cm; " class="ce4"><p>64</p></td>
  1987. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  1988. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  1989. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MITITELU MIRELA-ANCU&#354;A</p></td>
  1990. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  1991. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  1992. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  1993. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1980</p></td>
  1994. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  1995. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  1996. </tr>
  1997. <tr class="ro2">
  1998. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  1999. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2000. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2001. <td style="text-align:right; width:0.894cm; " class="ce4"><p>65</p></td>
  2002. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  2003. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  2004. <td style="text-align:left;width:10.068cm; " class="ce4"><p>C&#258;LIMAN CONSTANTIN</p></td>
  2005. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2006. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  2007. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  2008. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  2009. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2010. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2011. </tr>
  2012. <tr class="ro2">
  2013. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2014. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2015. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2016. <td style="text-align:right; width:0.894cm; " class="ce4"><p>66</p></td>
  2017. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  2018. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  2019. <td style="text-align:left;width:10.068cm; " class="ce4"><p>P&Acirc;RLOGEA STOICA</p></td>
  2020. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2021. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  2022. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  2023. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  2024. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2025. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2026. </tr>
  2027. <tr class="ro2">
  2028. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2029. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2030. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2031. <td style="text-align:right; width:0.894cm; " class="ce4"><p>67</p></td>
  2032. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  2033. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  2034. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PARASCHIV MIHAELA</p></td>
  2035. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2036. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  2037. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  2038. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1982</p></td>
  2039. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2040. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2041. </tr>
  2042. <tr class="ro2">
  2043. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2044. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2045. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2046. <td style="text-align:right; width:0.894cm; " class="ce4"><p>68</p></td>
  2047. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  2048. <td style="text-align:right; width:6.405cm; " class="ce4"><p>61</p></td>
  2049. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SEREMETA ROBERT</p></td>
  2050. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2051. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  2052. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2053. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1985</p></td>
  2054. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2055. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2056. </tr>
  2057. <tr class="ro2">
  2058. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2059. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2060. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2061. <td style="text-align:right; width:0.894cm; " class="ce4"><p>69</p></td>
  2062. <td style="text-align:right; width:5.23cm; " class="ce4"><p>62</p></td>
  2063. <td style="text-align:right; width:6.405cm; " class="ce4"><p>31</p></td>
  2064. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CHIPER CONSTANTIN C&#258;T&#258;LIN</p></td>
  2065. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2066. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  2067. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2068. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  2069. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2070. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2071. </tr>
  2072. <tr class="ro2">
  2073. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2074. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2075. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2076. <td style="text-align:right; width:0.894cm; " class="ce4"><p>1</p></td>
  2077. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2078. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2079. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ORZA&#354;&#258; RADU-PAUL</p></td>
  2080. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2081. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  2082. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2083. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  2084. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2085. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2086. </tr>
  2087. <tr class="ro2">
  2088. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2089. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2090. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2091. <td style="text-align:right; width:0.894cm; " class="ce4"><p>2</p></td>
  2092. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2093. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2094. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GHI&#354;&#258; RICHARD-VICEN&#354;IU</p></td>
  2095. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2096. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  2097. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  2098. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  2099. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2100. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2101. </tr>
  2102. <tr class="ro2">
  2103. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2104. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2105. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2106. <td style="text-align:right; width:0.894cm; " class="ce4"><p>3</p></td>
  2107. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2108. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2109. <td style="text-align:left;width:10.068cm; " class="ce4"><p>COM&#350;A CORNEL-GEORGE</p></td>
  2110. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2111. <td style="text-align:right; width:2.321cm; " class="ce4"><p>5</p></td>
  2112. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2113. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  2114. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2115. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2116. </tr>
  2117. <tr class="ro2">
  2118. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2119. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2120. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2121. <td style="text-align:right; width:0.894cm; " class="ce4"><p>4</p></td>
  2122. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2123. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2124. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ZORKOCZY JULIA</p></td>
  2125. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2126. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  2127. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2128. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1981</p></td>
  2129. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2130. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2131. </tr>
  2132. <tr class="ro2">
  2133. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2134. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2135. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2136. <td style="text-align:right; width:0.894cm; " class="ce4"><p>5</p></td>
  2137. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2138. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2139. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPESCU EUGENIA ANA-MARIA</p></td>
  2140. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2141. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  2142. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  2143. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1985</p></td>
  2144. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2145. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2146. </tr>
  2147. <tr class="ro2">
  2148. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2149. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2150. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2151. <td style="text-align:right; width:0.894cm; " class="ce4"><p>6</p></td>
  2152. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2153. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2154. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MARIN &#350;TEF&#258;NEL-DAN</p></td>
  2155. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2156. <td style="text-align:right; width:2.321cm; " class="ce4"><p>19</p></td>
  2157. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2158. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  2159. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2160. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2161. </tr>
  2162. <tr class="ro2">
  2163. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2164. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2165. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2166. <td style="text-align:right; width:0.894cm; " class="ce4"><p>7</p></td>
  2167. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2168. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2169. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICOLESCU CRISTINA ELENA</p></td>
  2170. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2171. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  2172. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2173. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  2174. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2175. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2176. </tr>
  2177. <tr class="ro2">
  2178. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2179. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2180. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2181. <td style="text-align:right; width:0.894cm; " class="ce4"><p>8</p></td>
  2182. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2183. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2184. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PANAITESCU HORA&#354;IU</p></td>
  2185. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2186. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  2187. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  2188. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1960</p></td>
  2189. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2190. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2191. </tr>
  2192. <tr class="ro2">
  2193. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2194. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2195. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2196. <td style="text-align:right; width:0.894cm; " class="ce4"><p>9</p></td>
  2197. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2198. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2199. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SEFER CRISTIAN GEORGE</p></td>
  2200. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2201. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  2202. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2203. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1970</p></td>
  2204. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2205. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2206. </tr>
  2207. <tr class="ro2">
  2208. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2209. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2210. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2211. <td style="text-align:right; width:0.894cm; " class="ce4"><p>10</p></td>
  2212. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2213. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2214. <td style="text-align:left;width:10.068cm; " class="ce4"><p>P&#258;UNI&#354;&#258; MARIUS-AURELIAN</p></td>
  2215. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2216. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  2217. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  2218. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  2219. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2220. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2221. </tr>
  2222. <tr class="ro2">
  2223. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2224. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2225. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2226. <td style="text-align:right; width:0.894cm; " class="ce4"><p>11</p></td>
  2227. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2228. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2229. <td style="text-align:left;width:10.068cm; " class="ce4"><p>F&#258;TU GABRIEL-DUMITRU</p></td>
  2230. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2231. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  2232. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2233. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  2234. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2235. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2236. </tr>
  2237. <tr class="ro2">
  2238. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2239. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2240. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2241. <td style="text-align:right; width:0.894cm; " class="ce4"><p>12</p></td>
  2242. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2243. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2244. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPA MIHAI RADU</p></td>
  2245. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2246. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  2247. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  2248. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  2249. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2250. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2251. </tr>
  2252. <tr class="ro2">
  2253. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2254. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2255. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2256. <td style="text-align:right; width:0.894cm; " class="ce4"><p>13</p></td>
  2257. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2258. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2259. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ZAMFIRA CONSTANTIN C&#258;T&#258;LIN</p></td>
  2260. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2261. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  2262. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  2263. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1970</p></td>
  2264. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2265. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2266. </tr>
  2267. <tr class="ro2">
  2268. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2269. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2270. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2271. <td style="text-align:right; width:0.894cm; " class="ce4"><p>14</p></td>
  2272. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2273. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2274. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MIHALACHE EUGEN-COSTINEL</p></td>
  2275. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2276. <td style="text-align:right; width:2.321cm; " class="ce4"><p>4</p></td>
  2277. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2278. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1967</p></td>
  2279. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2280. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2281. </tr>
  2282. <tr class="ro2">
  2283. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2284. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2285. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2286. <td style="text-align:right; width:0.894cm; " class="ce4"><p>15</p></td>
  2287. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2288. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2289. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GHERGHICEANU FLORENTINA</p></td>
  2290. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2291. <td style="text-align:right; width:2.321cm; " class="ce4"><p>11</p></td>
  2292. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2293. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1983</p></td>
  2294. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2295. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2296. </tr>
  2297. <tr class="ro2">
  2298. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2299. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2300. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2301. <td style="text-align:right; width:0.894cm; " class="ce4"><p>16</p></td>
  2302. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2303. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2304. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VASILE LIVIA CRISTINA</p></td>
  2305. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2306. <td style="text-align:right; width:2.321cm; " class="ce4"><p>20</p></td>
  2307. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  2308. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1981</p></td>
  2309. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2310. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2311. </tr>
  2312. <tr class="ro2">
  2313. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2314. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2315. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2316. <td style="text-align:right; width:0.894cm; " class="ce4"><p>17</p></td>
  2317. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2318. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2319. <td style="text-align:left;width:10.068cm; " class="ce4"><p>IAMANDI CRISTINA</p></td>
  2320. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2321. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  2322. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  2323. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1954</p></td>
  2324. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2325. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2326. </tr>
  2327. <tr class="ro2">
  2328. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2329. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2330. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2331. <td style="text-align:right; width:0.894cm; " class="ce4"><p>18</p></td>
  2332. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2333. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2334. <td style="text-align:left;width:10.068cm; " class="ce4"><p>COSTACHIE SILVIU</p></td>
  2335. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2336. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  2337. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  2338. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  2339. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2340. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2341. </tr>
  2342. <tr class="ro2">
  2343. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2344. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2345. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2346. <td style="text-align:right; width:0.894cm; " class="ce4"><p>19</p></td>
  2347. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2348. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2349. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ROTARU OANA-&#350;TEFANIA</p></td>
  2350. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2351. <td style="text-align:right; width:2.321cm; " class="ce4"><p>14</p></td>
  2352. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2353. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1974</p></td>
  2354. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2355. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2356. </tr>
  2357. <tr class="ro2">
  2358. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2359. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2360. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2361. <td style="text-align:right; width:0.894cm; " class="ce4"><p>20</p></td>
  2362. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2363. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2364. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CEANU MARIANA</p></td>
  2365. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2366. <td style="text-align:right; width:2.321cm; " class="ce4"><p>14</p></td>
  2367. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2368. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1970</p></td>
  2369. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2370. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2371. </tr>
  2372. <tr class="ro2">
  2373. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2374. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2375. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2376. <td style="text-align:right; width:0.894cm; " class="ce4"><p>21</p></td>
  2377. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2378. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2379. <td style="text-align:left;width:10.068cm; " class="ce4"><p>HA&#354;EGANU COSTANTIN NICOLAE</p></td>
  2380. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2381. <td style="text-align:right; width:2.321cm; " class="ce4"><p>11</p></td>
  2382. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2383. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1941</p></td>
  2384. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2385. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2386. </tr>
  2387. <tr class="ro2">
  2388. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2389. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2390. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2391. <td style="text-align:right; width:0.894cm; " class="ce4"><p>22</p></td>
  2392. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2393. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2394. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ANGELESCU CRISTIAN-ALEXANDRU</p></td>
  2395. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2396. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  2397. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  2398. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  2399. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2400. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2401. </tr>
  2402. <tr class="ro2">
  2403. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2404. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2405. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2406. <td style="text-align:right; width:0.894cm; " class="ce4"><p>23</p></td>
  2407. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2408. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2409. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DUIC&#258; VIOREL</p></td>
  2410. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2411. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  2412. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  2413. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1963</p></td>
  2414. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2415. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2416. </tr>
  2417. <tr class="ro2">
  2418. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2419. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2420. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2421. <td style="text-align:right; width:0.894cm; " class="ce4"><p>24</p></td>
  2422. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2423. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2424. <td style="text-align:left;width:10.068cm; " class="ce4"><p>HUIDU FLORIN</p></td>
  2425. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2426. <td style="text-align:right; width:2.321cm; " class="ce4"><p>0</p></td>
  2427. <td style="text-align:right; width:2.909cm; " class="ce4"><p>0</p></td>
  2428. <td style="text-align:right; width:2.489cm; " class="ce4"><p>0</p></td>
  2429. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2430. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2431. </tr>
  2432. <tr class="ro2">
  2433. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2434. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2435. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2436. <td style="text-align:right; width:0.894cm; " class="ce4"><p>25</p></td>
  2437. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2438. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2439. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BUJOR NECULAI</p></td>
  2440. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2441. <td style="text-align:right; width:2.321cm; " class="ce4"><p>1</p></td>
  2442. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  2443. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1958</p></td>
  2444. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2445. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2446. </tr>
  2447. <tr class="ro2">
  2448. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2449. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2450. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2451. <td style="text-align:right; width:0.894cm; " class="ce4"><p>26</p></td>
  2452. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2453. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2454. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPA GRIGORE</p></td>
  2455. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2456. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  2457. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2458. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1952</p></td>
  2459. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2460. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2461. </tr>
  2462. <tr class="ro2">
  2463. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2464. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2465. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2466. <td style="text-align:right; width:0.894cm; " class="ce4"><p>27</p></td>
  2467. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2468. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2469. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#350;TEF&#258;NESCU MIHAI</p></td>
  2470. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2471. <td style="text-align:right; width:2.321cm; " class="ce4"><p>28</p></td>
  2472. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2473. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1948</p></td>
  2474. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2475. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2476. </tr>
  2477. <tr class="ro2">
  2478. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2479. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2480. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2481. <td style="text-align:right; width:0.894cm; " class="ce4"><p>28</p></td>
  2482. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2483. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2484. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PASCU DOINA</p></td>
  2485. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2486. <td style="text-align:right; width:2.321cm; " class="ce4"><p>22</p></td>
  2487. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  2488. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1952</p></td>
  2489. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2490. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2491. </tr>
  2492. <tr class="ro2">
  2493. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2494. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2495. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2496. <td style="text-align:right; width:0.894cm; " class="ce4"><p>29</p></td>
  2497. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2498. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2499. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PANAIT GHEORGHE</p></td>
  2500. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2501. <td style="text-align:right; width:2.321cm; " class="ce4"><p>13</p></td>
  2502. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  2503. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1968</p></td>
  2504. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2505. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2506. </tr>
  2507. <tr class="ro2">
  2508. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2509. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2510. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2511. <td style="text-align:right; width:0.894cm; " class="ce4"><p>30</p></td>
  2512. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2513. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2514. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TEBE&#350;OI DANIELA</p></td>
  2515. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2516. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  2517. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2518. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1965</p></td>
  2519. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2520. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2521. </tr>
  2522. <tr class="ro2">
  2523. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2524. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2525. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2526. <td style="text-align:right; width:0.894cm; " class="ce4"><p>31</p></td>
  2527. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2528. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2529. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NEGRESCU RADU-IOAN</p></td>
  2530. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2531. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  2532. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  2533. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1957</p></td>
  2534. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2535. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2536. </tr>
  2537. <tr class="ro2">
  2538. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2539. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2540. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2541. <td style="text-align:right; width:0.894cm; " class="ce4"><p>32</p></td>
  2542. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2543. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2544. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ROBU CLAUDIA</p></td>
  2545. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2546. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  2547. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  2548. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  2549. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2550. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2551. </tr>
  2552. <tr class="ro2">
  2553. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2554. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2555. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2556. <td style="text-align:right; width:0.894cm; " class="ce4"><p>33</p></td>
  2557. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2558. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2559. <td style="text-align:left;width:10.068cm; " class="ce4"><p>LINGURARU VERONICA</p></td>
  2560. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2561. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  2562. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  2563. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  2564. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2565. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2566. </tr>
  2567. <tr class="ro2">
  2568. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2569. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2570. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2571. <td style="text-align:right; width:0.894cm; " class="ce4"><p>34</p></td>
  2572. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2573. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2574. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BRATU DANIELA</p></td>
  2575. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2576. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  2577. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  2578. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1968</p></td>
  2579. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2580. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2581. </tr>
  2582. <tr class="ro2">
  2583. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2584. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2585. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2586. <td style="text-align:right; width:0.894cm; " class="ce4"><p>35</p></td>
  2587. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2588. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2589. <td style="text-align:left;width:10.068cm; " class="ce4"><p>M&Icirc;R&#350;U VALENTIN</p></td>
  2590. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2591. <td style="text-align:right; width:2.321cm; " class="ce4"><p>23</p></td>
  2592. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2593. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  2594. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2595. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2596. </tr>
  2597. <tr class="ro2">
  2598. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2599. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2600. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2601. <td style="text-align:right; width:0.894cm; " class="ce4"><p>36</p></td>
  2602. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2603. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2604. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GAI&#354;&#258; GHEORGHE</p></td>
  2605. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2606. <td style="text-align:right; width:2.321cm; " class="ce4"><p>5</p></td>
  2607. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2608. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1962</p></td>
  2609. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2610. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2611. </tr>
  2612. <tr class="ro2">
  2613. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2614. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2615. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2616. <td style="text-align:right; width:0.894cm; " class="ce4"><p>37</p></td>
  2617. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2618. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2619. <td style="text-align:left;width:10.068cm; " class="ce4"><p>RADU ADRIAN</p></td>
  2620. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2621. <td style="text-align:right; width:2.321cm; " class="ce4"><p>18</p></td>
  2622. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  2623. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1953</p></td>
  2624. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2625. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2626. </tr>
  2627. <tr class="ro2">
  2628. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2629. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2630. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2631. <td style="text-align:right; width:0.894cm; " class="ce4"><p>38</p></td>
  2632. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2633. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2634. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DOBRE OLIVIU</p></td>
  2635. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2636. <td style="text-align:right; width:2.321cm; " class="ce4"><p>21</p></td>
  2637. <td style="text-align:right; width:2.909cm; " class="ce4"><p>1</p></td>
  2638. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  2639. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2640. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2641. </tr>
  2642. <tr class="ro2">
  2643. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2644. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2645. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2646. <td style="text-align:right; width:0.894cm; " class="ce4"><p>39</p></td>
  2647. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2648. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2649. <td style="text-align:left;width:10.068cm; " class="ce4"><p>D&#258;OGARU GHEORGHE-OCTAVIAN</p></td>
  2650. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2651. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  2652. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  2653. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1964</p></td>
  2654. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2655. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2656. </tr>
  2657. <tr class="ro2">
  2658. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2659. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2660. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2661. <td style="text-align:right; width:0.894cm; " class="ce4"><p>40</p></td>
  2662. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2663. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2664. <td style="text-align:left;width:10.068cm; " class="ce4"><p>SANDU VASILE</p></td>
  2665. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2666. <td style="text-align:right; width:2.321cm; " class="ce4"><p>15</p></td>
  2667. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  2668. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1961</p></td>
  2669. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2670. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2671. </tr>
  2672. <tr class="ro2">
  2673. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2674. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2675. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2676. <td style="text-align:right; width:0.894cm; " class="ce4"><p>41</p></td>
  2677. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2678. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2679. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICULAE STELIANA-CLAUDIA</p></td>
  2680. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2681. <td style="text-align:right; width:2.321cm; " class="ce4"><p>14</p></td>
  2682. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2683. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  2684. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2685. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2686. </tr>
  2687. <tr class="ro2">
  2688. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2689. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2690. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2691. <td style="text-align:right; width:0.894cm; " class="ce4"><p>42</p></td>
  2692. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2693. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2694. <td style="text-align:left;width:10.068cm; " class="ce4"><p>FERARU NICOLAE EMILIAN</p></td>
  2695. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2696. <td style="text-align:right; width:2.321cm; " class="ce4"><p>13</p></td>
  2697. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  2698. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1981</p></td>
  2699. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2700. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2701. </tr>
  2702. <tr class="ro2">
  2703. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2704. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2705. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2706. <td style="text-align:right; width:0.894cm; " class="ce4"><p>43</p></td>
  2707. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2708. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2709. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ENESCU MARIA</p></td>
  2710. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2711. <td style="text-align:right; width:2.321cm; " class="ce4"><p>29</p></td>
  2712. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  2713. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1955</p></td>
  2714. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2715. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2716. </tr>
  2717. <tr class="ro2">
  2718. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2719. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2720. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2721. <td style="text-align:right; width:0.894cm; " class="ce4"><p>44</p></td>
  2722. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2723. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2724. <td style="text-align:left;width:10.068cm; " class="ce4"><p>ROBU MARIA</p></td>
  2725. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2726. <td style="text-align:right; width:2.321cm; " class="ce4"><p>24</p></td>
  2727. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2728. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  2729. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2730. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2731. </tr>
  2732. <tr class="ro2">
  2733. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2734. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2735. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2736. <td style="text-align:right; width:0.894cm; " class="ce4"><p>45</p></td>
  2737. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2738. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2739. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PETCULESCU FLORICA</p></td>
  2740. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2741. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  2742. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  2743. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1958</p></td>
  2744. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2745. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2746. </tr>
  2747. <tr class="ro2">
  2748. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2749. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2750. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2751. <td style="text-align:right; width:0.894cm; " class="ce4"><p>46</p></td>
  2752. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2753. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2754. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CHISOI VALERIAN</p></td>
  2755. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2756. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  2757. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2758. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1970</p></td>
  2759. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2760. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2761. </tr>
  2762. <tr class="ro2">
  2763. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2764. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2765. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2766. <td style="text-align:right; width:0.894cm; " class="ce4"><p>47</p></td>
  2767. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2768. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2769. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TU&#354;&#258; VICTOR</p></td>
  2770. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2771. <td style="text-align:right; width:2.321cm; " class="ce4"><p>8</p></td>
  2772. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  2773. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  2774. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2775. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2776. </tr>
  2777. <tr class="ro2">
  2778. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2779. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2780. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2781. <td style="text-align:right; width:0.894cm; " class="ce4"><p>48</p></td>
  2782. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2783. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2784. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VELCEA VICTOR</p></td>
  2785. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2786. <td style="text-align:right; width:2.321cm; " class="ce4"><p>9</p></td>
  2787. <td style="text-align:right; width:2.909cm; " class="ce4"><p>7</p></td>
  2788. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1952</p></td>
  2789. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2790. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2791. </tr>
  2792. <tr class="ro2">
  2793. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2794. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2795. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2796. <td style="text-align:right; width:0.894cm; " class="ce4"><p>49</p></td>
  2797. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2798. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2799. <td style="text-align:left;width:10.068cm; " class="ce4"><p>R&Icirc;PEANU GABRIELA</p></td>
  2800. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2801. <td style="text-align:right; width:2.321cm; " class="ce4"><p>17</p></td>
  2802. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2803. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  2804. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2805. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2806. </tr>
  2807. <tr class="ro2">
  2808. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2809. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2810. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2811. <td style="text-align:right; width:0.894cm; " class="ce4"><p>50</p></td>
  2812. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2813. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2814. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BUIC&#258; D&#258;NU&#354;</p></td>
  2815. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2816. <td style="text-align:right; width:2.321cm; " class="ce4"><p>13</p></td>
  2817. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  2818. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1966</p></td>
  2819. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2820. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2821. </tr>
  2822. <tr class="ro2">
  2823. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2824. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2825. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2826. <td style="text-align:right; width:0.894cm; " class="ce4"><p>51</p></td>
  2827. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2828. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2829. <td style="text-align:left;width:10.068cm; " class="ce4"><p>CHIRIC&#258; MIHAIL ALEXANDRU</p></td>
  2830. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2831. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  2832. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2833. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1989</p></td>
  2834. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2835. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2836. </tr>
  2837. <tr class="ro2">
  2838. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2839. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2840. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2841. <td style="text-align:right; width:0.894cm; " class="ce4"><p>52</p></td>
  2842. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2843. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2844. <td style="text-align:left;width:10.068cm; " class="ce4"><p>&#350;ERBAN ALEXANDRU</p></td>
  2845. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2846. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  2847. <td style="text-align:right; width:2.909cm; " class="ce4"><p>4</p></td>
  2848. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1989</p></td>
  2849. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2850. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2851. </tr>
  2852. <tr class="ro2">
  2853. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2854. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2855. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2856. <td style="text-align:right; width:0.894cm; " class="ce4"><p>53</p></td>
  2857. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2858. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2859. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VASILE CONSTANTIN</p></td>
  2860. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2861. <td style="text-align:right; width:2.321cm; " class="ce4"><p>19</p></td>
  2862. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  2863. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1949</p></td>
  2864. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2865. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2866. </tr>
  2867. <tr class="ro2">
  2868. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2869. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2870. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2871. <td style="text-align:right; width:0.894cm; " class="ce4"><p>54</p></td>
  2872. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2873. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2874. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DR&#258;JNEANU GEORGIANA</p></td>
  2875. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2876. <td style="text-align:right; width:2.321cm; " class="ce4"><p>11</p></td>
  2877. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  2878. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1987</p></td>
  2879. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2880. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2881. </tr>
  2882. <tr class="ro2">
  2883. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2884. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2885. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2886. <td style="text-align:right; width:0.894cm; " class="ce4"><p>55</p></td>
  2887. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2888. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2889. <td style="text-align:left;width:10.068cm; " class="ce4"><p>PRICOPE SILVIU</p></td>
  2890. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2891. <td style="text-align:right; width:2.321cm; " class="ce4"><p>14</p></td>
  2892. <td style="text-align:right; width:2.909cm; " class="ce4"><p>6</p></td>
  2893. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  2894. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2895. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2896. </tr>
  2897. <tr class="ro2">
  2898. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2899. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2900. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2901. <td style="text-align:right; width:0.894cm; " class="ce4"><p>56</p></td>
  2902. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2903. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2904. <td style="text-align:left;width:10.068cm; " class="ce4"><p>VIERIU DUMITRU</p></td>
  2905. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2906. <td style="text-align:right; width:2.321cm; " class="ce4"><p>23</p></td>
  2907. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  2908. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1949</p></td>
  2909. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2910. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2911. </tr>
  2912. <tr class="ro2">
  2913. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2914. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2915. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2916. <td style="text-align:right; width:0.894cm; " class="ce4"><p>57</p></td>
  2917. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2918. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2919. <td style="text-align:left;width:10.068cm; " class="ce4"><p>COMAN EDUARD-CIPRIAN</p></td>
  2920. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2921. <td style="text-align:right; width:2.321cm; " class="ce4"><p>6</p></td>
  2922. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2923. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1969</p></td>
  2924. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2925. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2926. </tr>
  2927. <tr class="ro2">
  2928. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2929. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2930. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2931. <td style="text-align:right; width:0.894cm; " class="ce4"><p>58</p></td>
  2932. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2933. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2934. <td style="text-align:left;width:10.068cm; " class="ce4"><p>GHI&#354;&#258; MARIANA</p></td>
  2935. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2936. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  2937. <td style="text-align:right; width:2.909cm; " class="ce4"><p>10</p></td>
  2938. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1956</p></td>
  2939. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2940. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2941. </tr>
  2942. <tr class="ro2">
  2943. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2944. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2945. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2946. <td style="text-align:right; width:0.894cm; " class="ce4"><p>59</p></td>
  2947. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2948. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2949. <td style="text-align:left;width:10.068cm; " class="ce4"><p>POPESCU VERGIL</p></td>
  2950. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2951. <td style="text-align:right; width:2.321cm; " class="ce4"><p>5</p></td>
  2952. <td style="text-align:right; width:2.909cm; " class="ce4"><p>5</p></td>
  2953. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1945</p></td>
  2954. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2955. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2956. </tr>
  2957. <tr class="ro2">
  2958. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2959. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2960. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2961. <td style="text-align:right; width:0.894cm; " class="ce4"><p>60</p></td>
  2962. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2963. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2964. <td style="text-align:left;width:10.068cm; " class="ce4"><p>AVRAM LUCIAN</p></td>
  2965. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2966. <td style="text-align:right; width:2.321cm; " class="ce4"><p>19</p></td>
  2967. <td style="text-align:right; width:2.909cm; " class="ce4"><p>2</p></td>
  2968. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1973</p></td>
  2969. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2970. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2971. </tr>
  2972. <tr class="ro2">
  2973. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2974. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2975. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2976. <td style="text-align:right; width:0.894cm; " class="ce4"><p>61</p></td>
  2977. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2978. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2979. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DUMITRU LUCIA</p></td>
  2980. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  2981. <td style="text-align:right; width:2.321cm; " class="ce4"><p>22</p></td>
  2982. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  2983. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  2984. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  2985. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  2986. </tr>
  2987. <tr class="ro2">
  2988. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  2989. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  2990. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  2991. <td style="text-align:right; width:0.894cm; " class="ce4"><p>62</p></td>
  2992. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  2993. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  2994. <td style="text-align:left;width:10.068cm; " class="ce4"><p>NICA &#350;TEFAN</p></td>
  2995. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  2996. <td style="text-align:right; width:2.321cm; " class="ce4"><p>7</p></td>
  2997. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  2998. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1962</p></td>
  2999. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3000. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3001. </tr>
  3002. <tr class="ro2">
  3003. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3004. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3005. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3006. <td style="text-align:right; width:0.894cm; " class="ce4"><p>63</p></td>
  3007. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3008. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3009. <td style="text-align:left;width:10.068cm; " class="ce4"><p>MIU GABRIELA</p></td>
  3010. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  3011. <td style="text-align:right; width:2.321cm; " class="ce4"><p>16</p></td>
  3012. <td style="text-align:right; width:2.909cm; " class="ce4"><p>11</p></td>
  3013. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1960</p></td>
  3014. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3015. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3016. </tr>
  3017. <tr class="ro2">
  3018. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3019. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3020. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3021. <td style="text-align:right; width:0.894cm; " class="ce4"><p>64</p></td>
  3022. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3023. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3024. <td style="text-align:left;width:10.068cm; " class="ce4"><p>FLOREA MIHAI</p></td>
  3025. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  3026. <td style="text-align:right; width:2.321cm; " class="ce4"><p>12</p></td>
  3027. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  3028. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1975</p></td>
  3029. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3030. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3031. </tr>
  3032. <tr class="ro2">
  3033. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3034. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3035. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3036. <td style="text-align:right; width:0.894cm; " class="ce4"><p>65</p></td>
  3037. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3038. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3039. <td style="text-align:left;width:10.068cm; " class="ce4"><p>TRU&#354;&#258; NARCIS-&#350;TEF&#258;NI&#354;&#258;</p></td>
  3040. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  3041. <td style="text-align:right; width:2.321cm; " class="ce4"><p>26</p></td>
  3042. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  3043. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1976</p></td>
  3044. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3045. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3046. </tr>
  3047. <tr class="ro2">
  3048. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3049. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3050. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3051. <td style="text-align:right; width:0.894cm; " class="ce4"><p>66</p></td>
  3052. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3053. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3054. <td style="text-align:left;width:10.068cm; " class="ce4"><p>BOGDAN LILIANA</p></td>
  3055. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  3056. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  3057. <td style="text-align:right; width:2.909cm; " class="ce4"><p>8</p></td>
  3058. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  3059. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3060. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3061. </tr>
  3062. <tr class="ro2">
  3063. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3064. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3065. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3066. <td style="text-align:right; width:0.894cm; " class="ce4"><p>67</p></td>
  3067. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3068. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3069. <td style="text-align:left;width:10.068cm; " class="ce4"><p>HREAN GABRIELA</p></td>
  3070. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  3071. <td style="text-align:right; width:2.321cm; " class="ce4"><p>2</p></td>
  3072. <td style="text-align:right; width:2.909cm; " class="ce4"><p>12</p></td>
  3073. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1978</p></td>
  3074. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3075. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3076. </tr>
  3077. <tr class="ro2">
  3078. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3079. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3080. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3081. <td style="text-align:right; width:0.894cm; " class="ce4"><p>68</p></td>
  3082. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3083. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3084. <td style="text-align:left;width:10.068cm; " class="ce4"><p>FLOREA CORINA-VICTORIA</p></td>
  3085. <td style="text-align:right; width:1.007cm; " class="ce4"><p>2</p></td>
  3086. <td style="text-align:right; width:2.321cm; " class="ce4"><p>27</p></td>
  3087. <td style="text-align:right; width:2.909cm; " class="ce4"><p>9</p></td>
  3088. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1977</p></td>
  3089. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3090. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3091. </tr>
  3092. <tr class="ro2">
  3093. <td style="text-align:right; width:2.237cm; " class="ce4"><p>42</p></td>
  3094. <td style="text-align:right; width:4.279cm; " class="ce4"><p>42</p></td>
  3095. <td style="text-align:right; width:0.783cm; " class="ce4"><p>3</p></td>
  3096. <td style="text-align:right; width:0.894cm; " class="ce4"><p>69</p></td>
  3097. <td style="text-align:right; width:5.23cm; " class="ce4"><p>57</p></td>
  3098. <td style="text-align:right; width:6.405cm; " class="ce4"><p>0</p></td>
  3099. <td style="text-align:left;width:10.068cm; " class="ce4"><p>DOBRIN FLORIAN</p></td>
  3100. <td style="text-align:right; width:1.007cm; " class="ce4"><p>1</p></td>
  3101. <td style="text-align:right; width:2.321cm; " class="ce4"><p>25</p></td>
  3102. <td style="text-align:right; width:2.909cm; " class="ce4"><p>3</p></td>
  3103. <td style="text-align:right; width:2.489cm; " class="ce4"><p>1959</p></td>
  3104. <td style="text-align:right; width:4.447cm; " class="ce4"><p>2</p></td>
  3105. <td style="text-align:left;width:1.774cm; " class="Default">&nbsp;</td>
  3106. </tr>
  3107. </table>