sapor 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/Area Class Diagram.dia +0 -0
  3. data/Area Class Diagram.png +0 -0
  4. data/Class Diagram.dia +0 -0
  5. data/Class Diagram.png +0 -0
  6. data/Example-Catalonia.md +361 -0
  7. data/Example-Flanders.md +486 -0
  8. data/Example-Greece.md +25 -0
  9. data/Example-Oslo.md +678 -0
  10. data/Example-UnitedKingdom-Referendum.md +132 -0
  11. data/Examples.md +15 -0
  12. data/LICENSE +674 -0
  13. data/README.md +103 -0
  14. data/Rakefile +18 -0
  15. data/Technical Documentation.md +14 -0
  16. data/bin/create_installation_package.sh +49 -0
  17. data/bin/install.sh +45 -0
  18. data/bin/sapor.rb +24 -0
  19. data/bin/sapor.sh +106 -0
  20. data/data/hu/hungary-2014.txt +1680 -0
  21. data/data/hu/hungary_2014_screen_scraper.rb +48 -0
  22. data/data/hu/hungary_2014_to_psv.rb +80 -0
  23. data/data/hu/index-2014.txt +106 -0
  24. data/data/pl/2015-gl-lis-okr.csv +42 -0
  25. data/data/pl/poland_2015_to_psv.rb +79 -0
  26. data/data/pl/poland_2015_to_psv_with_ko_and_rsw.rb +94 -0
  27. data/data/pl/poland_2015_to_psv_with_ko_konf_kp_l_and_zp.rb +100 -0
  28. data/data/pl/poland_2015_to_psv_with_ko_sld_and_wi.rb +92 -0
  29. data/data/pl/poland_2015_to_psv_with_sld.rb +84 -0
  30. data/data/pl/poland_2015_to_psv_with_sld_and_wi.rb +85 -0
  31. data/data/uk/inject_ukip_2015_as_brexit_2019_in_2017.rb +54 -0
  32. data/data/uk/united_kingdom_2015.txt +651 -0
  33. data/data/uk/united_kingdom_2015_to_psv.rb +104 -0
  34. data/data/uk/united_kingdom_2017.txt +651 -0
  35. data/data/uk/united_kingdom_2017_to_psv.rb +104 -0
  36. data/data/uk/united_kingdom_2017_to_psv_with_brexit_and_chuk.rb +113 -0
  37. data/data/uk/united_kingdom_2017_to_psv_with_tig.rb +111 -0
  38. data/lib/sapor.rb +150 -0
  39. data/lib/sapor/binomials_cache.rb +45 -0
  40. data/lib/sapor/combinations_distribution.rb +222 -0
  41. data/lib/sapor/denominators.rb +67 -0
  42. data/lib/sapor/dichotomies.rb +138 -0
  43. data/lib/sapor/dichotomy.rb +164 -0
  44. data/lib/sapor/first_past_the_post.rb +82 -0
  45. data/lib/sapor/largest_remainder.rb +118 -0
  46. data/lib/sapor/log4r_logger.rb +49 -0
  47. data/lib/sapor/log_facade.rb +40 -0
  48. data/lib/sapor/multi_district_leveled_proportional.rb +64 -0
  49. data/lib/sapor/multi_district_proportional.rb +123 -0
  50. data/lib/sapor/multi_district_variable_threshold_proportional.rb +128 -0
  51. data/lib/sapor/number_formatter.rb +45 -0
  52. data/lib/sapor/options.rb +73 -0
  53. data/lib/sapor/poll.rb +286 -0
  54. data/lib/sapor/polychotomy.rb +200 -0
  55. data/lib/sapor/pseudorandom_multirange_enumerator.rb +87 -0
  56. data/lib/sapor/referendum_polychotomy.rb +165 -0
  57. data/lib/sapor/regional_data/area.rb +82 -0
  58. data/lib/sapor/regional_data/austria.rb +84 -0
  59. data/lib/sapor/regional_data/belgium-brussels-2014.psv +46 -0
  60. data/lib/sapor/regional_data/belgium-brussels-20190526.psv +33 -0
  61. data/lib/sapor/regional_data/belgium-flanders-2014.psv +80 -0
  62. data/lib/sapor/regional_data/belgium-flanders-20190526.psv +74 -0
  63. data/lib/sapor/regional_data/belgium-wallonia-2014.psv +114 -0
  64. data/lib/sapor/regional_data/belgium-wallonia-20190526.psv +93 -0
  65. data/lib/sapor/regional_data/belgium.rb +97 -0
  66. data/lib/sapor/regional_data/belgium_brussels.rb +62 -0
  67. data/lib/sapor/regional_data/belgium_flanders.rb +64 -0
  68. data/lib/sapor/regional_data/belgium_wallonia.rb +63 -0
  69. data/lib/sapor/regional_data/catalonia-2012-2015.psv +100 -0
  70. data/lib/sapor/regional_data/catalonia-2012.psv +87 -0
  71. data/lib/sapor/regional_data/catalonia-2015-jxcat.psv +68 -0
  72. data/lib/sapor/regional_data/catalonia-2015-no-jxsi.psv +68 -0
  73. data/lib/sapor/regional_data/catalonia-2015.psv +63 -0
  74. data/lib/sapor/regional_data/catalonia-jxcat.rb +109 -0
  75. data/lib/sapor/regional_data/catalonia-no-jxsi.rb +96 -0
  76. data/lib/sapor/regional_data/catalonia.rb +96 -0
  77. data/lib/sapor/regional_data/denmark-20150618-with-e-and-p.psv +164 -0
  78. data/lib/sapor/regional_data/denmark-20150618-with-e.psv +153 -0
  79. data/lib/sapor/regional_data/denmark-20150618-with-p.psv +153 -0
  80. data/lib/sapor/regional_data/denmark-20150618.psv +142 -0
  81. data/lib/sapor/regional_data/denmark.rb +128 -0
  82. data/lib/sapor/regional_data/denmark_with_e.rb +128 -0
  83. data/lib/sapor/regional_data/denmark_with_e_and_p.rb +128 -0
  84. data/lib/sapor/regional_data/denmark_with_p.rb +128 -0
  85. data/lib/sapor/regional_data/estonia.rb +88 -0
  86. data/lib/sapor/regional_data/european-union-great-britain-20140522-brexit-chuk.psv +172 -0
  87. data/lib/sapor/regional_data/european-union-great-britain-20140522.psv +146 -0
  88. data/lib/sapor/regional_data/european-union-great-britain-20190523.psv +141 -0
  89. data/lib/sapor/regional_data/european-union-ireland-2014-ia-ri-sd.psv +64 -0
  90. data/lib/sapor/regional_data/european-union-ireland-2014-ia-sd.psv +60 -0
  91. data/lib/sapor/regional_data/european-union-ireland-2014-ia.psv +56 -0
  92. data/lib/sapor/regional_data/european-union-ireland-2014-sd.psv +56 -0
  93. data/lib/sapor/regional_data/european-union-ireland-2014.psv +50 -0
  94. data/lib/sapor/regional_data/european-union-ireland-20190524-ia.psv +58 -0
  95. data/lib/sapor/regional_data/european-union-ireland-20190524.psv +52 -0
  96. data/lib/sapor/regional_data/european_union_27_austria.rb +76 -0
  97. data/lib/sapor/regional_data/european_union_27_croatia.rb +81 -0
  98. data/lib/sapor/regional_data/european_union_27_denmark.rb +77 -0
  99. data/lib/sapor/regional_data/european_union_27_estonia.rb +74 -0
  100. data/lib/sapor/regional_data/european_union_27_finland.rb +74 -0
  101. data/lib/sapor/regional_data/european_union_27_ireland.rb +96 -0
  102. data/lib/sapor/regional_data/european_union_27_ireland_with_ia.rb +97 -0
  103. data/lib/sapor/regional_data/european_union_27_italy.rb +84 -0
  104. data/lib/sapor/regional_data/european_union_27_netherlands.rb +81 -0
  105. data/lib/sapor/regional_data/european_union_27_poland.rb +84 -0
  106. data/lib/sapor/regional_data/european_union_27_romania.rb +78 -0
  107. data/lib/sapor/regional_data/european_union_27_slovakia.rb +80 -0
  108. data/lib/sapor/regional_data/european_union_27_spain.rb +82 -0
  109. data/lib/sapor/regional_data/european_union_27_sweden.rb +76 -0
  110. data/lib/sapor/regional_data/european_union_austria.rb +76 -0
  111. data/lib/sapor/regional_data/european_union_bulgaria.rb +81 -0
  112. data/lib/sapor/regional_data/european_union_croatia.rb +81 -0
  113. data/lib/sapor/regional_data/european_union_cyprus.rb +72 -0
  114. data/lib/sapor/regional_data/european_union_czech_republic.rb +82 -0
  115. data/lib/sapor/regional_data/european_union_denmark.rb +77 -0
  116. data/lib/sapor/regional_data/european_union_estonia.rb +74 -0
  117. data/lib/sapor/regional_data/european_union_finland.rb +74 -0
  118. data/lib/sapor/regional_data/european_union_flanders.rb +74 -0
  119. data/lib/sapor/regional_data/european_union_france.rb +84 -0
  120. data/lib/sapor/regional_data/european_union_france_2019.rb +84 -0
  121. data/lib/sapor/regional_data/european_union_french_community_of_belgium.rb +73 -0
  122. data/lib/sapor/regional_data/european_union_germany.rb +86 -0
  123. data/lib/sapor/regional_data/european_union_great_britain.rb +98 -0
  124. data/lib/sapor/regional_data/european_union_greece.rb +77 -0
  125. data/lib/sapor/regional_data/european_union_hungary.rb +76 -0
  126. data/lib/sapor/regional_data/european_union_ireland.rb +96 -0
  127. data/lib/sapor/regional_data/european_union_ireland_with_ia.rb +97 -0
  128. data/lib/sapor/regional_data/european_union_italy.rb +84 -0
  129. data/lib/sapor/regional_data/european_union_latvia.rb +81 -0
  130. data/lib/sapor/regional_data/european_union_lithuania.rb +80 -0
  131. data/lib/sapor/regional_data/european_union_luxembourg.rb +75 -0
  132. data/lib/sapor/regional_data/european_union_malta.rb +71 -0
  133. data/lib/sapor/regional_data/european_union_netherlands.rb +81 -0
  134. data/lib/sapor/regional_data/european_union_northern_ireland.rb +75 -0
  135. data/lib/sapor/regional_data/european_union_poland.rb +84 -0
  136. data/lib/sapor/regional_data/european_union_portugal.rb +75 -0
  137. data/lib/sapor/regional_data/european_union_romania.rb +78 -0
  138. data/lib/sapor/regional_data/european_union_slovakia.rb +81 -0
  139. data/lib/sapor/regional_data/european_union_slovenia.rb +85 -0
  140. data/lib/sapor/regional_data/european_union_spain.rb +82 -0
  141. data/lib/sapor/regional_data/european_union_sweden.rb +76 -0
  142. data/lib/sapor/regional_data/finland-20150419-with-sin.psv +224 -0
  143. data/lib/sapor/regional_data/finland-20150419.psv +212 -0
  144. data/lib/sapor/regional_data/finland.rb +107 -0
  145. data/lib/sapor/regional_data/finland_with_sin.rb +107 -0
  146. data/lib/sapor/regional_data/flanders-2014.psv +96 -0
  147. data/lib/sapor/regional_data/flanders-20190526.psv +87 -0
  148. data/lib/sapor/regional_data/flanders.rb +115 -0
  149. data/lib/sapor/regional_data/france.rb +38 -0
  150. data/lib/sapor/regional_data/greece.rb +92 -0
  151. data/lib/sapor/regional_data/hungary-2014.psv +2104 -0
  152. data/lib/sapor/regional_data/hungary.rb +116 -0
  153. data/lib/sapor/regional_data/iceland-20161029-midflokkurinn.psv +94 -0
  154. data/lib/sapor/regional_data/iceland-20161029.psv +88 -0
  155. data/lib/sapor/regional_data/iceland-20171028.psv +85 -0
  156. data/lib/sapor/regional_data/iceland.rb +133 -0
  157. data/lib/sapor/regional_data/latvia-20141004-kpv-p-par.psv +109 -0
  158. data/lib/sapor/regional_data/latvia-20141004-kpv-par.psv +103 -0
  159. data/lib/sapor/regional_data/latvia-20141004-kpv.psv +97 -0
  160. data/lib/sapor/regional_data/latvia-20141004.psv +89 -0
  161. data/lib/sapor/regional_data/latvia.rb +112 -0
  162. data/lib/sapor/regional_data/latvia_kpv.rb +112 -0
  163. data/lib/sapor/regional_data/latvia_kpv_p_par.rb +112 -0
  164. data/lib/sapor/regional_data/latvia_kpv_par.rb +112 -0
  165. data/lib/sapor/regional_data/luxembourg-20131020.psv +76 -0
  166. data/lib/sapor/regional_data/luxembourg.rb +82 -0
  167. data/lib/sapor/regional_data/netherlands.rb +108 -0
  168. data/lib/sapor/regional_data/norway.rb +425 -0
  169. data/lib/sapor/regional_data/norwegian_municipality.rb +68 -0
  170. data/lib/sapor/regional_data/poland-20151025-with-ko-and-l-without-n-po-r-and-zl.psv +321 -0
  171. data/lib/sapor/regional_data/poland-20151025-with-ko-konf-kp-l-and-zp-without-k-k15-n-pis-po-psl-r-and-zl.psv +280 -0
  172. data/lib/sapor/regional_data/poland-20151025-with-ko-sld-and-wi-without-n-po-and-zl.psv +403 -0
  173. data/lib/sapor/regional_data/poland-20151025-with-sld-and-wi-without-zl.psv +444 -0
  174. data/lib/sapor/regional_data/poland-20151025-with-sld-without-zl.psv +403 -0
  175. data/lib/sapor/regional_data/poland-20151025.psv +403 -0
  176. data/lib/sapor/regional_data/poland.rb +125 -0
  177. data/lib/sapor/regional_data/poland_with_ko_and_l_without_n_po_r_and_zl.rb +122 -0
  178. data/lib/sapor/regional_data/poland_with_ko_konf_kp_l_and_zp_without_k_k15_n_pis_po_psl_r_and_zl.rb +123 -0
  179. data/lib/sapor/regional_data/poland_with_ko_sld_and_wi_without_n_po_and_zl.rb +125 -0
  180. data/lib/sapor/regional_data/poland_with_sld_and_wi_without_zl.rb +126 -0
  181. data/lib/sapor/regional_data/poland_with_sld_without_zl.rb +126 -0
  182. data/lib/sapor/regional_data/portugal-20151004-with-a-and-ch-without-paf.psv +438 -0
  183. data/lib/sapor/regional_data/portugal-20151004-with-a-and-il-without-paf.psv +438 -0
  184. data/lib/sapor/regional_data/portugal-20151004-with-a-ch-and-il-without-paf.psv +461 -0
  185. data/lib/sapor/regional_data/portugal-20151004-with-a-without-paf.psv +415 -0
  186. data/lib/sapor/regional_data/portugal-20151004-with-ch-and-il-without-paf.psv +438 -0
  187. data/lib/sapor/regional_data/portugal-20151004-without-paf.psv +392 -0
  188. data/lib/sapor/regional_data/portugal-20151004.psv +370 -0
  189. data/lib/sapor/regional_data/portugal.rb +101 -0
  190. data/lib/sapor/regional_data/portugal_with_a_and_ch_without_paf.rb +92 -0
  191. data/lib/sapor/regional_data/portugal_with_a_and_il_without_paf.rb +92 -0
  192. data/lib/sapor/regional_data/portugal_with_a_ch_and_il_without_paf.rb +92 -0
  193. data/lib/sapor/regional_data/portugal_with_a_without_paf.rb +92 -0
  194. data/lib/sapor/regional_data/portugal_with_ch_and_il_without_paf.rb +92 -0
  195. data/lib/sapor/regional_data/portugal_without_paf.rb +92 -0
  196. data/lib/sapor/regional_data/slovakia.rb +81 -0
  197. data/lib/sapor/regional_data/slovenia.rb +114 -0
  198. data/lib/sapor/regional_data/spain-20160626.psv +619 -0
  199. data/lib/sapor/regional_data/spain.rb +136 -0
  200. data/lib/sapor/regional_data/sweden.rb +92 -0
  201. data/lib/sapor/regional_data/sweden_20140914.rb +89 -0
  202. data/lib/sapor/regional_data/united_kingdom-2015.psv +4358 -0
  203. data/lib/sapor/regional_data/united_kingdom-20170608-brexit-chuk.psv +5154 -0
  204. data/lib/sapor/regional_data/united_kingdom-20170608-brexit.psv +4521 -0
  205. data/lib/sapor/regional_data/united_kingdom-20170608-tig.psv +4529 -0
  206. data/lib/sapor/regional_data/united_kingdom-20170608.psv +3894 -0
  207. data/lib/sapor/regional_data/united_kingdom.rb +94 -0
  208. data/lib/sapor/regional_data/united_kingdom_with_brexit.rb +110 -0
  209. data/lib/sapor/regional_data/united_kingdom_with_brexit_and_chuk.rb +111 -0
  210. data/lib/sapor/regional_data/united_kingdom_with_tig.rb +111 -0
  211. data/lib/sapor/regional_data/utopia.rb +66 -0
  212. data/lib/sapor/regional_data/wallonia-2014.psv +101 -0
  213. data/lib/sapor/regional_data/wallonia-20190526.psv +88 -0
  214. data/lib/sapor/regional_data/wallonia.rb +112 -0
  215. data/lib/sapor/representatives_polychotomy.rb +338 -0
  216. data/lib/sapor/single_district_proportional.rb +75 -0
  217. data/sapor.gemspec +35 -0
  218. data/spec/integration/area_spec.rb +28 -0
  219. data/spec/integration/poll_spec.rb +112 -0
  220. data/spec/integration/sample.poll +8 -0
  221. data/spec/spec_helper.rb +31 -0
  222. data/spec/unit/area_spec.rb +115 -0
  223. data/spec/unit/austria_spec.rb +76 -0
  224. data/spec/unit/belgium_brussels_spec.rb +58 -0
  225. data/spec/unit/belgium_flanders_spec.rb +62 -0
  226. data/spec/unit/belgium_spec.rb +26 -0
  227. data/spec/unit/belgium_wallonia_spec.rb +65 -0
  228. data/spec/unit/binomials_cache_spec.rb +34 -0
  229. data/spec/unit/catalonia_spec.rb +74 -0
  230. data/spec/unit/combinations_distribution_spec.rb +241 -0
  231. data/spec/unit/denmark_spec.rb +56 -0
  232. data/spec/unit/denmark_with_e_and_p_spec.rb +58 -0
  233. data/spec/unit/denmark_with_e_spec.rb +57 -0
  234. data/spec/unit/denmark_with_p_spec.rb +57 -0
  235. data/spec/unit/denominators_spec.rb +40 -0
  236. data/spec/unit/dichotomies_spec.rb +154 -0
  237. data/spec/unit/dichotomy_spec.rb +320 -0
  238. data/spec/unit/estonia_spec.rb +65 -0
  239. data/spec/unit/european_union_27_austria_spec.rb +61 -0
  240. data/spec/unit/european_union_27_croatia_spec.rb +60 -0
  241. data/spec/unit/european_union_27_denmark_spec.rb +62 -0
  242. data/spec/unit/european_union_27_estonia_spec.rb +94 -0
  243. data/spec/unit/european_union_27_finland_spec.rb +75 -0
  244. data/spec/unit/european_union_27_ireland_spec.rb +72 -0
  245. data/spec/unit/european_union_27_ireland_with_ia_spec.rb +74 -0
  246. data/spec/unit/european_union_27_italy_spec.rb +69 -0
  247. data/spec/unit/european_union_27_netherlands_spec.rb +81 -0
  248. data/spec/unit/european_union_27_poland_spec.rb +69 -0
  249. data/spec/unit/european_union_27_romania_spec.rb +67 -0
  250. data/spec/unit/european_union_27_slovakia_spec.rb +111 -0
  251. data/spec/unit/european_union_27_spain_spec.rb +130 -0
  252. data/spec/unit/european_union_27_sweden_spec.rb +89 -0
  253. data/spec/unit/european_union_austria_spec.rb +61 -0
  254. data/spec/unit/european_union_bulgaria_spec.rb +97 -0
  255. data/spec/unit/european_union_croatia_spec.rb +59 -0
  256. data/spec/unit/european_union_cyprus_spec.rb +65 -0
  257. data/spec/unit/european_union_czech_republic_spec.rb +125 -0
  258. data/spec/unit/european_union_denmark_spec.rb +61 -0
  259. data/spec/unit/european_union_estonia_spec.rb +93 -0
  260. data/spec/unit/european_union_finland_spec.rb +75 -0
  261. data/spec/unit/european_union_flanders_spec.rb +56 -0
  262. data/spec/unit/european_union_france_2019_spec.rb +73 -0
  263. data/spec/unit/european_union_france_spec.rb +73 -0
  264. data/spec/unit/european_union_french_community_of_belgium_spec.rb +61 -0
  265. data/spec/unit/european_union_germany_spec.rb +90 -0
  266. data/spec/unit/european_union_great_britain_spec.rb +87 -0
  267. data/spec/unit/european_union_greece_spec.rb +148 -0
  268. data/spec/unit/european_union_hungary_spec.rb +57 -0
  269. data/spec/unit/european_union_ireland_spec.rb +72 -0
  270. data/spec/unit/european_union_ireland_with_ia_spec.rb +74 -0
  271. data/spec/unit/european_union_italy_spec.rb +69 -0
  272. data/spec/unit/european_union_latvia_spec.rb +76 -0
  273. data/spec/unit/european_union_lithuania_spec.rb +68 -0
  274. data/spec/unit/european_union_luxembourg_spec.rb +63 -0
  275. data/spec/unit/european_union_malta_spec.rb +60 -0
  276. data/spec/unit/european_union_netherlands_spec.rb +81 -0
  277. data/spec/unit/european_union_northern_ireland_spec.rb +66 -0
  278. data/spec/unit/european_union_poland_spec.rb +69 -0
  279. data/spec/unit/european_union_portugal_spec.rb +77 -0
  280. data/spec/unit/european_union_romania_spec.rb +67 -0
  281. data/spec/unit/european_union_slovakia_spec.rb +111 -0
  282. data/spec/unit/european_union_slovenia_spec.rb +77 -0
  283. data/spec/unit/european_union_spain_spec.rb +129 -0
  284. data/spec/unit/european_union_sweden_spec.rb +89 -0
  285. data/spec/unit/finland_spec.rb +65 -0
  286. data/spec/unit/finland_with_sin_spec.rb +67 -0
  287. data/spec/unit/first_past_the_post_spec.rb +54 -0
  288. data/spec/unit/flanders_spec.rb +70 -0
  289. data/spec/unit/france_spec.rb +32 -0
  290. data/spec/unit/greece_spec.rb +118 -0
  291. data/spec/unit/hungary_spec.rb +132 -0
  292. data/spec/unit/iceland_spec.rb +57 -0
  293. data/spec/unit/largest_remainder_spec.rb +79 -0
  294. data/spec/unit/latvia_kpv_p_par_spec.rb +38 -0
  295. data/spec/unit/latvia_kpv_par_spec.rb +38 -0
  296. data/spec/unit/latvia_kpv_spec.rb +38 -0
  297. data/spec/unit/latvia_spec.rb +60 -0
  298. data/spec/unit/luxembourg_spec.rb +54 -0
  299. data/spec/unit/multi_district_leveled_proportional_spec.rb +49 -0
  300. data/spec/unit/multi_district_proportional_spec.rb +81 -0
  301. data/spec/unit/netherlands_spec.rb +107 -0
  302. data/spec/unit/norway_spec.rb +64 -0
  303. data/spec/unit/norwegian_municipality_spec.rb +89 -0
  304. data/spec/unit/number_formatter_spec.rb +173 -0
  305. data/spec/unit/poland_spec.rb +62 -0
  306. data/spec/unit/poland_with_ko_and_l_without_n_po_r_and_zl_spec.rb +60 -0
  307. data/spec/unit/poland_with_ko_konf_kp_l_and_zp_without_k_k15_n_pis_po_psl_r_and_zl_spec.rb +59 -0
  308. data/spec/unit/poland_with_ko_sld_and_wi_without_n_po_and_zl_spec.rb +62 -0
  309. data/spec/unit/poland_with_sld_and_wi_without_zl_spec.rb +63 -0
  310. data/spec/unit/poland_with_sld_without_zl_spec.rb +62 -0
  311. data/spec/unit/poll_spec.rb +110 -0
  312. data/spec/unit/portugal_spec.rb +66 -0
  313. data/spec/unit/portugal_with_a_and_ch_without_paf_spec.rb +68 -0
  314. data/spec/unit/portugal_with_a_and_il_without_paf_spec.rb +68 -0
  315. data/spec/unit/portugal_with_a_ch_and_il_without_paf_spec.rb +69 -0
  316. data/spec/unit/portugal_with_a_without_paf_spec.rb +67 -0
  317. data/spec/unit/portugal_with_ch_and_il_without_paf_spec.rb +68 -0
  318. data/spec/unit/portugal_without_paf_spec.rb +66 -0
  319. data/spec/unit/pseudorandom_multirange_enumerator_spec.rb +82 -0
  320. data/spec/unit/referendum_polychotomy_spec.rb +289 -0
  321. data/spec/unit/representatives_polychotomy_spec.rb +332 -0
  322. data/spec/unit/slovakia_spec.rb +99 -0
  323. data/spec/unit/slovenia_spec.rb +80 -0
  324. data/spec/unit/spain_spec.rb +101 -0
  325. data/spec/unit/sweden_20140914_spec.rb +112 -0
  326. data/spec/unit/sweden_spec.rb +113 -0
  327. data/spec/unit/united_kingdom_spec.rb +65 -0
  328. data/spec/unit/united_kingdom_with_brexit_and_chuk_spec.rb +67 -0
  329. data/spec/unit/united_kingdom_with_brexit_spec.rb +66 -0
  330. data/spec/unit/united_kingdom_with_tig_spec.rb +66 -0
  331. data/spec/unit/wallonia_spec.rb +70 -0
  332. metadata +490 -0
@@ -0,0 +1,103 @@
1
+ # Statistical Analysis of Polling Results (SAPoR)
2
+
3
+ ## Requirements
4
+
5
+ The program is developed in Ruby, and the scripts to run it are Unix scripts
6
+ using `/bin/sh`.
7
+
8
+ ## Installation
9
+
10
+ You can install this program by cloning this repository, and then executing the
11
+ commands from the following sections in the directory where it got cloned.
12
+
13
+ ### Latest Release
14
+
15
+ The latest release is a beta version, and has version number 0.1b1. Use the tag
16
+ `v0.1b1` to check it out after you've cloned the repository, and build and
17
+ install the program using the following commands:
18
+
19
+ sudo gem build sapor.gemspec
20
+ sudo gem install sapor-0.1b1.gem
21
+
22
+ bin/create_installation_package.sh
23
+ tar -xzf sapor-0.1b1.tar.gz
24
+ cd sapor-0.1b1/
25
+ sudo ./install.sh
26
+
27
+ ### Snapshot
28
+
29
+ The most recent version, currently under development, is an alpha version. It
30
+ resides in the master branch, and has version number 0.2a1. You can build it
31
+ using the following commands:
32
+
33
+ sudo gem build sapor.gemspec
34
+ sudo gem install sapor-0.2a1.gem
35
+
36
+ bin/create_installation_package.sh
37
+ tar -xzf sapor-0.2a1.tar.gz
38
+ cd sapor-0.2a1/
39
+ sudo ./install.sh
40
+
41
+ Usage
42
+ -----
43
+
44
+ Simply call `sapor` or `sapor help` to get instructions on how to use the
45
+ program.
46
+
47
+ Examples
48
+ --------
49
+
50
+ See [this](Examples.md) page.
51
+
52
+ Technical Documentation
53
+ -----------------------
54
+
55
+ See [this](Technical%20Documentation.md) page.
56
+
57
+ Changelog
58
+ ---------
59
+
60
+ **Version 0.2**
61
+
62
+ * Included more data in the calculation of the error estimate.
63
+ * Added the Type field with values Election and Referendum. Polls of type
64
+ Referendum do not try to calculate a seat distribution.
65
+ * Areas: Added Flanders.
66
+ * Areas: Added Greece with a simplified approach to the parliamentary elections.
67
+ * Areas: Added Norwegian municipalities Oslo, Bergen and Trondheim, local
68
+ election, 2015.
69
+
70
+ **Version 0.1**
71
+
72
+ * First round analysis of poll results as a set of dichotomies, reporting on the
73
+ most probable fraction, the 95% confidence interval for the vote share, and
74
+ probability to reach a threshold.
75
+ * Second round analysis of poll results as a polychotomy, reporting on the most
76
+ probable fraction, the most probable rounded fraction, the 95% confidence
77
+ interval for the vote share, the probability to be larger than the next party,
78
+ the 95% confidence interval for the number of seats in parliament, and for
79
+ coalitions the most probable fraction, the most probable rounded fraction, the
80
+ 95% confidence interval for the vote share, the probability to have a majority
81
+ of the popular vote (vote share larger than 50%), the 95% confidence interval
82
+ for the number of seats and the probability to have a majority in parliament.
83
+ * Areas: Catalan parliamentary election, 2015.
84
+
85
+ License
86
+ -------
87
+
88
+ Statistical Analysis of Polling Results (SAPoR)
89
+ Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
90
+
91
+ This program is free software; you can redistribute it and/or modify
92
+ it under the terms of the GNU General Public License as published by
93
+ the Free Software Foundation; either version 2 of the License, or
94
+ (at your option) any later version.
95
+
96
+ This program is distributed in the hope that it will be useful,
97
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
98
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
99
+ GNU General Public License for more details.
100
+
101
+ You should have received a copy of the GNU General Public License along
102
+ with this program; if not, write to the Free Software Foundation, Inc.,
103
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@@ -0,0 +1,18 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rspec/core/rake_task'
4
+
5
+ desc 'Default: run specs.'
6
+ task default: :spec
7
+
8
+ desc 'Run specs'
9
+ RSpec::Core::RakeTask.new do |t|
10
+ t.pattern = './spec/**/*_spec.rb'
11
+ end
12
+
13
+ desc 'Run Mutant'
14
+ task :mutant do
15
+ require 'mutant'
16
+ status = Mutant::CLI.run(['-I', 'lib', '-r', 'sapor', '--use', 'rspec', 'Sapor*'])
17
+ abort 'Mutant task is not successful' if status.nonzero?
18
+ end
@@ -0,0 +1,14 @@
1
+ Technical Documentation
2
+ =======================
3
+
4
+ Class Diagram
5
+ -------------
6
+
7
+ ![Class diagram](Class%20Diagram.png "Class diagram")
8
+
9
+ Areas
10
+ -----
11
+
12
+ The following diagram shows the hierarchy of all areas.
13
+
14
+ ![Area Class diagram](Area%20Class%20Diagram.png "Area Class diagram")
@@ -0,0 +1,49 @@
1
+ #!/bin/sh
2
+ #
3
+ # Statistical Analysis of Polling Results (SAPoR)
4
+ # Copyright © 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
5
+ #
6
+ # This file is part of SAPoR.
7
+ #
8
+ # SAPoR is free software: you can redistribute it and/or modify it under the terms of the GNU General
9
+ # Public License as published by the Free Software Foundation, either version 3 of the License, or
10
+ # (at your option) any later version.
11
+ #
12
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
13
+ # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14
+ # Public License for more details.
15
+ #
16
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
17
+ #
18
+
19
+ #
20
+ # Creates an installation package.
21
+ #
22
+
23
+ # Create an empty temporary directory
24
+
25
+ SCRIPTDIR="$( cd "$( dirname "$0" )" && pwd )"
26
+ VERSION="0.2a1"
27
+ TEMPDIR="sapor-${VERSION}"
28
+
29
+ if [ -d "$TEMPDIR" ]; then
30
+ rm -R "$TEMPDIR"
31
+ fi
32
+
33
+ mkdir "$TEMPDIR"
34
+
35
+ # Copy all resources to the temporary directory
36
+
37
+ BINDIR=${SCRIPTDIR}/../bin
38
+ cp ${BINDIR}/install.sh "$TEMPDIR"
39
+ cp ${BINDIR}/sapor.sh "$TEMPDIR"
40
+ cp ${BINDIR}/sapor.rb "$TEMPDIR"
41
+
42
+ # Creates the archive file
43
+
44
+ TARFILE="sapor-${VERSION}.tar.gz"
45
+ tar -pczf $TARFILE "$TEMPDIR"
46
+
47
+ # Remove the temporary directory
48
+
49
+ rm -R $TEMPDIR
@@ -0,0 +1,45 @@
1
+ #!/bin/sh
2
+ #
3
+ # Statistical Analysis of Polling Results (SAPoR)
4
+ # Copyright © 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
5
+ #
6
+ # This file is part of SAPoR.
7
+ #
8
+ # SAPoR is free software: you can redistribute it and/or modify it under the terms of the GNU General
9
+ # Public License as published by the Free Software Foundation, either version 3 of the License, or
10
+ # (at your option) any later version.
11
+ #
12
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
13
+ # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14
+ # Public License for more details.
15
+ #
16
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
17
+ #
18
+
19
+ #
20
+ # Installs SAPoR into /opt, and creates a link from /usr/bin to the sapor script.
21
+ #
22
+ # Note: Requires root permissions to create the directory. Use sudo to execute this script.
23
+ #
24
+
25
+ SAPORDIR="/opt/sapor"
26
+
27
+ if [ -d "$SAPORDIR" ]; then
28
+ rm -R "$SAPORDIR"
29
+ fi
30
+
31
+ mkdir "$SAPORDIR"
32
+
33
+ cp sapor* "$SAPORDIR"
34
+ chmod a+x "$SAPORDIR/sapor.sh"
35
+ ln -f "$SAPORDIR/sapor.sh" /usr/bin/sapor
36
+
37
+ LOG4R=$(gem list log4r | awk '/log4r/ {print $1}')
38
+ if [ ${#LOG4R[@]} -eq "0" ]; then
39
+ gem install -r log4r
40
+ fi
41
+
42
+ SAPORGEM=$(gem list sapor | awk '/sapor/ {print $1}')
43
+ if [ ${#SAPORGEM[@]} -eq "0" ]; then
44
+ gem install -r sapor
45
+ fi
@@ -0,0 +1,24 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Statistical Analysis of Polling Results (SAPoR)
4
+ # Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
5
+ #
6
+ # This file is part of SAPoR.
7
+ #
8
+ # SAPoR is free software: you can redistribute it and/or modify it under the
9
+ # terms of the GNU General Public License as published by the Free Software
10
+ # Foundation, either version 3 of the License, or (at your option) any later
11
+ # version.
12
+ #
13
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
14
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16
+ #
17
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
18
+ #
19
+
20
+ require 'sapor'
21
+
22
+ ARGV.shift
23
+ filename = ARGV.shift
24
+ Sapor.analyze(filename, ARGV)
@@ -0,0 +1,106 @@
1
+ #!/bin/sh
2
+ #
3
+ # Statistical Analysis of Polling Results (SAPoR)
4
+ # Copyright © 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
5
+ #
6
+ # This file is part of SAPoR.
7
+ #
8
+ # SAPoR is free software: you can redistribute it and/or modify it under the terms of the GNU General
9
+ # Public License as published by the Free Software Foundation, either version 3 of the License, or
10
+ # (at your option) any later version.
11
+ #
12
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
13
+ # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14
+ # Public License for more details.
15
+ #
16
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
17
+ #
18
+
19
+ #
20
+ # Central point to run SAPoR. The script accepts the following arguments:
21
+ # - help: To display the help information.
22
+ # - version: To display the version information.
23
+ # - copyright: To display the copyright information.
24
+ # - warranty: To display the warranty information.
25
+ #
26
+
27
+ ACTION="$1"
28
+ shift 1
29
+
30
+ export SAPORDIR="/opt/sapor"
31
+ export LOCALSAPORDIR="${HOME}/.sapor"
32
+ export RUBY="ruby"
33
+
34
+ VERSION="0.2a1"
35
+ COPYRIGHTYEAR="2016"
36
+
37
+ case "$ACTION" in
38
+ analyze)
39
+ if [ ! -d "$LOCALSAPORDIR" ]; then
40
+ mkdir "$LOCALSAPORDIR"
41
+ fi
42
+ if [ ! -d "${LOCALSAPORDIR}/cache" ]; then
43
+ mkdir "${LOCALSAPORDIR}/cache"
44
+ fi
45
+ $RUBY -I "${SAPORDIR}/lib" "${SAPORDIR}/sapor.rb" "${LOCALSAPORDIR}" $@
46
+ ;;
47
+ help)
48
+ echo "Statistical Analysis of Polling Results (SAPoR) v${VERSION}"
49
+ echo "Copyright © ${COPYRIGHTYEAR} Filip van Laenen <f.a.vanlaenen@ieee.org>"
50
+ echo
51
+ echo "Usage:"
52
+ echo " sapor action [parameters]"
53
+ echo
54
+ echo "where actions and parameters include:"
55
+ echo " analyze <poll-file> <options> run an analysis on the poll file"
56
+ echo " help show this message"
57
+ echo " version show the version information"
58
+ echo " copyright show the copyright information"
59
+ echo " warranty show the warranty information"
60
+ ;;
61
+ version)
62
+ echo "Statistical Analysis of Polling Results (SAPoR) v${VERSION}"
63
+ echo "Copyright © ${COPYRIGHTYEAR} Filip van Laenen <f.a.vanlaenen@ieee.org>"
64
+ echo "This program comes with ABSOLUTELY NO WARRANTY; for details run 'wruf warranty'."
65
+ echo "This is free software, and you are welcome to redistribute it"
66
+ echo "under certain conditions; run 'wruf copyright' for details."
67
+ ;;
68
+ copyright)
69
+ echo "Statistical Analysis of Polling Results (SAPoR) v${VERSION}"
70
+ echo "Copyright © ${COPYRIGHTYEAR} Filip van Laenen <f.a.vanlaenen@ieee.org>"
71
+ echo
72
+ echo "This program is free software: you can redistribute it and/or modify"
73
+ echo "it under the terms of the GNU General Public License as published by"
74
+ echo "the Free Software Foundation, either version 3 of the License, or"
75
+ echo "(at your option) any later version."
76
+ echo
77
+ echo "This program is distributed in the hope that it will be useful,"
78
+ echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
79
+ echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
80
+ echo "GNU General Public License for more details."
81
+ echo
82
+ echo "You should have received a copy of the GNU General Public License"
83
+ echo "along with this program. If not, see <http://www.gnu.org/licenses/>."
84
+ ;;
85
+ warranty)
86
+ echo "Statistical Analysis of Polling Results (SAPoR) v${VERSION}"
87
+ echo "Copyright © ${COPYRIGHTYEAR} Filip van Laenen <f.a.vanlaenen@ieee.org>"
88
+ echo
89
+ echo "There is no warranty for the program, to the extent permitted by applicable law."
90
+ echo "Except when otherwise stated in writing the copyright holders and/or other"
91
+ echo "parties provide the program “as is” without warranty of any kind, either"
92
+ echo "expressed or implied, including, but not limited to, the implied warranties of"
93
+ echo "merchantability and fitness for a particular purpose. The entire risk as to the"
94
+ echo "quality and performance of the program is with you. Should the program prove"
95
+ echo "defective, you assume the cost of all necessary servicing, repair or correction."
96
+ ;;
97
+ *)
98
+ echo "Statistical Analysis of Polling Results (SAPoR) v${VERSION}"
99
+ echo "Copyright © ${COPYRIGHTYEAR} Filip van Laenen <f.a.vanlaenen@ieee.org>"
100
+ echo
101
+ echo "Usage: sapor {analyze|help|version|warranty|copyright}" >&2
102
+ echo "Type 'sapor help' to get more information."
103
+ exit 1
104
+ ;;
105
+ esac
106
+
@@ -0,0 +1,1680 @@
1
+ # Statistical Analysis of Polling Results (SAPoR)
2
+ # Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
3
+ #
4
+ # This file is part of SAPoR.
5
+ #
6
+ # SAPoR is free software: you can redistribute it and/or modify it under the
7
+ # terms of the GNU General Public License as published by the Free Software
8
+ # Foundation, either version 3 of the License, or (at your option) any later
9
+ # version.
10
+ #
11
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14
+ #
15
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
16
+ #
17
+
18
+ BUDAPEST capital 01 | SZOCIÁLDEMOKRATÁK | 321
19
+ BUDAPEST capital 01 | LMP | 6482
20
+ BUDAPEST capital 01 | FIDESZ-KDNP | 21503
21
+ BUDAPEST capital 01 | JOBBIK | 3713
22
+ BUDAPEST capital 01 | MSZP-EGYÜTT-DK-PM-MLP | 15459
23
+
24
+ BUDAPEST capital 02 | JOBBIK | 4291
25
+ BUDAPEST capital 02 | FIDESZ-KDNP | 23963
26
+ BUDAPEST capital 02 | JESZ | 207
27
+ BUDAPEST capital 02 | LMP | 4615
28
+ BUDAPEST capital 02 | MSZP-EGYÜTT-DK-PM-MLP | 19643
29
+ BUDAPEST capital 02 | MUNKÁSPÁRT | 262
30
+ BUDAPEST capital 02 | SEM | 534
31
+
32
+ BUDAPEST capital 03 | SEM | 479
33
+ BUDAPEST capital 03 | FKGP | 139
34
+ BUDAPEST capital 03 | 4K! | 269
35
+ BUDAPEST capital 03 | LMP | 5321
36
+ BUDAPEST capital 03 | JOBBIK | 3220
37
+ BUDAPEST capital 03 | KTI | 157
38
+ BUDAPEST capital 03 | FIDESZ-KDNP | 24610
39
+ BUDAPEST capital 03 | MSZP-EGYÜTT-DK-PM-MLP | 18414
40
+
41
+ BUDAPEST capital 04 | ÖP | 432
42
+ BUDAPEST capital 04 | FIDESZ-KDNP | 24928
43
+ BUDAPEST capital 04 | MSZP-EGYÜTT-DK-PM-MLP | 20750
44
+ BUDAPEST capital 04 | JOBBIK | 3583
45
+ BUDAPEST capital 04 | LMP | 4618
46
+
47
+ BUDAPEST capital 05 | MSZP-EGYÜTT-DK-PM-MLP | 17256
48
+ BUDAPEST capital 05 | JOBBIK | 4661
49
+ BUDAPEST capital 05 | FIDESZ-KDNP | 16983
50
+ BUDAPEST capital 05 | LMP | 5348
51
+ BUDAPEST capital 05 | JESZ | 369
52
+
53
+ BUDAPEST capital 06 | MSZP-EGYÜTT-DK-PM-MLP | 15437
54
+ BUDAPEST capital 06 | ÚDP | 43
55
+ BUDAPEST capital 06 | SZOCIÁLDEMOKRATÁK | 187
56
+ BUDAPEST capital 06 | JOBBIK | 5560
57
+ BUDAPEST capital 06 | JESZ | 113
58
+ BUDAPEST capital 06 | LMP | 3474
59
+ BUDAPEST capital 06 | KTI | 122
60
+ BUDAPEST capital 06 | ZÖLDEK | 293
61
+ BUDAPEST capital 06 | MCP | 212
62
+ BUDAPEST capital 06 | ÚMP | 29
63
+ BUDAPEST capital 06 | Független | 323
64
+ BUDAPEST capital 06 | FIDESZ-KDNP | 15977
65
+
66
+ BUDAPEST capital 07 | SMS | 331
67
+ BUDAPEST capital 07 | MSZP-EGYÜTT-DK-PM-MLP | 27514
68
+ BUDAPEST capital 07 | SEM | 386
69
+ BUDAPEST capital 07 | JESZ | 110
70
+ BUDAPEST capital 07 | SZOCIÁLDEMOKRATÁK | 128
71
+ BUDAPEST capital 07 | JOBBIK | 4640
72
+ BUDAPEST capital 07 | MSZDP | 45
73
+ BUDAPEST capital 07 | FIDESZ-KDNP | 16453
74
+ BUDAPEST capital 07 | EP | 62
75
+ BUDAPEST capital 07 | ÖP | 129
76
+ BUDAPEST capital 07 | LMP | 3821
77
+ BUDAPEST capital 07 | MCP | 67
78
+
79
+ BUDAPEST capital 08 | MSZP-EGYÜTT-DK-PM-MLP | 21697
80
+ BUDAPEST capital 08 | KTI | 474
81
+ BUDAPEST capital 08 | MUNKÁSPÁRT | 368
82
+ BUDAPEST capital 08 | JESZ | 201
83
+ BUDAPEST capital 08 | ÉLŐLÁNC | 1006
84
+ BUDAPEST capital 08 | FIDESZ-KDNP | 19772
85
+ BUDAPEST capital 08 | JOBBIK | 5924
86
+ BUDAPEST capital 08 | LMP | 4961
87
+
88
+ BUDAPEST capital 09 | ÚDP | 32
89
+ BUDAPEST capital 09 | JOBBIK | 6975
90
+ BUDAPEST capital 09 | MCP | 33
91
+ BUDAPEST capital 09 | LMP | 3356
92
+ BUDAPEST capital 09 | EU. ROM | 20
93
+ BUDAPEST capital 09 | JESZ | 168
94
+ BUDAPEST capital 09 | EGYÜTT 2014 | 286
95
+ BUDAPEST capital 09 | FIDESZ-KDNP | 18851
96
+ BUDAPEST capital 09 | FKGP | 100
97
+ BUDAPEST capital 09 | SMS | 349
98
+ BUDAPEST capital 09 | EP | 138
99
+ BUDAPEST capital 09 | MUNKÁSPÁRT | 389
100
+ BUDAPEST capital 09 | MSZP-EGYÜTT-DK-PM-MLP | 19501
101
+ BUDAPEST capital 09 | MCF | 26
102
+ BUDAPEST capital 09 | ÚMP | 26
103
+
104
+ BUDAPEST capital 10 | MSZP-EGYÜTT-DK-PM-MLP | 19633
105
+ BUDAPEST capital 10 | SZOCIÁLDEMOKRATÁK | 309
106
+ BUDAPEST capital 10 | LMP | 4593
107
+ BUDAPEST capital 10 | JOBBIK | 6815
108
+ BUDAPEST capital 10 | FIDESZ-KDNP | 18394
109
+ BUDAPEST capital 10 | EGYÜTT 2014 | 443
110
+ BUDAPEST capital 10 | ÖP | 182
111
+ BUDAPEST capital 10 | JESZ | 149
112
+ BUDAPEST capital 10 | A HAZA NEM ELADÓ | 243
113
+ BUDAPEST capital 10 | ZÖLDEK | 585
114
+
115
+ BUDAPEST capital 11 | MKSZU | 36
116
+ BUDAPEST capital 11 | JOBBIK | 6529
117
+ BUDAPEST capital 11 | SZOCIÁLDEMOKRATÁK | 220
118
+ BUDAPEST capital 11 | MSZP-EGYÜTT-DK-PM-MLP | 20956
119
+ BUDAPEST capital 11 | A HAZA NEM ELADÓ | 256
120
+ BUDAPEST capital 11 | SEM | 378
121
+ BUDAPEST capital 11 | JESZ | 121
122
+ BUDAPEST capital 11 | FIDESZ-KDNP | 18181
123
+ BUDAPEST capital 11 | LMP | 3935
124
+ BUDAPEST capital 11 | MCP | 84
125
+ BUDAPEST capital 11 | MUNKÁSPÁRT | 350
126
+ BUDAPEST capital 11 | SMS | 309
127
+ BUDAPEST capital 11 | ÖP | 178
128
+
129
+ BUDAPEST capital 12 | KTI | 213
130
+ BUDAPEST capital 12 | FIDESZ-KDNP | 18955
131
+ BUDAPEST capital 12 | MSZP-EGYÜTT-DK-PM-MLP | 18678
132
+ BUDAPEST capital 12 | ZÖLDEK | 366
133
+ BUDAPEST capital 12 | SMS | 332
134
+ BUDAPEST capital 12 | KISGAZDAPÁRT-MIÉP | 168
135
+ BUDAPEST capital 12 | JESZ | 184
136
+ BUDAPEST capital 12 | SZOCIÁLDEMOKRATÁK | 278
137
+ BUDAPEST capital 12 | LMP | 3306
138
+ BUDAPEST capital 12 | A HAZA NEM ELADÓ | 250
139
+ BUDAPEST capital 12 | JOBBIK | 7488
140
+
141
+ BUDAPEST capital 13 | 4K! | 252
142
+ BUDAPEST capital 13 | MSZP-EGYÜTT-DK-PM-MLP | 19682
143
+ BUDAPEST capital 13 | FIDESZ-KDNP | 21445
144
+ BUDAPEST capital 13 | ÉLŐLÁNC | 522
145
+ BUDAPEST capital 13 | JESZ | 220
146
+ BUDAPEST capital 13 | ÖP | 195
147
+ BUDAPEST capital 13 | SZOCIÁLDEMOKRATÁK | 207
148
+ BUDAPEST capital 13 | JOBBIK | 5850
149
+ BUDAPEST capital 13 | LMP | 3201
150
+
151
+ BUDAPEST capital 14 | KTI | 333
152
+ BUDAPEST capital 14 | MSZP-EGYÜTT-DK-PM-MLP | 17084
153
+ BUDAPEST capital 14 | EGYÜTT 2014 | 386
154
+ BUDAPEST capital 14 | FKGP | 110
155
+ BUDAPEST capital 14 | FIDESZ-KDNP | 22393
156
+ BUDAPEST capital 14 | SEM | 319
157
+ BUDAPEST capital 14 | SZOCIÁLDEMOKRATÁK | 190
158
+ BUDAPEST capital 14 | JESZ | 232
159
+ BUDAPEST capital 14 | JOBBIK | 7427
160
+ BUDAPEST capital 14 | LMP | 3395
161
+ BUDAPEST capital 14 | ÚDP | 50
162
+ BUDAPEST capital 14 | ÚMP | 38
163
+ BUDAPEST capital 14 | ÉLŐLÁNC | 113
164
+
165
+ BUDAPEST capital 15 | MSZP-EGYÜTT-DK-PM-MLP | 20592
166
+ BUDAPEST capital 15 | MRPP | 54
167
+ BUDAPEST capital 15 | JESZ | 174
168
+ BUDAPEST capital 15 | KTI | 189
169
+ BUDAPEST capital 15 | LMP | 3448
170
+ BUDAPEST capital 15 | SEM | 319
171
+ BUDAPEST capital 15 | SZOCIÁLDEMOKRATÁK | 128
172
+ BUDAPEST capital 15 | EGYÜTT 2014 | 197
173
+ BUDAPEST capital 15 | SMS | 316
174
+ BUDAPEST capital 15 | ÚMP | 44
175
+ BUDAPEST capital 15 | FIDESZ-KDNP | 20648
176
+ BUDAPEST capital 15 | ÚDP | 45
177
+ BUDAPEST capital 15 | SZDP | 67
178
+ BUDAPEST capital 15 | JOBBIK | 8493
179
+ BUDAPEST capital 15 | A VÁLASZ | 155
180
+ BUDAPEST capital 15 | MSZDP | 52
181
+
182
+ BUDAPEST capital 16 | MSZP-EGYÜTT-DK-PM-MLP | 18507
183
+ BUDAPEST capital 16 | EU. ROM | 26
184
+ BUDAPEST capital 16 | JESZ | 116
185
+ BUDAPEST capital 16 | JOBBIK | 7407
186
+ BUDAPEST capital 16 | ÖP | 140
187
+ BUDAPEST capital 16 | EP | 64
188
+ BUDAPEST capital 16 | NEMZETI ÉRDEKÉRT | 25
189
+ BUDAPEST capital 16 | FIDESZ-KDNP | 17523
190
+ BUDAPEST capital 16 | MCP | 61
191
+ BUDAPEST capital 16 | Független | 543
192
+ BUDAPEST capital 16 | SZOCIÁLDEMOKRATÁK | 190
193
+ BUDAPEST capital 16 | ÚMP | 24
194
+ BUDAPEST capital 16 | LMP | 2939
195
+ BUDAPEST capital 16 | SMS | 295
196
+ BUDAPEST capital 16 | KTI | 167
197
+ BUDAPEST capital 16 | ÚDP | 23
198
+ BUDAPEST capital 16 | MSZDP | 126
199
+ BUDAPEST capital 16 | KMSZ | 61
200
+
201
+ BUDAPEST capital 17 | JESZ | 119
202
+ BUDAPEST capital 17 | ÚMP | 46
203
+ BUDAPEST capital 17 | MCF | 52
204
+ BUDAPEST capital 17 | ÚDP | 22
205
+ BUDAPEST capital 17 | JOBBIK | 9076
206
+ BUDAPEST capital 17 | FIDESZ-KDNP | 18120
207
+ BUDAPEST capital 17 | ÖP | 180
208
+ BUDAPEST capital 17 | SZOCIÁLDEMOKRATÁK | 165
209
+ BUDAPEST capital 17 | FKGP | 96
210
+ BUDAPEST capital 17 | MUNKÁSPÁRT | 553
211
+ BUDAPEST capital 17 | EP | 88
212
+ BUDAPEST capital 17 | MSZDP | 73
213
+ BUDAPEST capital 17 | SMS | 384
214
+ BUDAPEST capital 17 | MRPP | 53
215
+ BUDAPEST capital 17 | KTI | 167
216
+ BUDAPEST capital 17 | LMP | 3076
217
+ BUDAPEST capital 17 | 4K! | 159
218
+ BUDAPEST capital 17 | NEMZETI ÉRDEKÉRT | 44
219
+ BUDAPEST capital 17 | MSZP-EGYÜTT-DK-PM-MLP | 18564
220
+
221
+ BUDAPEST capital 18 | AQP | 119
222
+ BUDAPEST capital 18 | MRPP | 14
223
+ BUDAPEST capital 18 | JESZ | 123
224
+ BUDAPEST capital 18 | SMS | 286
225
+ BUDAPEST capital 18 | SZOCIÁLDEMOKRATÁK | 229
226
+ BUDAPEST capital 18 | ZÖLDEK | 499
227
+ BUDAPEST capital 18 | JOBBIK | 6784
228
+ BUDAPEST capital 18 | MSZP-EGYÜTT-DK-PM-MLP | 20523
229
+ BUDAPEST capital 18 | FIDESZ-KDNP | 23189
230
+ BUDAPEST capital 18 | KTI | 179
231
+ BUDAPEST capital 18 | LMP | 3601
232
+ BUDAPEST capital 18 | FKGP | 139
233
+
234
+ BARANYA county 01 | SEM | 306
235
+ BARANYA county 01 | Független | 125
236
+ BARANYA county 01 | Független | 43
237
+ BARANYA county 01 | SZAVA | 48
238
+ BARANYA county 01 | A HAZA NEM ELADÓ | 505
239
+ BARANYA county 01 | SMS | 238
240
+ BARANYA county 01 | LMP | 4489
241
+ BARANYA county 01 | SZOCIÁLDEMOKRATÁK | 233
242
+ BARANYA county 01 | JESZ | 179
243
+ BARANYA county 01 | JOBBIK | 8379
244
+ BARANYA county 01 | TEMPO | 70
245
+ BARANYA county 01 | FIDESZ-KDNP | 18855
246
+ BARANYA county 01 | Független | 74
247
+ BARANYA county 01 | MSZP-EGYÜTT-DK-PM-MLP | 16706
248
+ BARANYA county 01 | FKGP | 124
249
+ BARANYA county 01 | MACSEP | 0
250
+ BARANYA county 01 | KTI | 329
251
+ BARANYA county 01 | MCF | 0
252
+
253
+ BARANYA county 02 | JOBBIK | 9931
254
+ BARANYA county 02 | MACSEP | 38
255
+ BARANYA county 02 | MCF | 0
256
+ BARANYA county 02 | FIDESZ-KDNP | 17413
257
+ BARANYA county 02 | SEM | 259
258
+ BARANYA county 02 | ÚDP | 26
259
+ BARANYA county 02 | KTI | 285
260
+ BARANYA county 02 | ÚMP | 35
261
+ BARANYA county 02 | MSZP-EGYÜTT-DK-PM-MLP | 15334
262
+ BARANYA county 02 | JESZ | 136
263
+ BARANYA county 02 | FKGP | 132
264
+ BARANYA county 02 | LMP | 3650
265
+ BARANYA county 02 | SZOCIÁLDEMOKRATÁK | 216
266
+ BARANYA county 02 | A HAZA NEM ELADÓ | 459
267
+ BARANYA county 02 | ÖP | 101
268
+
269
+ BARANYA county 03 | MCF | 0
270
+ BARANYA county 03 | MACSEP | 0
271
+ BARANYA county 03 | Független | 484
272
+ BARANYA county 03 | KMSZ | 76
273
+ BARANYA county 03 | ÚMP | 41
274
+ BARANYA county 03 | ÚDP | 37
275
+ BARANYA county 03 | MSZP-EGYÜTT-DK-PM-MLP | 8983
276
+ BARANYA county 03 | SZOCIÁLDEMOKRATÁK | 113
277
+ BARANYA county 03 | JOBBIK | 8137
278
+ BARANYA county 03 | MCP | 135
279
+ BARANYA county 03 | KTI | 247
280
+ BARANYA county 03 | LMP | 1890
281
+ BARANYA county 03 | SEM | 190
282
+ BARANYA county 03 | SMS | 145
283
+ BARANYA county 03 | MUNKÁSPÁRT | 332
284
+ BARANYA county 03 | JESZ | 84
285
+ BARANYA county 03 | FIDESZ-KDNP | 21625
286
+ BARANYA county 03 | EU. ROM | 30
287
+ BARANYA county 03 | TEMPO | 30
288
+ BARANYA county 03 | A HAZA NEM ELADÓ | 368
289
+ BARANYA county 03 | ÖP | 76
290
+
291
+ BARANYA county 04 | MSZP-EGYÜTT-DK-PM-MLP | 12131
292
+ BARANYA county 04 | KTI | 134
293
+ BARANYA county 04 | MGP | 63
294
+ BARANYA county 04 | LMP | 1439
295
+ BARANYA county 04 | TEMPO | 73
296
+ BARANYA county 04 | JESZ | 173
297
+ BARANYA county 04 | ÚDP | 7
298
+ BARANYA county 04 | A HAZA NEM ELADÓ | 359
299
+ BARANYA county 04 | EURÓPAI BALOLDAL | 117
300
+ BARANYA county 04 | FIDESZ-KDNP | 19563
301
+ BARANYA county 04 | SZMP | 40
302
+ BARANYA county 04 | Független | 139
303
+ BARANYA county 04 | MACSEP | 0
304
+ BARANYA county 04 | ÚMP | 10
305
+ BARANYA county 04 | SZOCIÁLDEMOKRATÁK | 117
306
+ BARANYA county 04 | SEM | 113
307
+ BARANYA county 04 | HATMAP | 51
308
+ BARANYA county 04 | KMSZ | 49
309
+ BARANYA county 04 | MRPP | 45
310
+ BARANYA county 04 | MCF | 0
311
+ BARANYA county 04 | ÖP | 58
312
+ BARANYA county 04 | EGYIKSEM | 71
313
+ BARANYA county 04 | MCP | 170
314
+ BARANYA county 04 | JOBBIK | 9081
315
+ BARANYA county 04 | MDU | 25
316
+ BARANYA county 04 | EU. ROM | 39
317
+ BARANYA county 04 | FKGP | 220
318
+ BARANYA county 04 | SMS | 114
319
+ BARANYA county 04 | REND, SZABADSÁG | 0
320
+
321
+ BÁCS–KISKUN county 01 | SMS | 220
322
+ BÁCS–KISKUN county 01 | FIDESZ-KDNP | 20558
323
+ BÁCS–KISKUN county 01 | ZÖLDEK | 346
324
+ BÁCS–KISKUN county 01 | JOBBIK | 8204
325
+ BÁCS–KISKUN county 01 | SZOCIÁLDEMOKRATÁK | 103
326
+ BÁCS–KISKUN county 01 | MACSEP | 32
327
+ BÁCS–KISKUN county 01 | KTI | 248
328
+ BÁCS–KISKUN county 01 | MSZP-EGYÜTT-DK-PM-MLP | 7899
329
+ BÁCS–KISKUN county 01 | TEMPO | 84
330
+ BÁCS–KISKUN county 01 | LMP | 2134
331
+ BÁCS–KISKUN county 01 | MCP | 99
332
+ BÁCS–KISKUN county 01 | ÖP | 116
333
+
334
+ BÁCS–KISKUN county 02 | ÉLŐLÁNC | 333
335
+ BÁCS–KISKUN county 02 | TEMPO | 80
336
+ BÁCS–KISKUN county 02 | JOBBIK | 7548
337
+ BÁCS–KISKUN county 02 | MSZDP | 78
338
+ BÁCS–KISKUN county 02 | SEM | 219
339
+ BÁCS–KISKUN county 02 | MACSEP | 14
340
+ BÁCS–KISKUN county 02 | MCP | 93
341
+ BÁCS–KISKUN county 02 | JESZ | 185
342
+ BÁCS–KISKUN county 02 | MSZP-EGYÜTT-DK-PM-MLP | 9446
343
+ BÁCS–KISKUN county 02 | FIDESZ-KDNP | 22303
344
+ BÁCS–KISKUN county 02 | MGP | 83
345
+ BÁCS–KISKUN county 02 | KTI | 138
346
+ BÁCS–KISKUN county 02 | LMP | 2295
347
+ BÁCS–KISKUN county 02 | A HAZA NEM ELADÓ | 347
348
+
349
+ BÁCS–KISKUN county 03 | JOBBIK | 9397
350
+ BÁCS–KISKUN county 03 | MCF | 48
351
+ BÁCS–KISKUN county 03 | TEMPO | 61
352
+ BÁCS–KISKUN county 03 | ÚDP | 23
353
+ BÁCS–KISKUN county 03 | FIDESZ-KDNP | 20833
354
+ BÁCS–KISKUN county 03 | MDU | 36
355
+ BÁCS–KISKUN county 03 | Független | 159
356
+ BÁCS–KISKUN county 03 | HATMAP | 23
357
+ BÁCS–KISKUN county 03 | KTI | 157
358
+ BÁCS–KISKUN county 03 | EGYÜTT 2014 | 186
359
+ BÁCS–KISKUN county 03 | LMP | 1457
360
+ BÁCS–KISKUN county 03 | REND, SZABADSÁG | 30
361
+ BÁCS–KISKUN county 03 | MCP | 48
362
+ BÁCS–KISKUN county 03 | MSZP-EGYÜTT-DK-PM-MLP | 8321
363
+ BÁCS–KISKUN county 03 | ÚMP | 28
364
+ BÁCS–KISKUN county 03 | MACSEP | 25
365
+ BÁCS–KISKUN county 03 | SZOCIÁLDEMOKRATÁK | 144
366
+
367
+ BÁCS–KISKUN county 04 | LMP | 1387
368
+ BÁCS–KISKUN county 04 | KTI | 181
369
+ BÁCS–KISKUN county 04 | EGYÜTT 2014 | 88
370
+ BÁCS–KISKUN county 04 | HATMAP | 23
371
+ BÁCS–KISKUN county 04 | MSZP-EGYÜTT-DK-PM-MLP | 7452
372
+ BÁCS–KISKUN county 04 | MDU | 34
373
+ BÁCS–KISKUN county 04 | SMS | 493
374
+ BÁCS–KISKUN county 04 | REND, SZABADSÁG | 20
375
+ BÁCS–KISKUN county 04 | MACSEP | 10
376
+ BÁCS–KISKUN county 04 | ÚMP | 60
377
+ BÁCS–KISKUN county 04 | JOBBIK | 8666
378
+ BÁCS–KISKUN county 04 | SZOCIÁLDEMOKRATÁK | 175
379
+ BÁCS–KISKUN county 04 | JESZ | 203
380
+ BÁCS–KISKUN county 04 | FIDESZ-KDNP | 21634
381
+ BÁCS–KISKUN county 04 | ÖP | 133
382
+
383
+ BÁCS–KISKUN county 05 | EGYÜTT 2014 | 125
384
+ BÁCS–KISKUN county 05 | JOBBIK | 9659
385
+ BÁCS–KISKUN county 05 | MACSEP | 24
386
+ BÁCS–KISKUN county 05 | FIDESZ-KDNP | 20228
387
+ BÁCS–KISKUN county 05 | MSZP-EGYÜTT-DK-PM-MLP | 7297
388
+ BÁCS–KISKUN county 05 | SZOCIÁLDEMOKRATÁK | 90
389
+ BÁCS–KISKUN county 05 | ÚDP | 26
390
+ BÁCS–KISKUN county 05 | MGP | 56
391
+ BÁCS–KISKUN county 05 | KTI | 741
392
+ BÁCS–KISKUN county 05 | SEM | 88
393
+ BÁCS–KISKUN county 05 | LMP | 913
394
+ BÁCS–KISKUN county 05 | TEMPO | 47
395
+ BÁCS–KISKUN county 05 | Független | 172
396
+
397
+ BÁCS–KISKUN county 06 | FIDESZ-KDNP | 19286
398
+ BÁCS–KISKUN county 06 | MAJP | 58
399
+ BÁCS–KISKUN county 06 | JOBBIK | 6792
400
+ BÁCS–KISKUN county 06 | MSZP-EGYÜTT-DK-PM-MLP | 9954
401
+ BÁCS–KISKUN county 06 | MCF | 15
402
+ BÁCS–KISKUN county 06 | SZOCIÁLDEMOKRATÁK | 74
403
+ BÁCS–KISKUN county 06 | LMP | 1835
404
+ BÁCS–KISKUN county 06 | SMS | 117
405
+ BÁCS–KISKUN county 06 | MKSZU | 33
406
+ BÁCS–KISKUN county 06 | KTI | 108
407
+ BÁCS–KISKUN county 06 | MGP | 41
408
+ BÁCS–KISKUN county 06 | JESZ | 125
409
+ BÁCS–KISKUN county 06 | MUNKÁSPÁRT | 245
410
+ BÁCS–KISKUN county 06 | TEMPO | 129
411
+ BÁCS–KISKUN county 06 | MACSEP | 26
412
+
413
+ BÉKÉS county 01 | ÖP | 147
414
+ BÉKÉS county 01 | MUNKÁSPÁRT | 433
415
+ BÉKÉS county 01 | LMP | 2678
416
+ BÉKÉS county 01 | SEM | 279
417
+ BÉKÉS county 01 | JESZ | 121
418
+ BÉKÉS county 01 | MACSEP | 21
419
+ BÉKÉS county 01 | ÚDP | 51
420
+ BÉKÉS county 01 | SZOCIÁLDEMOKRATÁK | 86
421
+ BÉKÉS county 01 | SMS | 275
422
+ BÉKÉS county 01 | A HAZA NEM ELADÓ | 709
423
+ BÉKÉS county 01 | MSZP-EGYÜTT-DK-PM-MLP | 12161
424
+ BÉKÉS county 01 | ÚMP | 33
425
+ BÉKÉS county 01 | JOBBIK | 9273
426
+ BÉKÉS county 01 | FIDESZ-KDNP | 18364
427
+ BÉKÉS county 01 | NEMZETI ÉRDEKÉRT | 45
428
+
429
+ BÉKÉS county 02 | SZOCIÁLDEMOKRATÁK | 178
430
+ BÉKÉS county 02 | MSZP-EGYÜTT-DK-PM-MLP | 7925
431
+ BÉKÉS county 02 | MACSEP | 88
432
+ BÉKÉS county 02 | MSZDP | 99
433
+ BÉKÉS county 02 | FIDESZ-KDNP | 19942
434
+ BÉKÉS county 02 | ÚMP | 69
435
+ BÉKÉS county 02 | KTI | 182
436
+ BÉKÉS county 02 | LMP | 1576
437
+ BÉKÉS county 02 | SZAVA | 0
438
+ BÉKÉS county 02 | NEMZETI ÉRDEKÉRT | 59
439
+ BÉKÉS county 02 | A HAZA NEM ELADÓ | 534
440
+ BÉKÉS county 02 | ÚDP | 19
441
+ BÉKÉS county 02 | ÖP | 90
442
+ BÉKÉS county 02 | JOBBIK | 10958
443
+
444
+ BÉKÉS county 03 | Független | 654
445
+ BÉKÉS county 03 | MSZP-EGYÜTT-DK-PM-MLP | 9378
446
+ BÉKÉS county 03 | MCP | 46
447
+ BÉKÉS county 03 | MKSZU | 24
448
+ BÉKÉS county 03 | SEM | 118
449
+ BÉKÉS county 03 | FIDESZ-KDNP | 19315
450
+ BÉKÉS county 03 | ÚDP | 10
451
+ BÉKÉS county 03 | LMP | 1101
452
+ BÉKÉS county 03 | A HAZA NEM ELADÓ | 2357
453
+ BÉKÉS county 03 | JOBBIK | 7579
454
+ BÉKÉS county 03 | ÚMP | 24
455
+ BÉKÉS county 03 | MACSEP | 23
456
+ BÉKÉS county 03 | NEMZETI ÉRDEKÉRT | 13
457
+ BÉKÉS county 03 | ÖP | 43
458
+ BÉKÉS county 03 | SMS | 135
459
+ BÉKÉS county 03 | MUNKÁSPÁRT | 423
460
+
461
+ BÉKÉS county 04 | LMP | 1487
462
+ BÉKÉS county 04 | FIDESZ-KDNP | 20789
463
+ BÉKÉS county 04 | JOBBIK | 10403
464
+ BÉKÉS county 04 | SZAVA | 0
465
+ BÉKÉS county 04 | SZOCIÁLDEMOKRATÁK | 51
466
+ BÉKÉS county 04 | MCP | 108
467
+ BÉKÉS county 04 | HATMAP | 28
468
+ BÉKÉS county 04 | SZDP | 127
469
+ BÉKÉS county 04 | MDU | 25
470
+ BÉKÉS county 04 | Független | 180
471
+ BÉKÉS county 04 | ÖP | 61
472
+ BÉKÉS county 04 | ÚMP | 22
473
+ BÉKÉS county 04 | MACSEP | 28
474
+ BÉKÉS county 04 | MUNKÁSPÁRT | 657
475
+ BÉKÉS county 04 | MCF | 10
476
+ BÉKÉS county 04 | MSZP-EGYÜTT-DK-PM-MLP | 10738
477
+ BÉKÉS county 04 | SMS | 341
478
+ BÉKÉS county 04 | REND, SZABADSÁG | 31
479
+ BÉKÉS county 04 | EGYÜTT 2014 | 93
480
+ BÉKÉS county 04 | A HAZA NEM ELADÓ | 598
481
+ BÉKÉS county 04 | ÚDP | 28
482
+
483
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | EGYÜTT 2014 | 182
484
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | ZÖLDEK | 298
485
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | JOBBIK | 15050
486
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | TBP | 18
487
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | ÖP | 117
488
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | REND PÁRT | 12
489
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | SEM | 208
490
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | MUNKÁSPÁRT | 338
491
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | FIDESZ-KDNP | 16602
492
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | FKGP | 68
493
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | ÚDP | 15
494
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | SZOCIÁLDEMOKRATÁK | 106
495
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | MRPP | 4
496
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | MCP | 285
497
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | MSZP-EGYÜTT-DK-PM-MLP | 14072
498
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | LMP | 1624
499
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | A HAZA NEM ELADÓ | 259
500
+ BORSOD–ABAÚJ–ZEMPLÉN county 01 | ÚMP | 33
501
+
502
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | MUNKÁSPÁRT | 329
503
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | LMP | 1555
504
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | SZOCIÁLDEMOKRATÁK | 120
505
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | SEM | 165
506
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | MDU | 83
507
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | MCP | 334
508
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | MSZP-EGYÜTT-DK-PM-MLP | 14798
509
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | FKGP | 58
510
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | ÖP | 120
511
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | MRPP | 3
512
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | A HAZA NEM ELADÓ | 255
513
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | JOBBIK | 14425
514
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | FIDESZ-KDNP | 14560
515
+ BORSOD–ABAÚJ–ZEMPLÉN county 02 | ZÖLDEK | 335
516
+
517
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | Nemzeti Forr.Párt | 248
518
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | A HAZA NEM ELADÓ | 133
519
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | SMS | 125
520
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | MCP | 350
521
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | JOBBIK | 12148
522
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | SEM | 80
523
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | Független | 124
524
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | FKGP | 230
525
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | SZDP | 103
526
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | MSZP-EGYÜTT-DK-PM-MLP | 10146
527
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | LMP | 612
528
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | FIDESZ-KDNP | 15473
529
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | JESZ | 133
530
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | KTI | 46
531
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | ÚDP | 18
532
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | ÚMP | 13
533
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | EGYÜTT 2014 | 183
534
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | MUNKÁSPÁRT | 474
535
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | MACSEP | 0
536
+ BORSOD–ABAÚJ–ZEMPLÉN county 03 | SZOCIÁLDEMOKRATÁK | 341
537
+
538
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | LMP | 859
539
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | SZOCIÁLDEMOKRATÁK | 92
540
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | SMS | 227
541
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | MUNKÁSPÁRT | 361
542
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | SEM | 86
543
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | SZEM-NŐPÁRT | 49
544
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | MSZP-EGYÜTT-DK-PM-MLP | 12563
545
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | JOBBIK | 12500
546
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | ÖP | 61
547
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | MCP | 538
548
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | ÚMP | 8
549
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | KISGAZDAPÁRT-MIÉP | 91
550
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | JESZ | 240
551
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | FIDESZ-KDNP | 16696
552
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | MDU | 88
553
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | FKGP | 43
554
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | TBP | 66
555
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | EGYÜTT 2014 | 89
556
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | A HAZA NEM ELADÓ | 160
557
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | ÚDP | 13
558
+ BORSOD–ABAÚJ–ZEMPLÉN county 04 | KTI | 122
559
+
560
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | A VÁLASZ | 84
561
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | JOBBIK | 11561
562
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | LMP | 1045
563
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | ÚDP | 15
564
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | MCP | 490
565
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | MSZP-EGYÜTT-DK-PM-MLP | 9566
566
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | SZOCIÁLDEMOKRATÁK | 260
567
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | FKGP | 161
568
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | FIDESZ-KDNP | 19932
569
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | EGYÜTT 2014 | 88
570
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | A HAZA NEM ELADÓ | 153
571
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | ÖP | 66
572
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | EU. ROM | 23
573
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | JESZ | 170
574
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | ÚMP | 27
575
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | MACSEP | 0
576
+ BORSOD–ABAÚJ–ZEMPLÉN county 05 | SMS | 147
577
+
578
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | SZOCIÁLDEMOKRATÁK | 106
579
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | EGYÜTT 2014 | 153
580
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | MCP | 267
581
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | MACSEP | 56
582
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | SEM | 136
583
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | FKGP | 193
584
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | LMP | 1211
585
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | FIDESZ-KDNP | 19149
586
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | MSZP-EGYÜTT-DK-PM-MLP | 11133
587
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | A HAZA NEM ELADÓ | 201
588
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | Nemzeti Forr.Párt | 150
589
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | MUNKÁSPÁRT | 343
590
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | JESZ | 92
591
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | JOBBIK | 14009
592
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | ÖP | 101
593
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | ÚMP | 22
594
+ BORSOD–ABAÚJ–ZEMPLÉN county 06 | ÚDP | 40
595
+
596
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | MCP | 454
597
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | EP | 34
598
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | FIDESZ-KDNP | 22124
599
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | ÖP | 65
600
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | SMS | 163
601
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | SZDP | 102
602
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | FKGP | 91
603
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | A HAZA NEM ELADÓ | 245
604
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | MSZP-EGYÜTT-DK-PM-MLP | 8894
605
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | LMP | 917
606
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | MUNKÁSPÁRT | 353
607
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | JOBBIK | 12829
608
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | JESZ | 50
609
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | SZOCIÁLDEMOKRATÁK | 88
610
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | ZÖLDEK | 152
611
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | EGYÜTT 2014 | 68
612
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | SEM | 74
613
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | MACSEP | 0
614
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | TBP | 23
615
+ BORSOD–ABAÚJ–ZEMPLÉN county 07 | KISGAZDAPÁRT-MIÉP | 151
616
+
617
+ CSONGRÁD county 01 | FIDESZ-KDNP | 17346
618
+ CSONGRÁD county 01 | MGP | 86
619
+ CSONGRÁD county 01 | MCP | 61
620
+ CSONGRÁD county 01 | JOBBIK | 7463
621
+ CSONGRÁD county 01 | MACSEP | 0
622
+ CSONGRÁD county 01 | MCF | 15
623
+ CSONGRÁD county 01 | EGYÜTT 2014 | 358
624
+ CSONGRÁD county 01 | ÚDP | 43
625
+ CSONGRÁD county 01 | FKGP | 205
626
+ CSONGRÁD county 01 | NEMZETI ÉRDEKÉRT | 55
627
+ CSONGRÁD county 01 | MSZP-EGYÜTT-DK-PM-MLP | 20131
628
+ CSONGRÁD county 01 | MDU | 34
629
+ CSONGRÁD county 01 | SZOCIÁLDEMOKRATÁK | 129
630
+ CSONGRÁD county 01 | ZÖLDEK | 409
631
+ CSONGRÁD county 01 | A HAZA NEM ELADÓ | 390
632
+ CSONGRÁD county 01 | KTI | 141
633
+ CSONGRÁD county 01 | LMP | 3956
634
+ CSONGRÁD county 01 | 4K! | 227
635
+
636
+ CSONGRÁD county 02 | MSZP-EGYÜTT-DK-PM-MLP | 16952
637
+ CSONGRÁD county 02 | A HAZA NEM ELADÓ | 435
638
+ CSONGRÁD county 02 | JOBBIK | 8160
639
+ CSONGRÁD county 02 | EP | 252
640
+ CSONGRÁD county 02 | MDU | 130
641
+ CSONGRÁD county 02 | LMP | 3475
642
+ CSONGRÁD county 02 | MGP | 269
643
+ CSONGRÁD county 02 | FIDESZ-KDNP | 23171
644
+
645
+ CSONGRÁD county 03 | JOBBIK | 11610
646
+ CSONGRÁD county 03 | Független | 667
647
+ CSONGRÁD county 03 | MCP | 59
648
+ CSONGRÁD county 03 | MGP | 0
649
+ CSONGRÁD county 03 | A HAZA NEM ELADÓ | 542
650
+ CSONGRÁD county 03 | ZÖLDEK | 318
651
+ CSONGRÁD county 03 | MACSEP | 0
652
+ CSONGRÁD county 03 | LMP | 1794
653
+ CSONGRÁD county 03 | FIDESZ-KDNP | 21911
654
+ CSONGRÁD county 03 | FKGP | 149
655
+ CSONGRÁD county 03 | MSZP-EGYÜTT-DK-PM-MLP | 10201
656
+ CSONGRÁD county 03 | SMS | 594
657
+
658
+ CSONGRÁD county 04 | LMP | 3312
659
+ CSONGRÁD county 04 | ZÖLDEK | 259
660
+ CSONGRÁD county 04 | MUNKÁSPÁRT | 462
661
+ CSONGRÁD county 04 | EURÓPAI BALOLDAL | 273
662
+ CSONGRÁD county 04 | FIDESZ-KDNP | 20792
663
+ CSONGRÁD county 04 | SZOCIÁLDEMOKRATÁK | 174
664
+ CSONGRÁD county 04 | JOBBIK | 11824
665
+ CSONGRÁD county 04 | FKGP | 72
666
+ CSONGRÁD county 04 | KISGAZDAPÁRT-MIÉP | 97
667
+ CSONGRÁD county 04 | Független | 505
668
+ CSONGRÁD county 04 | MGP | 172
669
+ CSONGRÁD county 04 | KTI | 148
670
+ CSONGRÁD county 04 | MSZP-EGYÜTT-DK-PM-MLP | 9323
671
+ CSONGRÁD county 04 | A HAZA NEM ELADÓ | 303
672
+
673
+ FEJÉR county 01 | ÚDP | 49
674
+ FEJÉR county 01 | KTI | 253
675
+ FEJÉR county 01 | JOBBIK | 7450
676
+ FEJÉR county 01 | LMP | 2725
677
+ FEJÉR county 01 | MSZP-EGYÜTT-DK-PM-MLP | 13407
678
+ FEJÉR county 01 | MNP | 37
679
+ FEJÉR county 01 | JESZ | 231
680
+ FEJÉR county 01 | MCP | 75
681
+ FEJÉR county 01 | FIDESZ-KDNP | 19602
682
+ FEJÉR county 01 | SZOCIÁLDEMOKRATÁK | 211
683
+ FEJÉR county 01 | A HAZA NEM ELADÓ | 285
684
+
685
+ FEJÉR county 02 | SMS | 699
686
+ FEJÉR county 02 | MSZP-EGYÜTT-DK-PM-MLP | 8415
687
+ FEJÉR county 02 | KTI | 159
688
+ FEJÉR county 02 | EGYÜTT 2014 | 174
689
+ FEJÉR county 02 | JESZ | 189
690
+ FEJÉR county 02 | MCF | 73
691
+ FEJÉR county 02 | MACSEP | 0
692
+ FEJÉR county 02 | JOBBIK | 9668
693
+ FEJÉR county 02 | ZÖLDEK | 499
694
+ FEJÉR county 02 | LMP | 1944
695
+ FEJÉR county 02 | MCP | 25
696
+ FEJÉR county 02 | FIDESZ-KDNP | 22177
697
+ FEJÉR county 02 | SZOCIÁLDEMOKRATÁK | 170
698
+
699
+ FEJÉR county 03 | LMP | 2677
700
+ FEJÉR county 03 | JOBBIK | 8021
701
+ FEJÉR county 03 | FKGP | 345
702
+ FEJÉR county 03 | MSZP-EGYÜTT-DK-PM-MLP | 9534
703
+ FEJÉR county 03 | FIDESZ-KDNP | 22571
704
+ FEJÉR county 03 | MACSEP | 0
705
+ FEJÉR county 03 | SZOCIÁLDEMOKRATÁK | 106
706
+ FEJÉR county 03 | SMS | 233
707
+ FEJÉR county 03 | KTI | 159
708
+ FEJÉR county 03 | MUNKÁSPÁRT | 337
709
+ FEJÉR county 03 | SEM | 232
710
+ FEJÉR county 03 | EGYÜTT 2014 | 204
711
+ FEJÉR county 03 | ÚMP | 15
712
+ FEJÉR county 03 | MGP | 150
713
+ FEJÉR county 03 | JESZ | 136
714
+ FEJÉR county 03 | MCF | 39
715
+
716
+ FEJÉR county 04 | KTI | 103
717
+ FEJÉR county 04 | FKGP | 234
718
+ FEJÉR county 04 | NEMZETI ÉRDEKÉRT | 44
719
+ FEJÉR county 04 | SZOCIÁLDEMOKRATÁK | 205
720
+ FEJÉR county 04 | ÚMP | 22
721
+ FEJÉR county 04 | SZEM-NŐPÁRT | 131
722
+ FEJÉR county 04 | JOBBIK | 10422
723
+ FEJÉR county 04 | SEM | 202
724
+ FEJÉR county 04 | SMS | 949
725
+ FEJÉR county 04 | EGYÜTT 2014 | 209
726
+ FEJÉR county 04 | FIDESZ-KDNP | 14826
727
+ FEJÉR county 04 | MSZP-EGYÜTT-DK-PM-MLP | 12128
728
+ FEJÉR county 04 | AQP | 34
729
+ FEJÉR county 04 | LMP | 1811
730
+
731
+ FEJÉR county 05 | JOBBIK | 10926
732
+ FEJÉR county 05 | EU. ROM | 56
733
+ FEJÉR county 05 | Független | 298
734
+ FEJÉR county 05 | ÖP | 51
735
+ FEJÉR county 05 | MUNKÁSPÁRT | 270
736
+ FEJÉR county 05 | MSZP-EGYÜTT-DK-PM-MLP | 5781
737
+ FEJÉR county 05 | MACSEP | 0
738
+ FEJÉR county 05 | FIDESZ-KDNP | 17576
739
+ FEJÉR county 05 | MCP | 80
740
+ FEJÉR county 05 | ÉLŐLÁNC | 464
741
+ FEJÉR county 05 | KTI | 98
742
+ FEJÉR county 05 | SZOCIÁLDEMOKRATÁK | 48
743
+ FEJÉR county 05 | LMP | 942
744
+ FEJÉR county 05 | EGYÜTT 2014 | 139
745
+ FEJÉR county 05 | EP | 33
746
+ FEJÉR county 05 | JESZ | 75
747
+ FEJÉR county 05 | ÚMP | 40
748
+ FEJÉR county 05 | AQP | 21
749
+
750
+ GYŐR–MOSON–SOPRON county 01 | ÚMP | 33
751
+ GYŐR–MOSON–SOPRON county 01 | JESZ | 235
752
+ GYŐR–MOSON–SOPRON county 01 | ÚDP | 40
753
+ GYŐR–MOSON–SOPRON county 01 | ÖP | 158
754
+ GYŐR–MOSON–SOPRON county 01 | FIDESZ-KDNP | 21560
755
+ GYŐR–MOSON–SOPRON county 01 | JOBBIK | 6364
756
+ GYŐR–MOSON–SOPRON county 01 | KTI | 130
757
+ GYŐR–MOSON–SOPRON county 01 | LMP | 2468
758
+ GYŐR–MOSON–SOPRON county 01 | MUNKÁSPÁRT | 191
759
+ GYŐR–MOSON–SOPRON county 01 | MSZP-EGYÜTT-DK-PM-MLP | 12893
760
+ GYŐR–MOSON–SOPRON county 01 | SZOCIÁLDEMOKRATÁK | 144
761
+
762
+ GYŐR–MOSON–SOPRON county 02 | JOBBIK | 7714
763
+ GYŐR–MOSON–SOPRON county 02 | ÚMP | 59
764
+ GYŐR–MOSON–SOPRON county 02 | FIDESZ-KDNP | 24593
765
+ GYŐR–MOSON–SOPRON county 02 | SZOCIÁLDEMOKRATÁK | 179
766
+ GYŐR–MOSON–SOPRON county 02 | MSZP-EGYÜTT-DK-PM-MLP | 9278
767
+ GYŐR–MOSON–SOPRON county 02 | LMP | 2089
768
+ GYŐR–MOSON–SOPRON county 02 | SMS | 314
769
+ GYŐR–MOSON–SOPRON county 02 | JESZ | 288
770
+
771
+ GYŐR–MOSON–SOPRON county 03 | MSZP-EGYÜTT-DK-PM-MLP | 7005
772
+ GYŐR–MOSON–SOPRON county 03 | LMP | 1268
773
+ GYŐR–MOSON–SOPRON county 03 | JESZ | 108
774
+ GYŐR–MOSON–SOPRON county 03 | FIDESZ-KDNP | 24707
775
+ GYŐR–MOSON–SOPRON county 03 | ÚDP | 58
776
+ GYŐR–MOSON–SOPRON county 03 | EGYÜTT 2014 | 153
777
+ GYŐR–MOSON–SOPRON county 03 | ÚMP | 40
778
+ GYŐR–MOSON–SOPRON county 03 | KISGAZDAPÁRT-MIÉP | 166
779
+ GYŐR–MOSON–SOPRON county 03 | JOBBIK | 8478
780
+
781
+ GYŐR–MOSON–SOPRON county 04 | ÚDP | 75
782
+ GYŐR–MOSON–SOPRON county 04 | SZOCIÁLDEMOKRATÁK | 109
783
+ GYŐR–MOSON–SOPRON county 04 | LMP | 3097
784
+ GYŐR–MOSON–SOPRON county 04 | SMS | 555
785
+ GYŐR–MOSON–SOPRON county 04 | ÚMP | 72
786
+ GYŐR–MOSON–SOPRON county 04 | MSZP-EGYÜTT-DK-PM-MLP | 11601
787
+ GYŐR–MOSON–SOPRON county 04 | JESZ | 315
788
+ GYŐR–MOSON–SOPRON county 04 | SZDP | 133
789
+ GYŐR–MOSON–SOPRON county 04 | FIDESZ-KDNP | 24698
790
+ GYŐR–MOSON–SOPRON county 04 | JOBBIK | 8178
791
+
792
+ GYŐR–MOSON–SOPRON county 05 | ÖP | 183
793
+ GYŐR–MOSON–SOPRON county 05 | FIDESZ-KDNP | 22460
794
+ GYŐR–MOSON–SOPRON county 05 | KMSZ | 70
795
+ GYŐR–MOSON–SOPRON county 05 | SMS | 311
796
+ GYŐR–MOSON–SOPRON county 05 | JOBBIK | 8396
797
+ GYŐR–MOSON–SOPRON county 05 | MSZP-EGYÜTT-DK-PM-MLP | 9823
798
+ GYŐR–MOSON–SOPRON county 05 | ÚDP | 34
799
+ GYŐR–MOSON–SOPRON county 05 | LMP | 2177
800
+ GYŐR–MOSON–SOPRON county 05 | JESZ | 219
801
+ GYŐR–MOSON–SOPRON county 05 | MUNKÁSPÁRT | 361
802
+ GYŐR–MOSON–SOPRON county 05 | SEM | 374
803
+ GYŐR–MOSON–SOPRON county 05 | SZOCIÁLDEMOKRATÁK | 158
804
+ GYŐR–MOSON–SOPRON county 05 | ÚMP | 19
805
+
806
+ HAJDÚ–BIHAR county 01 | LMP | 2418
807
+ HAJDÚ–BIHAR county 01 | A HAZA NEM ELADÓ | 407
808
+ HAJDÚ–BIHAR county 01 | FIDESZ-KDNP | 21013
809
+ HAJDÚ–BIHAR county 01 | JOBBIK | 7805
810
+ HAJDÚ–BIHAR county 01 | JESZ | 133
811
+ HAJDÚ–BIHAR county 01 | MGP | 63
812
+ HAJDÚ–BIHAR county 01 | MSZP-EGYÜTT-DK-PM-MLP | 12012
813
+ HAJDÚ–BIHAR county 01 | SZDP | 90
814
+ HAJDÚ–BIHAR county 01 | SZOCIÁLDEMOKRATÁK | 68
815
+ HAJDÚ–BIHAR county 01 | ZÖLDEK | 496
816
+ HAJDÚ–BIHAR county 01 | ÖP | 150
817
+
818
+ HAJDÚ–BIHAR county 02 | JOBBIK | 9651
819
+ HAJDÚ–BIHAR county 02 | SMS | 374
820
+ HAJDÚ–BIHAR county 02 | LMP | 2363
821
+ HAJDÚ–BIHAR county 02 | KISGAZDAPÁRT-MIÉP | 236
822
+ HAJDÚ–BIHAR county 02 | MSZP-EGYÜTT-DK-PM-MLP | 10501
823
+ HAJDÚ–BIHAR county 02 | JESZ | 165
824
+ HAJDÚ–BIHAR county 02 | SEM | 377
825
+ HAJDÚ–BIHAR county 02 | SZOCIÁLDEMOKRATÁK | 178
826
+ HAJDÚ–BIHAR county 02 | FIDESZ-KDNP | 19847
827
+
828
+ HAJDÚ–BIHAR county 03 | A HAZA NEM ELADÓ | 343
829
+ HAJDÚ–BIHAR county 03 | MSZP-EGYÜTT-DK-PM-MLP | 7288
830
+ HAJDÚ–BIHAR county 03 | LMP | 1300
831
+ HAJDÚ–BIHAR county 03 | MCP | 256
832
+ HAJDÚ–BIHAR county 03 | SMS | 210
833
+ HAJDÚ–BIHAR county 03 | JOBBIK | 10441
834
+ HAJDÚ–BIHAR county 03 | MACSEP | 65
835
+ HAJDÚ–BIHAR county 03 | FIDESZ-KDNP | 21619
836
+ HAJDÚ–BIHAR county 03 | MKSZU | 50
837
+ HAJDÚ–BIHAR county 03 | SZOCIÁLDEMOKRATÁK | 88
838
+ HAJDÚ–BIHAR county 03 | MRPP | 19
839
+ HAJDÚ–BIHAR county 03 | ÖP | 112
840
+ HAJDÚ–BIHAR county 03 | JESZ | 71
841
+
842
+ HAJDÚ–BIHAR county 04 | LMP | 1028
843
+ HAJDÚ–BIHAR county 04 | SMS | 228
844
+ HAJDÚ–BIHAR county 04 | JESZ | 108
845
+ HAJDÚ–BIHAR county 04 | MSZP-EGYÜTT-DK-PM-MLP | 6985
846
+ HAJDÚ–BIHAR county 04 | FIDESZ-KDNP | 17799
847
+ HAJDÚ–BIHAR county 04 | JOBBIK | 10873
848
+ HAJDÚ–BIHAR county 04 | MCP | 81
849
+ HAJDÚ–BIHAR county 04 | Független | 453
850
+ HAJDÚ–BIHAR county 04 | SZOCIÁLDEMOKRATÁK | 145
851
+ HAJDÚ–BIHAR county 04 | EU. ROM | 27
852
+
853
+ HAJDÚ–BIHAR county 05 | Független | 44
854
+ HAJDÚ–BIHAR county 05 | ÚDP | 20
855
+ HAJDÚ–BIHAR county 05 | JESZ | 749
856
+ HAJDÚ–BIHAR county 05 | FIDESZ-KDNP | 17657
857
+ HAJDÚ–BIHAR county 05 | JOBBIK | 11070
858
+ HAJDÚ–BIHAR county 05 | ÖP | 44
859
+ HAJDÚ–BIHAR county 05 | MACSEP | 9
860
+ HAJDÚ–BIHAR county 05 | LMP | 1126
861
+ HAJDÚ–BIHAR county 05 | KTI | 84
862
+ HAJDÚ–BIHAR county 05 | Független | 64
863
+ HAJDÚ–BIHAR county 05 | Független | 80
864
+ HAJDÚ–BIHAR county 05 | SMS | 381
865
+ HAJDÚ–BIHAR county 05 | MRPP | 5
866
+ HAJDÚ–BIHAR county 05 | MCP | 79
867
+ HAJDÚ–BIHAR county 05 | MSZP-EGYÜTT-DK-PM-MLP | 7317
868
+ HAJDÚ–BIHAR county 05 | Független | 122
869
+ HAJDÚ–BIHAR county 05 | NEMZETI ÉRDEKÉRT | 37
870
+ HAJDÚ–BIHAR county 05 | EU. ROM | 22
871
+ HAJDÚ–BIHAR county 05 | TEMPO | 149
872
+ HAJDÚ–BIHAR county 05 | SZOCIÁLDEMOKRATÁK | 235
873
+ HAJDÚ–BIHAR county 05 | A HAZA NEM ELADÓ | 419
874
+
875
+ HAJDÚ–BIHAR county 06 | LMP | 1136
876
+ HAJDÚ–BIHAR county 06 | SZDP | 67
877
+ HAJDÚ–BIHAR county 06 | MRPP | 6
878
+ HAJDÚ–BIHAR county 06 | ZÖLDEK | 143
879
+ HAJDÚ–BIHAR county 06 | A HAZA NEM ELADÓ | 353
880
+ HAJDÚ–BIHAR county 06 | FKGP | 125
881
+ HAJDÚ–BIHAR county 06 | MSZP-EGYÜTT-DK-PM-MLP | 7174
882
+ HAJDÚ–BIHAR county 06 | JESZ | 102
883
+ HAJDÚ–BIHAR county 06 | ÚDP | 18
884
+ HAJDÚ–BIHAR county 06 | TEMPO | 22
885
+ HAJDÚ–BIHAR county 06 | JOBBIK | 10828
886
+ HAJDÚ–BIHAR county 06 | FIDESZ-KDNP | 18982
887
+ HAJDÚ–BIHAR county 06 | EGYÜTT 2014 | 76
888
+ HAJDÚ–BIHAR county 06 | ÖP | 127
889
+ HAJDÚ–BIHAR county 06 | SZOCIÁLDEMOKRATÁK | 88
890
+ HAJDÚ–BIHAR county 06 | ÚMP | 35
891
+ HAJDÚ–BIHAR county 06 | MACSEP | 51
892
+ HAJDÚ–BIHAR county 06 | MCP | 254
893
+ HAJDÚ–BIHAR county 06 | SEM | 80
894
+ HAJDÚ–BIHAR county 06 | SMS | 169
895
+
896
+ HEVES county 01 | MSZP-EGYÜTT-DK-PM-MLP | 13781
897
+ HEVES county 01 | JOBBIK | 15410
898
+ HEVES county 01 | ÖP | 121
899
+ HEVES county 01 | EU. ROM | 19
900
+ HEVES county 01 | FIDESZ-KDNP | 21151
901
+ HEVES county 01 | LMP | 2528
902
+ HEVES county 01 | A HAZA NEM ELADÓ | 269
903
+ HEVES county 01 | ZÖLDEK | 276
904
+ HEVES county 01 | SZOCIÁLDEMOKRATÁK | 228
905
+ HEVES county 01 | Független | 279
906
+ HEVES county 01 | MCP | 249
907
+
908
+ HEVES county 02 | FKGP | 92
909
+ HEVES county 02 | JOBBIK | 19159
910
+ HEVES county 02 | HATMAP | 27
911
+ HEVES county 02 | MSZDP | 30
912
+ HEVES county 02 | LMP | 1360
913
+ HEVES county 02 | SEM | 91
914
+ HEVES county 02 | REND, SZABADSÁG | 15
915
+ HEVES county 02 | EU. ROM | 75
916
+ HEVES county 02 | MDU | 22
917
+ HEVES county 02 | A HAZA NEM ELADÓ | 193
918
+ HEVES county 02 | MSZP-EGYÜTT-DK-PM-MLP | 11874
919
+ HEVES county 02 | KTI | 283
920
+ HEVES county 02 | MCP | 90
921
+ HEVES county 02 | SZOCIÁLDEMOKRATÁK | 80
922
+ HEVES county 02 | ÖP | 57
923
+ HEVES county 02 | FIDESZ-KDNP | 19798
924
+ HEVES county 02 | ZÖLDEK | 192
925
+ HEVES county 02 | SMS | 115
926
+
927
+ HEVES county 03 | SZOCIÁLDEMOKRATÁK | 110
928
+ HEVES county 03 | MDU | 15
929
+ HEVES county 03 | LMP | 1114
930
+ HEVES county 03 | MSZDP | 55
931
+ HEVES county 03 | KMSZ | 54
932
+ HEVES county 03 | FIDESZ-KDNP | 20304
933
+ HEVES county 03 | Független | 622
934
+ HEVES county 03 | REND, SZABADSÁG | 31
935
+ HEVES county 03 | JOBBIK | 15268
936
+ HEVES county 03 | ÖP | 94
937
+ HEVES county 03 | FKGP | 67
938
+ HEVES county 03 | SEM | 166
939
+ HEVES county 03 | HATMAP | 13
940
+ HEVES county 03 | NÉP | 21
941
+ HEVES county 03 | MCP | 160
942
+ HEVES county 03 | MSZP-EGYÜTT-DK-PM-MLP | 10797
943
+ HEVES county 03 | SMS | 163
944
+ HEVES county 03 | KTI | 251
945
+
946
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | JOBBIK | 13157
947
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | FKGP | 212
948
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | MSZP-EGYÜTT-DK-PM-MLP | 14574
949
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | AQP | 51
950
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | MCP | 126
951
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | MUNKÁSPÁRT | 604
952
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | MGP | 112
953
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | SZOCIÁLDEMOKRATÁK | 176
954
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | JESZ | 148
955
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | FIDESZ-KDNP | 19146
956
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | LMP | 2303
957
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | SMS | 393
958
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | A HAZA NEM ELADÓ | 296
959
+ JÁSZ–NAGYKUN–SZOLNOK county 01 | NEMZETI ÉRDEKÉRT | 37
960
+
961
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | KTI | 134
962
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | Független | 344
963
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | JOBBIK | 12783
964
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | MUNKÁSPÁRT | 269
965
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | LMP | 1027
966
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | NEMZETI ÉRDEKÉRT | 25
967
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | MGP | 24
968
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | SZOCIÁLDEMOKRATÁK | 131
969
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | A HAZA NEM ELADÓ | 172
970
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | JESZ | 210
971
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | MSZP-EGYÜTT-DK-PM-MLP | 8594
972
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | SMS | 183
973
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | FIDESZ-KDNP | 18200
974
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | ÖP | 56
975
+ JÁSZ–NAGYKUN–SZOLNOK county 02 | FKGP | 367
976
+
977
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | SMS | 226
978
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | A HAZA NEM ELADÓ | 263
979
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | LMP | 948
980
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | ÚMP | 12
981
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | MCP | 85
982
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | JOBBIK | 11511
983
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | ÖP | 72
984
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | MSZP-EGYÜTT-DK-PM-MLP | 7719
985
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | FIDESZ-KDNP | 23201
986
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | MUNKÁSPÁRT | 434
987
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | NEMZETI ÉRDEKÉRT | 20
988
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | JESZ | 83
989
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | SZOCIÁLDEMOKRATÁK | 161
990
+ JÁSZ–NAGYKUN–SZOLNOK county 03 | FKGP | 80
991
+
992
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | MDU | 56
993
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | MCP | 83
994
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | SZOCIÁLDEMOKRATÁK | 74
995
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | FKGP | 117
996
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | JOBBIK | 13436
997
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | FIDESZ-KDNP | 18524
998
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | JESZ | 94
999
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | MUNKÁSPÁRT | 490
1000
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | A HAZA NEM ELADÓ | 294
1001
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | LMP | 1128
1002
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | MSZP-EGYÜTT-DK-PM-MLP | 9386
1003
+ JÁSZ–NAGYKUN–SZOLNOK county 04 | SMS | 202
1004
+
1005
+ KOMÁROM–ESZTERGOM county 01 | JESZ | 200
1006
+ KOMÁROM–ESZTERGOM county 01 | MCF | 22
1007
+ KOMÁROM–ESZTERGOM county 01 | SZDP | 123
1008
+ KOMÁROM–ESZTERGOM county 01 | MSZDP | 59
1009
+ KOMÁROM–ESZTERGOM county 01 | LMP | 2473
1010
+ KOMÁROM–ESZTERGOM county 01 | SEM | 204
1011
+ KOMÁROM–ESZTERGOM county 01 | MCP | 21
1012
+ KOMÁROM–ESZTERGOM county 01 | 4K! | 155
1013
+ KOMÁROM–ESZTERGOM county 01 | FIDESZ-KDNP | 21434
1014
+ KOMÁROM–ESZTERGOM county 01 | KTI | 141
1015
+ KOMÁROM–ESZTERGOM county 01 | ZÖLDEK | 252
1016
+ KOMÁROM–ESZTERGOM county 01 | A HAZA NEM ELADÓ | 563
1017
+ KOMÁROM–ESZTERGOM county 01 | MUNKÁSPÁRT | 362
1018
+ KOMÁROM–ESZTERGOM county 01 | JOBBIK | 7868
1019
+ KOMÁROM–ESZTERGOM county 01 | ÖP | 102
1020
+ KOMÁROM–ESZTERGOM county 01 | KMSZ | 43
1021
+ KOMÁROM–ESZTERGOM county 01 | MSZP-EGYÜTT-DK-PM-MLP | 15954
1022
+
1023
+ KOMÁROM–ESZTERGOM county 02 | FIDESZ-KDNP | 23475
1024
+ KOMÁROM–ESZTERGOM county 02 | ÖP | 229
1025
+ KOMÁROM–ESZTERGOM county 02 | Független | 639
1026
+ KOMÁROM–ESZTERGOM county 02 | JOBBIK | 10141
1027
+ KOMÁROM–ESZTERGOM county 02 | KTI | 127
1028
+ KOMÁROM–ESZTERGOM county 02 | JESZ | 224
1029
+ KOMÁROM–ESZTERGOM county 02 | LMP | 2213
1030
+ KOMÁROM–ESZTERGOM county 02 | MSZDP | 92
1031
+ KOMÁROM–ESZTERGOM county 02 | MCP | 85
1032
+ KOMÁROM–ESZTERGOM county 02 | MSZP-EGYÜTT-DK-PM-MLP | 13896
1033
+
1034
+ KOMÁROM–ESZTERGOM county 03 | ÖP | 186
1035
+ KOMÁROM–ESZTERGOM county 03 | MCP | 52
1036
+ KOMÁROM–ESZTERGOM county 03 | FKGP | 203
1037
+ KOMÁROM–ESZTERGOM county 03 | LMP | 2231
1038
+ KOMÁROM–ESZTERGOM county 03 | JOBBIK | 9909
1039
+ KOMÁROM–ESZTERGOM county 03 | SZEM-NŐPÁRT | 465
1040
+ KOMÁROM–ESZTERGOM county 03 | FIDESZ-KDNP | 23391
1041
+ KOMÁROM–ESZTERGOM county 03 | A HAZA NEM ELADÓ | 380
1042
+ KOMÁROM–ESZTERGOM county 03 | JESZ | 330
1043
+ KOMÁROM–ESZTERGOM county 03 | MSZP-EGYÜTT-DK-PM-MLP | 12430
1044
+ KOMÁROM–ESZTERGOM county 03 | ÚMP | 48
1045
+ KOMÁROM–ESZTERGOM county 03 | KMSZ | 53
1046
+ KOMÁROM–ESZTERGOM county 03 | ÚDP | 82
1047
+
1048
+ NÓGRÁD county 01 | SEM | 163
1049
+ NÓGRÁD county 01 | MCP | 269
1050
+ NÓGRÁD county 01 | Független | 548
1051
+ NÓGRÁD county 01 | FKGP | 63
1052
+ NÓGRÁD county 01 | A HAZA NEM ELADÓ | 401
1053
+ NÓGRÁD county 01 | LMP | 1286
1054
+ NÓGRÁD county 01 | MSZP-EGYÜTT-DK-PM-MLP | 13140
1055
+ NÓGRÁD county 01 | FIDESZ-KDNP | 18410
1056
+ NÓGRÁD county 01 | JOBBIK | 11499
1057
+ NÓGRÁD county 01 | MACSEP | 0
1058
+ NÓGRÁD county 01 | EU. ROM | 42
1059
+ NÓGRÁD county 01 | KISGAZDAPÁRT-MIÉP | 56
1060
+ NÓGRÁD county 01 | Független | 99
1061
+ NÓGRÁD county 01 | SZOCIÁLDEMOKRATÁK | 137
1062
+ NÓGRÁD county 01 | Független | 40
1063
+ NÓGRÁD county 01 | MRPP | 77
1064
+ NÓGRÁD county 01 | KTI | 290
1065
+ NÓGRÁD county 01 | ÚDP | 25
1066
+ NÓGRÁD county 01 | MUNKÁSPÁRT | 785
1067
+ NÓGRÁD county 01 | SMS | 1210
1068
+ NÓGRÁD county 01 | EP | 38
1069
+ NÓGRÁD county 01 | Független | 46
1070
+ NÓGRÁD county 01 | ZÖLDEK | 159
1071
+ NÓGRÁD county 01 | JESZ | 123
1072
+
1073
+ NÓGRÁD county 02 | EU. ROM | 26
1074
+ NÓGRÁD county 02 | FIDESZ-KDNP | 24564
1075
+ NÓGRÁD county 02 | SMS | 224
1076
+ NÓGRÁD county 02 | MSZDP | 64
1077
+ NÓGRÁD county 02 | LMP | 1542
1078
+ NÓGRÁD county 02 | ZÖLDEK | 195
1079
+ NÓGRÁD county 02 | MSZP-EGYÜTT-DK-PM-MLP | 10358
1080
+ NÓGRÁD county 02 | SEM | 81
1081
+ NÓGRÁD county 02 | KMSZ | 0
1082
+ NÓGRÁD county 02 | A HAZA NEM ELADÓ | 280
1083
+ NÓGRÁD county 02 | NÉP | 37
1084
+ NÓGRÁD county 02 | SZOCIÁLDEMOKRATÁK | 85
1085
+ NÓGRÁD county 02 | EGYÜTT 2014 | 166
1086
+ NÓGRÁD county 02 | JESZ | 74
1087
+ NÓGRÁD county 02 | SZEM-NŐPÁRT | 55
1088
+ NÓGRÁD county 02 | JOBBIK | 11256
1089
+ NÓGRÁD county 02 | MCF | 93
1090
+ NÓGRÁD county 02 | FKGP | 115
1091
+ NÓGRÁD county 02 | MACSEP | 0
1092
+ NÓGRÁD county 02 | KTI | 208
1093
+ NÓGRÁD county 02 | MCP | 223
1094
+ NÓGRÁD county 02 | ÖP | 46
1095
+ NÓGRÁD county 02 | MUNKÁSPÁRT | 628
1096
+
1097
+ PEST county 01 | JOBBIK | 8295
1098
+ PEST county 01 | ÉLŐLÁNC | 118
1099
+ PEST county 01 | MSZDP | 60
1100
+ PEST county 01 | 4K! | 151
1101
+ PEST county 01 | LMP | 2923
1102
+ PEST county 01 | FKGP | 112
1103
+ PEST county 01 | SEM | 241
1104
+ PEST county 01 | FIDESZ-KDNP | 22271
1105
+ PEST county 01 | JESZ | 130
1106
+ PEST county 01 | MSZP-EGYÜTT-DK-PM-MLP | 16386
1107
+ PEST county 01 | SMS | 412
1108
+ PEST county 01 | MKSZU | 14
1109
+ PEST county 01 | ZÖLDEK | 455
1110
+ PEST county 01 | EP | 67
1111
+ PEST county 01 | SZAVA | 16
1112
+ PEST county 01 | MDU | 35
1113
+ PEST county 01 | SZDP | 139
1114
+
1115
+ PEST county 02 | FIDESZ-KDNP | 28327
1116
+ PEST county 02 | SZOCIÁLDEMOKRATÁK | 227
1117
+ PEST county 02 | LMP | 6607
1118
+ PEST county 02 | JOBBIK | 6827
1119
+ PEST county 02 | MCP | 81
1120
+ PEST county 02 | SMS | 456
1121
+ PEST county 02 | A HAZA NEM ELADÓ | 343
1122
+ PEST county 02 | MSZP-EGYÜTT-DK-PM-MLP | 16290
1123
+ PEST county 02 | Független | 1469
1124
+ PEST county 02 | EGYÜTT 2014 | 237
1125
+
1126
+ PEST county 03 | SEM | 371
1127
+ PEST county 03 | A HAZA NEM ELADÓ | 266
1128
+ PEST county 03 | EGYÜTT 2014 | 321
1129
+ PEST county 03 | JESZ | 192
1130
+ PEST county 03 | SMS | 339
1131
+ PEST county 03 | MCF | 72
1132
+ PEST county 03 | JOBBIK | 8167
1133
+ PEST county 03 | LMP | 4184
1134
+ PEST county 03 | NEMZETI ÉRDEKÉRT | 27
1135
+ PEST county 03 | ÚMP | 42
1136
+ PEST county 03 | FIDESZ-KDNP | 27364
1137
+ PEST county 03 | ÖP | 132
1138
+ PEST county 03 | 4K! | 203
1139
+ PEST county 03 | EP | 37
1140
+ PEST county 03 | ZÖLDEK | 413
1141
+ PEST county 03 | MSZP-EGYÜTT-DK-PM-MLP | 15434
1142
+ PEST county 03 | SZOCIÁLDEMOKRATÁK | 289
1143
+ PEST county 03 | ÚDP | 23
1144
+
1145
+ PEST county 04 | MUNKÁSPÁRT | 295
1146
+ PEST county 04 | MSZP-EGYÜTT-DK-PM-MLP | 11767
1147
+ PEST county 04 | FIDESZ-KDNP | 22193
1148
+ PEST county 04 | KMSZ | 77
1149
+ PEST county 04 | TEMPO | 45
1150
+ PEST county 04 | ÚMP | 24
1151
+ PEST county 04 | JOBBIK | 9493
1152
+ PEST county 04 | A HAZA NEM ELADÓ | 299
1153
+ PEST county 04 | SZOCIÁLDEMOKRATÁK | 114
1154
+ PEST county 04 | ZÖLDEK | 303
1155
+ PEST county 04 | MKSZU | 46
1156
+ PEST county 04 | KTI | 100
1157
+ PEST county 04 | ÖP | 79
1158
+ PEST county 04 | SEM | 147
1159
+ PEST county 04 | MRPP | 53
1160
+ PEST county 04 | JESZ | 53
1161
+ PEST county 04 | LMP | 1991
1162
+ PEST county 04 | MGP | 36
1163
+ PEST county 04 | SMS | 326
1164
+
1165
+ PEST county 05 | NEMZETI ÉRDEKÉRT | 93
1166
+ PEST county 05 | FIDESZ-KDNP | 24344
1167
+ PEST county 05 | 4K! | 223
1168
+ PEST county 05 | JESZ | 277
1169
+ PEST county 05 | SZOCIÁLDEMOKRATÁK | 246
1170
+ PEST county 05 | LMP | 4515
1171
+ PEST county 05 | SEM | 518
1172
+ PEST county 05 | A HAZA NEM ELADÓ | 643
1173
+ PEST county 05 | JOBBIK | 9641
1174
+ PEST county 05 | MSZP-EGYÜTT-DK-PM-MLP | 18166
1175
+ PEST county 05 | KTI | 240
1176
+
1177
+ PEST county 06 | SEM | 371
1178
+ PEST county 06 | MRPP | 11
1179
+ PEST county 06 | JOBBIK | 10588
1180
+ PEST county 06 | JESZ | 132
1181
+ PEST county 06 | FIDESZ-KDNP | 23745
1182
+ PEST county 06 | SMS | 303
1183
+ PEST county 06 | MCF | 52
1184
+ PEST county 06 | KTI | 223
1185
+ PEST county 06 | EU. ROM | 9
1186
+ PEST county 06 | MSZP-EGYÜTT-DK-PM-MLP | 14027
1187
+ PEST county 06 | MGP | 85
1188
+ PEST county 06 | EGYÜTT 2014 | 217
1189
+ PEST county 06 | SZOCIÁLDEMOKRATÁK | 121
1190
+ PEST county 06 | A HAZA NEM ELADÓ | 679
1191
+ PEST county 06 | LMP | 3544
1192
+ PEST county 06 | Független | 900
1193
+ PEST county 06 | MCP | 177
1194
+ PEST county 06 | FKGP | 143
1195
+
1196
+ PEST county 07 | LMP | 2296
1197
+ PEST county 07 | MDU | 52
1198
+ PEST county 07 | ZÖLDEK | 487
1199
+ PEST county 07 | ÖP | 147
1200
+ PEST county 07 | JOBBIK | 10098
1201
+ PEST county 07 | FIDESZ-KDNP | 22109
1202
+ PEST county 07 | MSZP-EGYÜTT-DK-PM-MLP | 14971
1203
+ PEST county 07 | EP | 75
1204
+ PEST county 07 | JESZ | 221
1205
+ PEST county 07 | SZOCIÁLDEMOKRATÁK | 116
1206
+ PEST county 07 | EGYÜTT 2014 | 209
1207
+ PEST county 07 | ÚDP | 29
1208
+ PEST county 07 | A HAZA NEM ELADÓ | 492
1209
+ PEST county 07 | ÚMP | 28
1210
+ PEST county 07 | SZEM-NŐPÁRT | 140
1211
+
1212
+ PEST county 08 | MACSEP | 38
1213
+ PEST county 08 | ÚMP | 22
1214
+ PEST county 08 | FIDESZ-KDNP | 20946
1215
+ PEST county 08 | ÖP | 313
1216
+ PEST county 08 | MSZP-EGYÜTT-DK-PM-MLP | 17134
1217
+ PEST county 08 | ÚDP | 13
1218
+ PEST county 08 | MCP | 19
1219
+ PEST county 08 | LMP | 2605
1220
+ PEST county 08 | KTI | 218
1221
+ PEST county 08 | NEMZETI ÉRDEKÉRT | 52
1222
+ PEST county 08 | EGYÜTT 2014 | 202
1223
+ PEST county 08 | MCF | 6
1224
+ PEST county 08 | SZOCIÁLDEMOKRATÁK | 112
1225
+ PEST county 08 | KMSZ | 48
1226
+ PEST county 08 | SEM | 260
1227
+ PEST county 08 | JOBBIK | 9578
1228
+ PEST county 08 | JESZ | 182
1229
+ PEST county 08 | SMS | 277
1230
+
1231
+ PEST county 09 | A HAZA NEM ELADÓ | 296
1232
+ PEST county 09 | LMP | 1183
1233
+ PEST county 09 | ÖP | 101
1234
+ PEST county 09 | MGP | 53
1235
+ PEST county 09 | FIDESZ-KDNP | 20595
1236
+ PEST county 09 | JESZ | 93
1237
+ PEST county 09 | SMS | 184
1238
+ PEST county 09 | KTI | 124
1239
+ PEST county 09 | SZOCIÁLDEMOKRATÁK | 65
1240
+ PEST county 09 | JOBBIK | 10198
1241
+ PEST county 09 | MSZP-EGYÜTT-DK-PM-MLP | 8047
1242
+ PEST county 09 | FKGP | 104
1243
+
1244
+ PEST county 10 | EGYÜTT 2014 | 287
1245
+ PEST county 10 | TEMPO | 41
1246
+ PEST county 10 | SEM | 152
1247
+ PEST county 10 | KTI | 113
1248
+ PEST county 10 | FKGP | 99
1249
+ PEST county 10 | MCP | 58
1250
+ PEST county 10 | ÖP | 93
1251
+ PEST county 10 | FIDESZ-KDNP | 19475
1252
+ PEST county 10 | NEMZETI ÉRDEKÉRT | 46
1253
+ PEST county 10 | A HAZA NEM ELADÓ | 225
1254
+ PEST county 10 | AQP | 17
1255
+ PEST county 10 | MRPP | 16
1256
+ PEST county 10 | MACSEP | 0
1257
+ PEST county 10 | LMP | 1515
1258
+ PEST county 10 | ZÖLDEK | 166
1259
+ PEST county 10 | MSZP-EGYÜTT-DK-PM-MLP | 9046
1260
+ PEST county 10 | JOBBIK | 10648
1261
+ PEST county 10 | MDU | 26
1262
+
1263
+ PEST county 11 | FIDESZ-KDNP | 23486
1264
+ PEST county 11 | EU. ROM | 44
1265
+ PEST county 11 | JOBBIK | 10003
1266
+ PEST county 11 | ÚDP | 70
1267
+ PEST county 11 | EP | 57
1268
+ PEST county 11 | SMS | 310
1269
+ PEST county 11 | SZOCIÁLDEMOKRATÁK | 103
1270
+ PEST county 11 | LMP | 2181
1271
+ PEST county 11 | EGYÜTT 2014 | 287
1272
+ PEST county 11 | JESZ | 111
1273
+ PEST county 11 | SZAVA | 38
1274
+ PEST county 11 | SEM | 292
1275
+ PEST county 11 | ÖP | 191
1276
+ PEST county 11 | MSZP-EGYÜTT-DK-PM-MLP | 11379
1277
+
1278
+ PEST county 12 | LMP | 1359
1279
+ PEST county 12 | JESZ | 67
1280
+ PEST county 12 | MRPP | 24
1281
+ PEST county 12 | ÉLŐLÁNC | 117
1282
+ PEST county 12 | MSZP-EGYÜTT-DK-PM-MLP | 8828
1283
+ PEST county 12 | JOBBIK | 12285
1284
+ PEST county 12 | SZOCIÁLDEMOKRATÁK | 66
1285
+ PEST county 12 | SMS | 145
1286
+ PEST county 12 | FKGP | 234
1287
+ PEST county 12 | MGP | 54
1288
+ PEST county 12 | MCP | 46
1289
+ PEST county 12 | A HAZA NEM ELADÓ | 260
1290
+ PEST county 12 | MKSZU | 7
1291
+ PEST county 12 | MSZDP | 50
1292
+ PEST county 12 | ÖP | 63
1293
+ PEST county 12 | FIDESZ-KDNP | 18732
1294
+ PEST county 12 | SEM | 183
1295
+
1296
+ SOMOGY county 01 | FIDESZ-KDNP | 16524
1297
+ SOMOGY county 01 | ÚMP | 25
1298
+ SOMOGY county 01 | FKGP | 93
1299
+ SOMOGY county 01 | JESZ | 168
1300
+ SOMOGY county 01 | A HAZA NEM ELADÓ | 235
1301
+ SOMOGY county 01 | Független | 188
1302
+ SOMOGY county 01 | MGP | 40
1303
+ SOMOGY county 01 | LMP | 2058
1304
+ SOMOGY county 01 | ÚDP | 35
1305
+ SOMOGY county 01 | SMS | 239
1306
+ SOMOGY county 01 | JOBBIK | 8931
1307
+ SOMOGY county 01 | MSZP-EGYÜTT-DK-PM-MLP | 11623
1308
+ SOMOGY county 01 | Független | 90
1309
+ SOMOGY county 01 | ZÖLDEK | 218
1310
+ SOMOGY county 01 | SZMP | 39
1311
+ SOMOGY county 01 | SZOCIÁLDEMOKRATÁK | 360
1312
+
1313
+ SOMOGY county 02 | SMS | 345
1314
+ SOMOGY county 02 | ÚDP | 13
1315
+ SOMOGY county 02 | MCP | 278
1316
+ SOMOGY county 02 | FKGP | 122
1317
+ SOMOGY county 02 | EGYÜTT 2014 | 141
1318
+ SOMOGY county 02 | ÚMP | 44
1319
+ SOMOGY county 02 | KTI | 141
1320
+ SOMOGY county 02 | HATMAP | 9
1321
+ SOMOGY county 02 | JOBBIK | 8227
1322
+ SOMOGY county 02 | LMP | 764
1323
+ SOMOGY county 02 | FIDESZ-KDNP | 15907
1324
+ SOMOGY county 02 | A HAZA NEM ELADÓ | 137
1325
+ SOMOGY county 02 | 4K! | 54
1326
+ SOMOGY county 02 | JESZ | 40
1327
+ SOMOGY county 02 | MUNKÁSPÁRT | 233
1328
+ SOMOGY county 02 | ÖP | 28
1329
+ SOMOGY county 02 | MSZP-EGYÜTT-DK-PM-MLP | 7592
1330
+ SOMOGY county 02 | SZOCIÁLDEMOKRATÁK | 57
1331
+ SOMOGY county 02 | SZMP | 42
1332
+ SOMOGY county 02 | MEGÚJULÁSPÁRT | 52
1333
+
1334
+ SOMOGY county 03 | SMS | 177
1335
+ SOMOGY county 03 | ÖP | 63
1336
+ SOMOGY county 03 | LMP | 1194
1337
+ SOMOGY county 03 | KTI | 135
1338
+ SOMOGY county 03 | JESZ | 77
1339
+ SOMOGY county 03 | ÚMP | 30
1340
+ SOMOGY county 03 | Független | 197
1341
+ SOMOGY county 03 | JOBBIK | 8503
1342
+ SOMOGY county 03 | FIDESZ-KDNP | 17616
1343
+ SOMOGY county 03 | A HAZA NEM ELADÓ | 326
1344
+ SOMOGY county 03 | SZOCIÁLDEMOKRATÁK | 71
1345
+ SOMOGY county 03 | SZMP | 28
1346
+ SOMOGY county 03 | MSZP-EGYÜTT-DK-PM-MLP | 8497
1347
+ SOMOGY county 03 | ÚDP | 22
1348
+ SOMOGY county 03 | AQP | 19
1349
+ SOMOGY county 03 | FKGP | 127
1350
+
1351
+ SOMOGY county 04 | ÉLŐLÁNC | 575
1352
+ SOMOGY county 04 | ÚMP | 45
1353
+ SOMOGY county 04 | A HAZA NEM ELADÓ | 235
1354
+ SOMOGY county 04 | ÚDP | 35
1355
+ SOMOGY county 04 | EGYÜTT 2014 | 154
1356
+ SOMOGY county 04 | FIDESZ-KDNP | 18591
1357
+ SOMOGY county 04 | SMS | 246
1358
+ SOMOGY county 04 | LMP | 1556
1359
+ SOMOGY county 04 | MKSZU | 22
1360
+ SOMOGY county 04 | FKGP | 75
1361
+ SOMOGY county 04 | JESZ | 78
1362
+ SOMOGY county 04 | SEM | 177
1363
+ SOMOGY county 04 | JOBBIK | 7838
1364
+ SOMOGY county 04 | MSZP-EGYÜTT-DK-PM-MLP | 9926
1365
+ SOMOGY county 04 | ÚGP | 80
1366
+ SOMOGY county 04 | KTI | 129
1367
+
1368
+ SZABOLCS–SZATMÁR–BEREG county 01 | ÚDP | 14
1369
+ SZABOLCS–SZATMÁR–BEREG county 01 | ÚMP | 8
1370
+ SZABOLCS–SZATMÁR–BEREG county 01 | MSZP-EGYÜTT-DK-PM-MLP | 15781
1371
+ SZABOLCS–SZATMÁR–BEREG county 01 | KALÓZPÁRT | 64
1372
+ SZABOLCS–SZATMÁR–BEREG county 01 | SEM | 157
1373
+ SZABOLCS–SZATMÁR–BEREG county 01 | ZÖLDEK | 168
1374
+ SZABOLCS–SZATMÁR–BEREG county 01 | LMP | 1881
1375
+ SZABOLCS–SZATMÁR–BEREG county 01 | KISGAZDAPÁRT-MIÉP | 73
1376
+ SZABOLCS–SZATMÁR–BEREG county 01 | KTI | 58
1377
+ SZABOLCS–SZATMÁR–BEREG county 01 | SMS | 600
1378
+ SZABOLCS–SZATMÁR–BEREG county 01 | EGYÜTT 2014 | 110
1379
+ SZABOLCS–SZATMÁR–BEREG county 01 | A HAZA NEM ELADÓ | 397
1380
+ SZABOLCS–SZATMÁR–BEREG county 01 | Független | 124
1381
+ SZABOLCS–SZATMÁR–BEREG county 01 | JOBBIK | 11138
1382
+ SZABOLCS–SZATMÁR–BEREG county 01 | MCP | 198
1383
+ SZABOLCS–SZATMÁR–BEREG county 01 | SZOCIÁLDEMOKRATÁK | 115
1384
+ SZABOLCS–SZATMÁR–BEREG county 01 | NEMZETI ÉRDEKÉRT | 37
1385
+ SZABOLCS–SZATMÁR–BEREG county 01 | FIDESZ-KDNP | 17484
1386
+ SZABOLCS–SZATMÁR–BEREG county 01 | EP | 36
1387
+ SZABOLCS–SZATMÁR–BEREG county 01 | FKGP | 77
1388
+ SZABOLCS–SZATMÁR–BEREG county 01 | ÖP | 225
1389
+ SZABOLCS–SZATMÁR–BEREG county 01 | JESZ | 127
1390
+
1391
+ SZABOLCS–SZATMÁR–BEREG county 02 | JESZ | 145
1392
+ SZABOLCS–SZATMÁR–BEREG county 02 | A HAZA NEM ELADÓ | 211
1393
+ SZABOLCS–SZATMÁR–BEREG county 02 | Független | 79
1394
+ SZABOLCS–SZATMÁR–BEREG county 02 | EU. ROM | 50
1395
+ SZABOLCS–SZATMÁR–BEREG county 02 | JOBBIK | 11755
1396
+ SZABOLCS–SZATMÁR–BEREG county 02 | ÖP | 110
1397
+ SZABOLCS–SZATMÁR–BEREG county 02 | SZOCIÁLDEMOKRATÁK | 60
1398
+ SZABOLCS–SZATMÁR–BEREG county 02 | ZÖLDEK | 178
1399
+ SZABOLCS–SZATMÁR–BEREG county 02 | LMP | 957
1400
+ SZABOLCS–SZATMÁR–BEREG county 02 | KTI | 79
1401
+ SZABOLCS–SZATMÁR–BEREG county 02 | KISGAZDAPÁRT-MIÉP | 558
1402
+ SZABOLCS–SZATMÁR–BEREG county 02 | SMS | 239
1403
+ SZABOLCS–SZATMÁR–BEREG county 02 | TBP | 24
1404
+ SZABOLCS–SZATMÁR–BEREG county 02 | Független | 279
1405
+ SZABOLCS–SZATMÁR–BEREG county 02 | MSZP-EGYÜTT-DK-PM-MLP | 9485
1406
+ SZABOLCS–SZATMÁR–BEREG county 02 | FIDESZ-KDNP | 18322
1407
+
1408
+ SZABOLCS–SZATMÁR–BEREG county 03 | FIDESZ-KDNP | 22257
1409
+ SZABOLCS–SZATMÁR–BEREG county 03 | MUNKÁSPÁRT | 324
1410
+ SZABOLCS–SZATMÁR–BEREG county 03 | SZOCIÁLDEMOKRATÁK | 127
1411
+ SZABOLCS–SZATMÁR–BEREG county 03 | KISGAZDAPÁRT-MIÉP | 113
1412
+ SZABOLCS–SZATMÁR–BEREG county 03 | LMP | 785
1413
+ SZABOLCS–SZATMÁR–BEREG county 03 | JOBBIK | 12276
1414
+ SZABOLCS–SZATMÁR–BEREG county 03 | EU. ROM | 0
1415
+ SZABOLCS–SZATMÁR–BEREG county 03 | MCP | 262
1416
+ SZABOLCS–SZATMÁR–BEREG county 03 | MACSEP | 0
1417
+ SZABOLCS–SZATMÁR–BEREG county 03 | SMS | 138
1418
+ SZABOLCS–SZATMÁR–BEREG county 03 | ZÖLDEK | 287
1419
+ SZABOLCS–SZATMÁR–BEREG county 03 | MSZP-EGYÜTT-DK-PM-MLP | 8707
1420
+ SZABOLCS–SZATMÁR–BEREG county 03 | JESZ | 179
1421
+ SZABOLCS–SZATMÁR–BEREG county 03 | SEM | 41
1422
+ SZABOLCS–SZATMÁR–BEREG county 03 | ÖP | 49
1423
+ SZABOLCS–SZATMÁR–BEREG county 03 | A HAZA NEM ELADÓ | 212
1424
+
1425
+ SZABOLCS–SZATMÁR–BEREG county 04 | FIDESZ-KDNP | 23113
1426
+ SZABOLCS–SZATMÁR–BEREG county 04 | FKGP | 122
1427
+ SZABOLCS–SZATMÁR–BEREG county 04 | NEMZETI ÉRDEKÉRT | 24
1428
+ SZABOLCS–SZATMÁR–BEREG county 04 | KTI | 154
1429
+ SZABOLCS–SZATMÁR–BEREG county 04 | JOBBIK | 11516
1430
+ SZABOLCS–SZATMÁR–BEREG county 04 | EP | 28
1431
+ SZABOLCS–SZATMÁR–BEREG county 04 | JESZ | 123
1432
+ SZABOLCS–SZATMÁR–BEREG county 04 | MCP | 167
1433
+ SZABOLCS–SZATMÁR–BEREG county 04 | ZÖLDEK | 101
1434
+ SZABOLCS–SZATMÁR–BEREG county 04 | EGYÜTT 2014 | 67
1435
+ SZABOLCS–SZATMÁR–BEREG county 04 | A HAZA NEM ELADÓ | 105
1436
+ SZABOLCS–SZATMÁR–BEREG county 04 | SZOCIÁLDEMOKRATÁK | 226
1437
+ SZABOLCS–SZATMÁR–BEREG county 04 | KISGAZDAPÁRT-MIÉP | 39
1438
+ SZABOLCS–SZATMÁR–BEREG county 04 | MSZP-EGYÜTT-DK-PM-MLP | 6930
1439
+ SZABOLCS–SZATMÁR–BEREG county 04 | ÖP | 35
1440
+ SZABOLCS–SZATMÁR–BEREG county 04 | LMP | 449
1441
+ SZABOLCS–SZATMÁR–BEREG county 04 | SMS | 155
1442
+ SZABOLCS–SZATMÁR–BEREG county 04 | Független | 45
1443
+ SZABOLCS–SZATMÁR–BEREG county 04 | MUNKÁSPÁRT | 263
1444
+
1445
+ SZABOLCS–SZATMÁR–BEREG county 05 | MACSEP | 0
1446
+ SZABOLCS–SZATMÁR–BEREG county 05 | JESZ | 95
1447
+ SZABOLCS–SZATMÁR–BEREG county 05 | EU. ROM | 26
1448
+ SZABOLCS–SZATMÁR–BEREG county 05 | MSZP-EGYÜTT-DK-PM-MLP | 7799
1449
+ SZABOLCS–SZATMÁR–BEREG county 05 | ÖP | 28
1450
+ SZABOLCS–SZATMÁR–BEREG county 05 | MUNKÁSPÁRT | 194
1451
+ SZABOLCS–SZATMÁR–BEREG county 05 | KISGAZDAPÁRT-MIÉP | 62
1452
+ SZABOLCS–SZATMÁR–BEREG county 05 | FIDESZ-KDNP | 21721
1453
+ SZABOLCS–SZATMÁR–BEREG county 05 | LMP | 494
1454
+ SZABOLCS–SZATMÁR–BEREG county 05 | MRPP | 20
1455
+ SZABOLCS–SZATMÁR–BEREG county 05 | FKGP | 47
1456
+ SZABOLCS–SZATMÁR–BEREG county 05 | SMS | 175
1457
+ SZABOLCS–SZATMÁR–BEREG county 05 | SEM | 40
1458
+ SZABOLCS–SZATMÁR–BEREG county 05 | SZOCIÁLDEMOKRATÁK | 50
1459
+ SZABOLCS–SZATMÁR–BEREG county 05 | ZÖLDEK | 65
1460
+ SZABOLCS–SZATMÁR–BEREG county 05 | JOBBIK | 11632
1461
+ SZABOLCS–SZATMÁR–BEREG county 05 | MCP | 231
1462
+ SZABOLCS–SZATMÁR–BEREG county 05 | A HAZA NEM ELADÓ | 118
1463
+
1464
+ SZABOLCS–SZATMÁR–BEREG county 06 | Független | 227
1465
+ SZABOLCS–SZATMÁR–BEREG county 06 | JOBBIK | 11852
1466
+ SZABOLCS–SZATMÁR–BEREG county 06 | ÖP | 58
1467
+ SZABOLCS–SZATMÁR–BEREG county 06 | MCP | 266
1468
+ SZABOLCS–SZATMÁR–BEREG county 06 | SZMP | 11
1469
+ SZABOLCS–SZATMÁR–BEREG county 06 | JESZ | 108
1470
+ SZABOLCS–SZATMÁR–BEREG county 06 | KISGAZDAPÁRT-MIÉP | 51
1471
+ SZABOLCS–SZATMÁR–BEREG county 06 | A HAZA NEM ELADÓ | 147
1472
+ SZABOLCS–SZATMÁR–BEREG county 06 | SEM | 51
1473
+ SZABOLCS–SZATMÁR–BEREG county 06 | SZOCIÁLDEMOKRATÁK | 94
1474
+ SZABOLCS–SZATMÁR–BEREG county 06 | FIDESZ-KDNP | 19768
1475
+ SZABOLCS–SZATMÁR–BEREG county 06 | MSZP-EGYÜTT-DK-PM-MLP | 8298
1476
+ SZABOLCS–SZATMÁR–BEREG county 06 | FKGP | 125
1477
+ SZABOLCS–SZATMÁR–BEREG county 06 | MGP | 41
1478
+ SZABOLCS–SZATMÁR–BEREG county 06 | MACSEP | 0
1479
+ SZABOLCS–SZATMÁR–BEREG county 06 | LMP | 587
1480
+ SZABOLCS–SZATMÁR–BEREG county 06 | EU. ROM | 51
1481
+ SZABOLCS–SZATMÁR–BEREG county 06 | ZÖLDEK | 85
1482
+ SZABOLCS–SZATMÁR–BEREG county 06 | TBP | 51
1483
+ SZABOLCS–SZATMÁR–BEREG county 06 | KTI | 19
1484
+ SZABOLCS–SZATMÁR–BEREG county 06 | SMS | 195
1485
+
1486
+ TOLNA county 01 | SEM | 209
1487
+ TOLNA county 01 | KTI | 112
1488
+ TOLNA county 01 | LMP | 4182
1489
+ TOLNA county 01 | SMS | 194
1490
+ TOLNA county 01 | FIDESZ-KDNP | 15997
1491
+ TOLNA county 01 | JOBBIK | 7532
1492
+ TOLNA county 01 | MCF | 17
1493
+ TOLNA county 01 | MCP | 115
1494
+ TOLNA county 01 | ÚMP | 12
1495
+ TOLNA county 01 | SZOCIÁLDEMOKRATÁK | 75
1496
+ TOLNA county 01 | MSZP-EGYÜTT-DK-PM-MLP | 9483
1497
+ TOLNA county 01 | MACSEP | 18
1498
+ TOLNA county 01 | ÚDP | 32
1499
+ TOLNA county 01 | A HAZA NEM ELADÓ | 289
1500
+
1501
+ TOLNA county 02 | JOBBIK | 8606
1502
+ TOLNA county 02 | MKSZU | 67
1503
+ TOLNA county 02 | MSZP-EGYÜTT-DK-PM-MLP | 8816
1504
+ TOLNA county 02 | MACSEP | 23
1505
+ TOLNA county 02 | AQP | 33
1506
+ TOLNA county 02 | LMP | 1105
1507
+ TOLNA county 02 | FKGP | 128
1508
+ TOLNA county 02 | FIDESZ-KDNP | 17547
1509
+ TOLNA county 02 | ZÖLDEK | 218
1510
+ TOLNA county 02 | EGYÜTT 2014 | 83
1511
+ TOLNA county 02 | A HAZA NEM ELADÓ | 242
1512
+
1513
+ TOLNA county 03 | MCP | 76
1514
+ TOLNA county 03 | MSZP-EGYÜTT-DK-PM-MLP | 7452
1515
+ TOLNA county 03 | MDU | 24
1516
+ TOLNA county 03 | A HAZA NEM ELADÓ | 231
1517
+ TOLNA county 03 | SZMP | 61
1518
+ TOLNA county 03 | LMP | 1284
1519
+ TOLNA county 03 | FKGP | 280
1520
+ TOLNA county 03 | HATMAP | 9
1521
+ TOLNA county 03 | JOBBIK | 8288
1522
+ TOLNA county 03 | FIDESZ-KDNP | 18286
1523
+ TOLNA county 03 | MACSEP | 23
1524
+ TOLNA county 03 | SZOCIÁLDEMOKRATÁK | 135
1525
+ TOLNA county 03 | KTI | 115
1526
+ TOLNA county 03 | SEM | 219
1527
+ TOLNA county 03 | REND, SZABADSÁG | 31
1528
+ TOLNA county 03 | SMS | 115
1529
+
1530
+ VAS county 01 | SMS | 279
1531
+ VAS county 01 | 4K! | 204
1532
+ VAS county 01 | JOBBIK | 7034
1533
+ VAS county 01 | ÚMP | 61
1534
+ VAS county 01 | FKGP | 100
1535
+ VAS county 01 | FIDESZ-KDNP | 20612
1536
+ VAS county 01 | LMP | 2841
1537
+ VAS county 01 | KTI | 262
1538
+ VAS county 01 | JESZ | 100
1539
+ VAS county 01 | ÚDP | 39
1540
+ VAS county 01 | MSZP-EGYÜTT-DK-PM-MLP | 14049
1541
+ VAS county 01 | SEM | 271
1542
+
1543
+ VAS county 02 | FIDESZ-KDNP | 22792
1544
+ VAS county 02 | ÚDP | 126
1545
+ VAS county 02 | SZOCIÁLDEMOKRATÁK | 107
1546
+ VAS county 02 | KTI | 295
1547
+ VAS county 02 | MSZP-EGYÜTT-DK-PM-MLP | 10570
1548
+ VAS county 02 | MCP | 54
1549
+ VAS county 02 | LMP | 1686
1550
+ VAS county 02 | ÚMP | 317
1551
+ VAS county 02 | ÖP | 104
1552
+ VAS county 02 | JESZ | 82
1553
+ VAS county 02 | JOBBIK | 7447
1554
+ VAS county 02 | KISGAZDAPÁRT-MIÉP | 193
1555
+ VAS county 02 | Nemzeti Forr.Párt | 50
1556
+
1557
+ VAS county 03 | SEM | 173
1558
+ VAS county 03 | JOBBIK | 9379
1559
+ VAS county 03 | A HAZA NEM ELADÓ | 279
1560
+ VAS county 03 | LMP | 1358
1561
+ VAS county 03 | ÚDP | 43
1562
+ VAS county 03 | SMS | 312
1563
+ VAS county 03 | SZMP | 26
1564
+ VAS county 03 | FKGP | 98
1565
+ VAS county 03 | SZAVA | 25
1566
+ VAS county 03 | MCP | 47
1567
+ VAS county 03 | SZDP | 107
1568
+ VAS county 03 | KMSZ | 50
1569
+ VAS county 03 | JESZ | 75
1570
+ VAS county 03 | MSZP-EGYÜTT-DK-PM-MLP | 6318
1571
+ VAS county 03 | ÚMP | 25
1572
+ VAS county 03 | FIDESZ-KDNP | 24271
1573
+
1574
+ VESZPRÉM county 01 | ÚMP | 25
1575
+ VESZPRÉM county 01 | MSZP-EGYÜTT-DK-PM-MLP | 13009
1576
+ VESZPRÉM county 01 | MCP | 51
1577
+ VESZPRÉM county 01 | ÚDP | 50
1578
+ VESZPRÉM county 01 | LMP | 2904
1579
+ VESZPRÉM county 01 | SEM | 304
1580
+ VESZPRÉM county 01 | JESZ | 332
1581
+ VESZPRÉM county 01 | JOBBIK | 7759
1582
+ VESZPRÉM county 01 | FIDESZ-KDNP | 22194
1583
+ VESZPRÉM county 01 | A HAZA NEM ELADÓ | 262
1584
+ VESZPRÉM county 01 | ÖP | 178
1585
+
1586
+ VESZPRÉM county 02 | SEM | 383
1587
+ VESZPRÉM county 02 | MSZP-EGYÜTT-DK-PM-MLP | 12428
1588
+ VESZPRÉM county 02 | JESZ | 196
1589
+ VESZPRÉM county 02 | ÚMP | 50
1590
+ VESZPRÉM county 02 | A HAZA NEM ELADÓ | 300
1591
+ VESZPRÉM county 02 | MDU | 46
1592
+ VESZPRÉM county 02 | ÚDP | 35
1593
+ VESZPRÉM county 02 | ÖP | 148
1594
+ VESZPRÉM county 02 | SZOCIÁLDEMOKRATÁK | 154
1595
+ VESZPRÉM county 02 | REND, SZABADSÁG | 12
1596
+ VESZPRÉM county 02 | MCP | 50
1597
+ VESZPRÉM county 02 | MKSZU | 73
1598
+ VESZPRÉM county 02 | EU. ROM | 20
1599
+ VESZPRÉM county 02 | LMP | 2246
1600
+ VESZPRÉM county 02 | JOBBIK | 8716
1601
+ VESZPRÉM county 02 | FIDESZ-KDNP | 20854
1602
+
1603
+ VESZPRÉM county 03 | MSZP-EGYÜTT-DK-PM-MLP | 11769
1604
+ VESZPRÉM county 03 | SEM | 181
1605
+ VESZPRÉM county 03 | A HAZA NEM ELADÓ | 234
1606
+ VESZPRÉM county 03 | MCP | 44
1607
+ VESZPRÉM county 03 | ÚMP | 38
1608
+ VESZPRÉM county 03 | KTI | 232
1609
+ VESZPRÉM county 03 | SZOCIÁLDEMOKRATÁK | 147
1610
+ VESZPRÉM county 03 | ÉLŐLÁNC | 80
1611
+ VESZPRÉM county 03 | JESZ | 96
1612
+ VESZPRÉM county 03 | JOBBIK | 10110
1613
+ VESZPRÉM county 03 | ÚDP | 34
1614
+ VESZPRÉM county 03 | FIDESZ-KDNP | 18570
1615
+ VESZPRÉM county 03 | MGP | 47
1616
+ VESZPRÉM county 03 | ÖP | 65
1617
+ VESZPRÉM county 03 | LMP | 1276
1618
+ VESZPRÉM county 03 | EU. ROM | 32
1619
+ VESZPRÉM county 03 | ÚGP | 87
1620
+
1621
+ VESZPRÉM county 04 | JOBBIK | 10030
1622
+ VESZPRÉM county 04 | ÚDP | 28
1623
+ VESZPRÉM county 04 | JESZ | 164
1624
+ VESZPRÉM county 04 | ÚMP | 53
1625
+ VESZPRÉM county 04 | MCP | 62
1626
+ VESZPRÉM county 04 | ZÖLDEK | 176
1627
+ VESZPRÉM county 04 | LMP | 1274
1628
+ VESZPRÉM county 04 | MSZP-EGYÜTT-DK-PM-MLP | 9485
1629
+ VESZPRÉM county 04 | FIDESZ-KDNP | 22246
1630
+ VESZPRÉM county 04 | EP | 123
1631
+
1632
+ ZALA county 01 | MGP | 59
1633
+ ZALA county 01 | MSZP-EGYÜTT-DK-PM-MLP | 12381
1634
+ ZALA county 01 | ÚDP | 42
1635
+ ZALA county 01 | ÚMP | 46
1636
+ ZALA county 01 | MDU | 31
1637
+ ZALA county 01 | JOBBIK | 10957
1638
+ ZALA county 01 | HATMAP | 35
1639
+ ZALA county 01 | REND, SZABADSÁG | 29
1640
+ ZALA county 01 | Független | 1382
1641
+ ZALA county 01 | MCP | 79
1642
+ ZALA county 01 | SZOCIÁLDEMOKRATÁK | 133
1643
+ ZALA county 01 | MSZDP | 54
1644
+ ZALA county 01 | LMP | 2196
1645
+ ZALA county 01 | SZAVA | 25
1646
+ ZALA county 01 | SMS | 636
1647
+ ZALA county 01 | FKGP | 235
1648
+ ZALA county 01 | SZMP | 117
1649
+ ZALA county 01 | FIDESZ-KDNP | 22816
1650
+ ZALA county 01 | EP | 163
1651
+
1652
+ ZALA county 02 | FKGP | 302
1653
+ ZALA county 02 | SMS | 173
1654
+ ZALA county 02 | ÚDP | 36
1655
+ ZALA county 02 | LMP | 1792
1656
+ ZALA county 02 | MCP | 133
1657
+ ZALA county 02 | MSZP-EGYÜTT-DK-PM-MLP | 8943
1658
+ ZALA county 02 | JOBBIK | 10985
1659
+ ZALA county 02 | FIDESZ-KDNP | 22351
1660
+ ZALA county 02 | ÚMP | 96
1661
+ ZALA county 02 | A HAZA NEM ELADÓ | 378
1662
+ ZALA county 02 | MRPP | 35
1663
+ ZALA county 02 | JESZ | 132
1664
+
1665
+ ZALA county 03 | EP | 67
1666
+ ZALA county 03 | ÖP | 98
1667
+ ZALA county 03 | FIDESZ-KDNP | 18279
1668
+ ZALA county 03 | MCP | 249
1669
+ ZALA county 03 | A HAZA NEM ELADÓ | 217
1670
+ ZALA county 03 | MRPP | 23
1671
+ ZALA county 03 | FKGP | 202
1672
+ ZALA county 03 | SEM | 299
1673
+ ZALA county 03 | KTI | 174
1674
+ ZALA county 03 | NOP | 18
1675
+ ZALA county 03 | MSZP-EGYÜTT-DK-PM-MLP | 12024
1676
+ ZALA county 03 | SMS | 184
1677
+ ZALA county 03 | JOBBIK | 12601
1678
+ ZALA county 03 | JESZ | 169
1679
+ ZALA county 03 | AQP | 69
1680
+ ZALA county 03 | LMP | 1516