daru 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +20 -7
  3. data/CONTRIBUTING.md +1 -1
  4. data/History.md +48 -1
  5. data/README.md +3 -3
  6. data/benchmarks/statistics.rb +6 -6
  7. data/benchmarks/where_clause.rb +1 -1
  8. data/benchmarks/where_vs_filter.rb +1 -1
  9. data/daru.gemspec +3 -2
  10. data/lib/daru.rb +14 -6
  11. data/lib/daru/accessors/gsl_wrapper.rb +1 -1
  12. data/lib/daru/accessors/nmatrix_wrapper.rb +2 -0
  13. data/lib/daru/category.rb +1 -1
  14. data/lib/daru/core/group_by.rb +32 -15
  15. data/lib/daru/core/query.rb +4 -4
  16. data/lib/daru/dataframe.rb +196 -48
  17. data/lib/daru/date_time/index.rb +7 -5
  18. data/lib/daru/formatters/table.rb +1 -0
  19. data/lib/daru/index/index.rb +121 -33
  20. data/lib/daru/index/multi_index.rb +83 -3
  21. data/lib/daru/io/csv/converters.rb +18 -0
  22. data/lib/daru/io/io.rb +80 -11
  23. data/lib/daru/io/sql_data_source.rb +10 -0
  24. data/lib/daru/iruby/templates/dataframe.html.erb +3 -50
  25. data/lib/daru/iruby/templates/dataframe_mi.html.erb +3 -56
  26. data/lib/daru/iruby/templates/dataframe_mi_tbody.html.erb +35 -0
  27. data/lib/daru/iruby/templates/dataframe_mi_thead.html.erb +21 -0
  28. data/lib/daru/iruby/templates/dataframe_tbody.html.erb +28 -0
  29. data/lib/daru/iruby/templates/dataframe_thead.html.erb +21 -0
  30. data/lib/daru/iruby/templates/vector.html.erb +3 -25
  31. data/lib/daru/iruby/templates/vector_mi.html.erb +3 -34
  32. data/lib/daru/iruby/templates/vector_mi_tbody.html.erb +26 -0
  33. data/lib/daru/iruby/templates/vector_mi_thead.html.erb +8 -0
  34. data/lib/daru/iruby/templates/vector_tbody.html.erb +17 -0
  35. data/lib/daru/iruby/templates/vector_thead.html.erb +8 -0
  36. data/lib/daru/maths/statistics/dataframe.rb +9 -11
  37. data/lib/daru/maths/statistics/vector.rb +139 -32
  38. data/lib/daru/plotting/gruff/dataframe.rb +13 -15
  39. data/lib/daru/plotting/nyaplot/category.rb +1 -1
  40. data/lib/daru/plotting/nyaplot/dataframe.rb +4 -4
  41. data/lib/daru/plotting/nyaplot/vector.rb +1 -2
  42. data/lib/daru/vector.rb +169 -80
  43. data/lib/daru/version.rb +1 -1
  44. data/spec/category_spec.rb +19 -19
  45. data/spec/core/group_by_spec.rb +47 -0
  46. data/spec/core/query_spec.rb +55 -50
  47. data/spec/daru_spec.rb +22 -0
  48. data/spec/dataframe_spec.rb +118 -6
  49. data/spec/date_time/index_spec.rb +34 -16
  50. data/spec/extensions/rserve_spec.rb +1 -1
  51. data/spec/fixtures/boolean_converter_test.csv +5 -0
  52. data/spec/fixtures/eciresults.html +394 -0
  53. data/spec/fixtures/empty_rows_test.csv +17 -0
  54. data/spec/fixtures/macau.html +3691 -0
  55. data/spec/fixtures/macd_data.csv +150 -0
  56. data/spec/fixtures/moneycontrol.html +6812 -0
  57. data/spec/fixtures/url_test.txt~ +0 -0
  58. data/spec/fixtures/valid_markup.html +62 -0
  59. data/spec/fixtures/wiki_climate.html +1243 -0
  60. data/spec/fixtures/wiki_table_info.html +631 -0
  61. data/spec/formatters/table_formatter_spec.rb +29 -0
  62. data/spec/index/categorical_index_spec.rb +33 -33
  63. data/spec/index/index_spec.rb +134 -41
  64. data/spec/index/multi_index_spec.rb +115 -31
  65. data/spec/io/io_spec.rb +201 -0
  66. data/spec/io/sql_data_source_spec.rb +31 -41
  67. data/spec/iruby/dataframe_spec.rb +17 -19
  68. data/spec/iruby/vector_spec.rb +26 -28
  69. data/spec/maths/statistics/vector_spec.rb +136 -14
  70. data/spec/plotting/gruff/category_spec.rb +3 -3
  71. data/spec/plotting/gruff/dataframe_spec.rb +14 -4
  72. data/spec/plotting/gruff/vector_spec.rb +9 -9
  73. data/spec/plotting/nyaplot/category_spec.rb +5 -9
  74. data/spec/plotting/nyaplot/dataframe_spec.rb +72 -47
  75. data/spec/plotting/nyaplot/vector_spec.rb +5 -11
  76. data/spec/shared/vector_display_spec.rb +12 -14
  77. data/spec/spec_helper.rb +21 -0
  78. data/spec/support/matchers.rb +5 -0
  79. data/spec/vector_spec.rb +222 -72
  80. metadata +68 -23
  81. data/spec/fixtures/stock_data.csv +0 -500
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe '#error' do
4
+ context 'by default' do
5
+ it { expect { Daru.error('test') }.to output("test\n").to_stderr_from_any_process }
6
+ end
7
+
8
+ context 'when set to nil' do
9
+ before { Daru.error_stream = nil }
10
+ it { expect { Daru.error('test') }.not_to output('test').to_stderr_from_any_process }
11
+ end
12
+
13
+ context 'when set to instance of custom class' do
14
+ let(:custom_stream) { double(puts: nil) }
15
+ before { Daru.error_stream = custom_stream }
16
+
17
+ it 'calls puts' do
18
+ expect { Daru.error('test') }.not_to output('test').to_stderr_from_any_process
19
+ expect(custom_stream).to have_received(:puts).with('test')
20
+ end
21
+ end
22
+ end
@@ -329,6 +329,14 @@ describe Daru::DataFrame do
329
329
  expect(df[:a]) .to eq(Daru::Vector.new([1,2,3,4,5]))
330
330
  end
331
331
 
332
+ it "allows creation of dataframe with a default order" do
333
+ arr_of_arrs_df = Daru::DataFrame.new([[1,2,3], [4,5,6], [7,8,9]])
334
+ arr_of_vectors_df = Daru::DataFrame.new([Daru::Vector.new([1,2,3]), Daru::Vector.new([4,5,6]), Daru::Vector.new([7,8,9])])
335
+
336
+ expect(arr_of_arrs_df.vectors.to_a).to eq([0,1,2])
337
+ expect(arr_of_vectors_df.vectors.to_a).to eq([0,1,2])
338
+ end
339
+
332
340
  it "raises error for incomplete DataFrame index" do
333
341
  expect {
334
342
  df = Daru::DataFrame.new({b: [11,12,13,14,15], a: [1,2,3,4,5],
@@ -516,12 +524,31 @@ describe Daru::DataFrame do
516
524
  index: [:one, :two, :three, :four, :five]))
517
525
  end
518
526
 
527
+ it "assigns new vector with default length if given just a value" do
528
+ @df[:d] = 1.0
529
+ expect(@df[:d]).to eq(Daru::Vector.new([1.0, 1.0, 1.0, 1.0, 1.0],
530
+ index: [:one, :two, :three, :four, :five], name: :d))
531
+ end
532
+
533
+ it "updates vector with default length if given just a value" do
534
+ @df[:c] = 1.0
535
+ expect(@df[:c]).to eq(Daru::Vector.new([1.0, 1.0, 1.0, 1.0, 1.0],
536
+ index: [:one, :two, :three, :four, :five], name: :c))
537
+ end
538
+
519
539
  it "appends an Array as a Daru::Vector" do
520
540
  @df[:d] = [69,99,108,85,49]
521
541
 
522
542
  expect(@df.d.class).to eq(Daru::Vector)
523
543
  end
524
544
 
545
+ it "appends an arbitrary enumerable as a Daru::Vector" do
546
+ @df[:d] = Set.new([69,99,108,85,49])
547
+
548
+ expect(@df[:d]).to eq(Daru::Vector.new([69, 99, 108, 85, 49],
549
+ index: [:one, :two, :three, :four, :five], name: :c))
550
+ end
551
+
525
552
  it "replaces an already present vector" do
526
553
  @df[:a] = [69,99,108,85,49].dv(nil, [:one, :two, :three, :four, :five])
527
554
 
@@ -1573,6 +1600,13 @@ describe Daru::DataFrame do
1573
1600
  it 'has synonym' do
1574
1601
  expect(@data_frame.first(2)).to eq(@data_frame.head(2))
1575
1602
  end
1603
+
1604
+ it 'works on DateTime indexes' do
1605
+ idx = Daru::DateTimeIndex.new(['2017-01-01', '2017-02-01', '2017-03-01'])
1606
+ df = Daru::DataFrame.new({col1: ['a', 'b', 'c']}, index: idx)
1607
+ first = Daru::DataFrame.new({col1: ['a']}, index: Daru::DateTimeIndex.new(['2017-01-01']))
1608
+ expect(df.head(1)).to eq(first)
1609
+ end
1576
1610
  end
1577
1611
 
1578
1612
  context "#last" do
@@ -3050,9 +3084,34 @@ describe Daru::DataFrame do
3050
3084
  end
3051
3085
 
3052
3086
  context "#summary" do
3053
- it "produces a summary of data frame" do
3054
- expect(@data_frame.summary.match("#{@data_frame.name}")).to_not eq(nil)
3055
- expect(@df_mi.summary.match("#{@df_mi.name}")).to_not eq(nil)
3087
+ subject { df.summary }
3088
+
3089
+ context "DataFrame" do
3090
+ let(:df) { Daru::DataFrame.new({a: [1,2,5], b: [1,2,"string"]}, order: [:a, :b], index: [:one, :two, :three], name: 'frame') }
3091
+ it { is_expected.to eq %Q{
3092
+ |= frame
3093
+ | Number of rows: 3
3094
+ | Element:[a]
3095
+ | == a
3096
+ | n :3
3097
+ | non-missing:3
3098
+ | median: 2
3099
+ | mean: 2.6667
3100
+ | std.dev.: 2.0817
3101
+ | std.err.: 1.2019
3102
+ | skew: 0.2874
3103
+ | kurtosis: -2.3333
3104
+ | Element:[b]
3105
+ | == b
3106
+ | n :3
3107
+ | non-missing:3
3108
+ | factors: 1,2,string
3109
+ | mode: 1,2,string
3110
+ | Distribution
3111
+ | 1 1 100.00%
3112
+ | 2 1 100.00%
3113
+ | string 1 100.00%
3114
+ }.unindent }
3056
3115
  end
3057
3116
  end
3058
3117
 
@@ -3644,7 +3703,7 @@ describe Daru::DataFrame do
3644
3703
  expect(df_union.index.to_a).to eq v1 + v2
3645
3704
  end
3646
3705
  end
3647
-
3706
+
3648
3707
  context '#inspect' do
3649
3708
  subject { df.inspect }
3650
3709
 
@@ -3667,6 +3726,41 @@ describe Daru::DataFrame do
3667
3726
  }.unindent}
3668
3727
  end
3669
3728
 
3729
+ context 'if index name is set' do
3730
+ context 'single index with name' do
3731
+ let(:df) { Daru::DataFrame.new({a: [1,2,3], b: [3,4,5], c: [6,7,8]},
3732
+ name: 'test')}
3733
+ before { df.index.name = 'index_name' }
3734
+ it { should == %Q{
3735
+ |#<Daru::DataFrame: test (3x3)>
3736
+ | index_name a b c
3737
+ | 0 1 3 6
3738
+ | 1 2 4 7
3739
+ | 2 3 5 8
3740
+ }.unindent}
3741
+ end
3742
+
3743
+ context 'MultiIndex with name' do
3744
+ let(:mi) { Daru::MultiIndex.new(
3745
+ levels: [[:a,:b,:c], [:one, :two]],
3746
+ labels: [[0,0,1,1,2,2], [0,1,0,1,0,1]], name: ['s1', 's2']) }
3747
+ let(:df) { Daru::DataFrame.new({
3748
+ a: [11, 12, 13, 14, 15, 16], b: [21, 22, 23, 24, 25, 26]},
3749
+ name: 'test', index: mi)}
3750
+ it { should == %Q{
3751
+ |#<Daru::DataFrame: test (6x2)>
3752
+ | s1 s2 a b
3753
+ | a one 11 21
3754
+ | two 12 22
3755
+ | b one 13 23
3756
+ | two 14 24
3757
+ | c one 15 25
3758
+ | two 16 26
3759
+ }.unindent}
3760
+ end
3761
+
3762
+ end
3763
+
3670
3764
  context 'no name' do
3671
3765
  let(:df) { Daru::DataFrame.new({a: [1,2,3], b: [3,4,5], c: [6,7,8]})}
3672
3766
  it { should == %Q{
@@ -3764,8 +3858,18 @@ describe Daru::DataFrame do
3764
3858
  end
3765
3859
 
3766
3860
  context '#to_s' do
3767
- it 'produces something, despite of how reasonable you think it is' do
3768
- expect(@data_frame.to_s).to eq @data_frame.to_html
3861
+ it 'produces a class, size description' do
3862
+ expect(@data_frame.to_s).to eq "#<Daru::DataFrame(5x3)>"
3863
+ end
3864
+
3865
+ it 'produces a class, name, size description' do
3866
+ @data_frame.name = "Test"
3867
+ expect(@data_frame.to_s).to eq "#<Daru::DataFrame: Test(5x3)>"
3868
+ end
3869
+
3870
+ it 'produces a class, name, size description when the name is a symbol' do
3871
+ @data_frame.name = :Test
3872
+ expect(@data_frame.to_s).to eq "#<Daru::DataFrame: Test(5x3)>"
3769
3873
  end
3770
3874
  end
3771
3875
 
@@ -3839,4 +3943,12 @@ describe Daru::DataFrame do
3839
3943
  | c DATE) CHARACTER SET=UTF8;
3840
3944
  }.unindent}
3841
3945
  end
3946
+
3947
+ context "#by_single_key" do
3948
+ let(:df) { Daru::DataFrame.new(a: [1, 2, 3], b: [4, 5, 6] ) }
3949
+
3950
+ it 'raise error when vector is missing from dataframe' do
3951
+ expect { df[:c] }.to raise_error(IndexError, /Specified vector c does not exist/)
3952
+ end
3953
+ end
3842
3954
  end if mri?
@@ -202,6 +202,11 @@ describe DateTimeIndex do
202
202
  "#<Daru::DateTimeIndex(4) 2014-07-01T00:00:00+00:00...2014-07-04T00:00:00+00:00>"
203
203
  }
204
204
  end
205
+
206
+ context 'empty index' do
207
+ let(:index){ DateTimeIndex.new([]) }
208
+ it { is_expected.to eq "#<Daru::DateTimeIndex(0)>" }
209
+ end
205
210
  end
206
211
 
207
212
  context "#frequency" do
@@ -244,6 +249,14 @@ describe DateTimeIndex do
244
249
  DateTime.new(2014,5),DateTime.new(2014,7)]))
245
250
  end
246
251
 
252
+ it 'does not fail on absent data' do
253
+ index = DateTimeIndex.new([
254
+ DateTime.new(2014,5),DateTime.new(2018,6),DateTime.new(2014,7),DateTime.new(2016,7),
255
+ DateTime.new(2013,7)])
256
+ p DateTimeIndex.new([])
257
+ expect(index['2015']).to eq(DateTimeIndex.new([]))
258
+ end
259
+
247
260
  it "accepts only year for frequency data" do
248
261
  index = DateTimeIndex.date_range(:start => DateTime.new(2012,3,2),
249
262
  periods: 1000, freq: '5D')
@@ -375,7 +388,7 @@ describe DateTimeIndex do
375
388
  }.to raise_error(ArgumentError)
376
389
  end
377
390
  end
378
-
391
+
379
392
  context "#pos" do
380
393
  let(:idx) do
381
394
  described_class.new([
@@ -386,32 +399,32 @@ describe DateTimeIndex do
386
399
  ], freq: :infer
387
400
  )
388
401
  end
389
-
402
+
390
403
  context "single index" do
391
404
  it { expect(idx.pos '2014-3-4').to eq 1 }
392
405
  end
393
-
406
+
394
407
  context "multiple indexes" do
395
408
  subject { idx.pos '2014' }
396
-
409
+
397
410
  it { is_expected.to be_a Array }
398
411
  its(:size) { is_expected.to eq 4 }
399
412
  it { is_expected.to eq [0, 1, 2, 3] }
400
413
  end
401
-
414
+
402
415
  context "single positional index" do
403
416
  it { expect(idx.pos 1).to eq 1 }
404
417
  end
405
-
418
+
406
419
  context "multiple positional indexes" do
407
420
  subject { idx.pos 0, 2 }
408
-
421
+
409
422
  it { is_expected.to be_a Array }
410
423
  its(:size) { is_expected.to eq 3 }
411
424
  it { is_expected.to eq [0, 1, 2] }
412
425
  end
413
426
  end
414
-
427
+
415
428
  context "#subset" do
416
429
  let(:idx) do
417
430
  described_class.new([
@@ -422,18 +435,18 @@ describe DateTimeIndex do
422
435
  ], freq: :infer
423
436
  )
424
437
  end
425
-
438
+
426
439
  context "multiple indexes" do
427
440
  subject { idx.subset '2014' }
428
-
441
+
429
442
  it { is_expected.to be_a described_class }
430
443
  its(:size) { is_expected.to eq 4 }
431
444
  it { is_expected.to eq idx }
432
445
  end
433
-
446
+
434
447
  context "multiple positional indexes" do
435
448
  subject { idx.subset 0, 2 }
436
-
449
+
437
450
  it { is_expected.to be_a described_class }
438
451
  its(:size) { is_expected.to eq 3 }
439
452
  its(:to_a) { is_expected.to eq [DateTime.new(2014, 3, 3),
@@ -478,7 +491,7 @@ describe DateTimeIndex do
478
491
  expect(index.size).to eq(100)
479
492
  end
480
493
  end
481
-
494
+
482
495
  context "#add" do
483
496
  before { skip }
484
497
  let(:idx) { Daru::Index.new [:a, :b, :c] }
@@ -486,14 +499,14 @@ describe DateTimeIndex do
486
499
  context "single index" do
487
500
  subject { idx }
488
501
  before { idx.add :d }
489
-
502
+
490
503
  its(:to_a) { is_expected.to eq [:a, :b, :c, :d] }
491
504
  end
492
-
505
+
493
506
  context "mulitple indexes" do
494
507
  subject { idx }
495
508
  before { idx.add :d, :e }
496
-
509
+
497
510
  its(:to_a) { is_expected.to eq [:a, :b, :c, :d, :e] }
498
511
  end
499
512
  end
@@ -505,6 +518,11 @@ describe DateTimeIndex do
505
518
  expect(index.to_a).to eq([
506
519
  DateTime.new(2012,2,1),DateTime.new(2012,2,2),DateTime.new(2012,2,3),DateTime.new(2012,2,4)])
507
520
  end
521
+
522
+ context 'empty index' do
523
+ subject(:index) { DateTimeIndex.new([]) }
524
+ its(:to_a) { is_expected.to eq [] }
525
+ end
508
526
  end
509
527
 
510
528
  context "#shift" do
@@ -46,7 +46,7 @@ begin
46
46
  end
47
47
  end
48
48
  end
49
- end
49
+ end
50
50
  rescue LoadError => e
51
51
  puts "Requires rserve extension"
52
52
  end
@@ -0,0 +1,5 @@
1
+ ID,Case Number,Date,Block,IUCR,Primary Type,Description,Location Description,Arrest,Domestic,Beat,District,Ward,Community Area,FBI Code,X Coordinate,Y Coordinate,Year,Updated On,Latitude,Longitude,Location
2
+ 8517337,HV194652,03/12/2012 02:00:00 PM,027XX S HAMLIN AVE,1152,DECEPTIVE PRACTICE,ILLEGAL USE CASH CARD,ATM (AUTOMATIC TELLER MACHINE),false,true,1031,010,22,30,11,1151482,1885517,2012,02/04/2016 06:33:39 AM,41.841738053,-87.719605942,"(41.841738053, -87.719605942)"
3
+ 8517338,HV194241,03/06/2012 10:49:00 PM,102XX S VERNON AVE,0917,MOTOR VEHICLE THEFT,"CYCLE, SCOOTER, BIKE W-VIN",STREET,false,false,0511,005,9,49,07,1181052,1837191,2012,02/04/2016 06:33:39 AM,41.708495677,-87.612580474,"(41.708495677, -87.612580474)"
4
+ 8517339,HV194563,02/01/2012 08:15:00 AM,003XX W 108TH ST,0460,BATTERY,SIMPLE,"SCHOOL, PRIVATE, BUILDING",false,false,0513,005,34,49,08B,1176016,1833309,2012,02/04/2016 06:33:39 AM,41.6979571,-87.631138505,"(41.6979571, -87.631138505)"
5
+ 8517340,HV194531,03/12/2012 05:50:00 PM,089XX S CARPENTER ST,0560,ASSAULT,SIMPLE,STREET,false,false,2222,022,21,73,08A,1170886,1845421,2012,02/04/2016 06:33:39 AM,41.731307475,-87.649569675,"(41.731307475, -87.649569675)"
@@ -0,0 +1,394 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <!-- saved from url=(0044)http://eciresults.nic.in/PartyWiseResult.htm -->
3
+ <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
+ <title>Partywise Result</title>
5
+ <meta http-equiv="Content-Language" content="en-us">
6
+
7
+ <meta http-equiv="X-UA-Compatible" content="IE=7">
8
+ <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
9
+ <meta http-equiv="Pragma" content="no-cache">
10
+ <meta http-equiv="Expires" content="0">
11
+ <meta http-equiv="refresh" content="240">
12
+ <meta name="GENERATOR" content="MSHTML 8.00.6001.18812">
13
+ <script type="text/javascript" src="./eciresults_files/jsapi"></script>
14
+ <script type="text/javascript">
15
+ google.load('visualization', '1.0', { packages: ['corechart'] });
16
+ google.setOnLoadCallback(drawChart);
17
+ function drawChart() {
18
+ var chart=null;
19
+ var data = null;
20
+ var options=null;
21
+
22
+ if(document.getElementById('piecharts05')!=null)
23
+ {
24
+ data = new google.visualization.DataTable();
25
+ data.addColumn('string', 'PartyName');
26
+ data.addColumn('number', 'Votes Wise(%)');
27
+ data.addRows([['BJP {32.5%,297588}',297588],['INC {28.4%,259758}',259758],['MAG {11.3%,103290}',103290],['IND {11.1%,101922}',101922],['AAAP {6.3%,57420}',57420],['GFP {3.5%,31900}',31900],['NCP {2.3%,20916}',20916],['GSM {1.2%,10745}',10745],['UGP {0.9%,8563}',8563],['GSRP {0.6%,5747}',5747],['GVP {0.6%,5379}',5379],['SHS {0.1%,792}',792],['GoPrP {0.0%,451}',451],['BMUP {0.0%,278}',278],['CPI {0.0%,256}',256],['SaJPCs {0.0%,133}',133],['NGRF {0.0%,115}',115],['APoI {0.0%,44}',44],['NOTA {1.2%,10919}',10919]]);
28
+ options = {
29
+ legend: {position: 'left',textStyle: {fontName: 'Arial', fontSize: 13}},
30
+ titleTextStyle:{fontName: 'Arial', fontSize: 13,bold:false},
31
+ tooltip:{textStyle: {fontName: 'Arial', fontSize: 11,bold:false}},
32
+ is3D: true,
33
+ title: 'Please move your mouse over the chart or legend to view more details.\nParty {Votes%,Vote Count}',
34
+ width: 700,
35
+ height: 400,
36
+ slices: {0:{color: '#FF6600'},1:{color: '#AA0078'},2:{color: '#800080'},3:{color: '#000000'},4:{color: '#663300'},6:{color: '#21B6A8'},11:{color: '#C3C300'},14:{color: '#FF0000'},18:{color: '#9CFF00'}}
37
+ };
38
+ chart = new google.visualization.PieChart(document.getElementById('piecharts05'));
39
+ chart.draw(data, options);
40
+ }
41
+ if(document.getElementById('piecharts14')!=null)
42
+ {
43
+ data = new google.visualization.DataTable();
44
+ data.addColumn('string', 'PartyName');
45
+ data.addColumn('number', 'Votes Wise(%)');
46
+ data.addRows([['BJP {36.3%,601527}',601527],['INC {35.1%,581869}',581869],['NPF {7.2%,118850}',118850],['IND {5.1%,83834}',83834],['NPEP {5.1%,83744}',83744],['NEINDP {3.4%,56185}',56185],['LJP {2.5%,42263}',42263],['AITC {1.4%,23384}',23384],['MNDF {1.2%,20120}',20120],['NCP {1.0%,15767}',15767],['CPI {0.7%,12251}',12251],['RPI(A) {0.3%,4176}',4176],['PDA {0.2%,3044}',3044],['PRJA {0.0%,696}',696],['MPEP {0.0%,531}',531],['CPM {0.0%,214}',214],['AIFB {0.0%,146}',146],['MDPF {0.0%,113}',113],['NOTA {0.5%,9062}',9062]]);
47
+ options = {
48
+ legend: {position: 'left',textStyle: {fontName: 'Arial', fontSize: 13}},
49
+ titleTextStyle:{fontName: 'Arial', fontSize: 13,bold:false},
50
+ tooltip:{textStyle: {fontName: 'Arial', fontSize: 11,bold:false}},
51
+ is3D: true,
52
+ title: 'Please move your mouse over the chart or legend to view more details.\nParty {Votes%,Vote Count}',
53
+ width: 700,
54
+ height: 400,
55
+ slices: {0:{color: '#FF6600'},1:{color: '#AA0078'},2:{color: '#6D929B'},3:{color: '#000000'},4:{color: '#DABD95'},6:{color: '#421C52'},7:{color: '#FFFF99'},9:{color: '#21B6A8'},10:{color: '#FF0000'},12:{color: '#FFC3CE'},15:{color: '#990033'},16:{color: '#F5FAFA'},18:{color: '#9CFF00'}}
56
+ };
57
+ chart = new google.visualization.PieChart(document.getElementById('piecharts14'));
58
+ chart.draw(data, options);
59
+ }
60
+ if(document.getElementById('piecharts19')!=null)
61
+ {
62
+ data = new google.visualization.DataTable();
63
+ data.addColumn('string', 'PartyName');
64
+ data.addColumn('number', 'Votes Wise(%)');
65
+ data.addRows([['INC {38.5%,5945899}',5945899],['SAD {25.2%,3898161}',3898161],['AAAP {23.7%,3662665}',3662665],['BJP {5.4%,833092}',833092],['IND {2.1%,323243}',323243],['BSP {1.5%,234400}',234400],['LIP {1.2%,189228}',189228],['SAD(M) {0.3%,49260}',49260],['APPA {0.2%,37476}',37476],['RMPOI {0.2%,37243}',37243],['CPI {0.2%,34074}',34074],['CPM {0.1%,10901}',10901],['AITC {0.1%,10587}',10587],['DEMSWP {0.1%,9931}',9931],['CPI(ML)(L) {0.1%,9616}',9616],['SHS {0.0%,6779}',6779],['BSP(A) {0.0%,6359}',6359],['HSS {0.0%,4033}',4033],['BMUP {0.0%,2940}',2940],['DPIN {0.0%,2920}',2920],['BDPty {0.0%,2240}',2240],['JJJKP {0.0%,1979}',1979],['NAIP {0.0%,1975}',1975],['SAKAP {0.0%,1940}',1940],['PDemP {0.0%,1663}',1663],['HINUP {0.0%,1503}',1503],['NCP {0.0%,1395}',1395],['IKL {0.0%,1003}',1003],['JKNPP {0.0%,981}',981],['SLDP {0.0%,892}',892],['SWAP {0.0%,856}',856],['DPI {0.0%,847}',847],['BRPP {0.0%,822}',822],['SAPUNPA {0.0%,803}',803],['IVD {0.0%,796}',796],['RPI(A) {0.0%,753}',753],['ABSD {0.0%,750}',750],['PLP {0.0%,730}',730],['IUML {0.0%,524}',524],['RKSP {0.0%,509}',509],['DBSP {0.0%,446}',446],['BRP {0.0%,399}',399],['CPIM {0.0%,376}',376],['OP {0.0%,372}',372],['RSP {0.0%,354}',354],['KYP {0.0%,338}',338],['BGTD {0.0%,245}',245],['BASD {0.0%,179}',179],['DCP {0.0%,177}',177],['HND {0.0%,163}',163],['LPSP {0.0%,92}',92],['BIRK {0.0%,86}',86],['NOTA {0.7%,108471}',108471]]);
66
+ options = {
67
+ legend: {position: 'left',textStyle: {fontName: 'Arial', fontSize: 13}},
68
+ titleTextStyle:{fontName: 'Arial', fontSize: 13,bold:false},
69
+ tooltip:{textStyle: {fontName: 'Arial', fontSize: 11,bold:false}},
70
+ is3D: true,
71
+ title: 'Please move your mouse over the chart or legend to view more details.\nParty {Votes%,Vote Count}',
72
+ width: 700,
73
+ height: 400,
74
+ slices: {0:{color: '#AA0078'},1:{color: '#CCCC99'},2:{color: '#663300'},3:{color: '#FF6600'},4:{color: '#000000'},5:{color: '#000078'},10:{color: '#FF0000'},11:{color: '#990033'},12:{color: '#FFFF99'},15:{color: '#C3C300'},26:{color: '#21B6A8'},28:{color: '#F6FA9C'},38:{color: '#FFF7EF'},44:{color: '#669966'},52:{color: '#9CFF00'}}
75
+ };
76
+ chart = new google.visualization.PieChart(document.getElementById('piecharts19'));
77
+ chart.draw(data, options);
78
+ }
79
+ if(document.getElementById('piecharts24')!=null)
80
+ {
81
+ data = new google.visualization.DataTable();
82
+ data.addColumn('string', 'PartyName');
83
+ data.addColumn('number', 'Votes Wise(%)');
84
+ data.addRows([['BJP {39.7%,34403039}',34403039],['BSP {22.2%,19281352}',19281352],['SP {21.8%,18923689}',18923689],['INC {6.2%,5416324}',5416324],['IND {2.6%,2229448}',2229448],['RLD {1.8%,1545810}',1545810],['ADAL {1.0%,851336}',851336],['SBSP {0.7%,607911}',607911],['NINSHAD {0.6%,540542}',540542],['PECP {0.3%,227998}',227998],['AIMIM {0.2%,205232}',205232],['LD {0.2%,181704}',181704],['BMUP {0.2%,152844}',152844],['CPI {0.2%,138763}',138763],['MD {0.1%,96087}',96087],['SHS {0.1%,88595}',88595],['JAM {0.1%,72537}',72537],['BSRD {0.1%,66412}',66412],['RPD {0.1%,59194}',59194],['JANADIP {0.1%,52812}',52812],['IEMC {0.1%,49860}',49860],['BSCP {0.0%,35379}',35379],['CPM {0.0%,35207}',35207],['NCP {0.0%,33494}',33494],['SARSAMP {0.0%,30485}',30485],['CPI(ML)(L) {0.0%,27916}',27916],['RKMP {0.0%,27406}',27406],['SWAJANPA {0.0%,22230}',22230],['MBCOI {0.0%,21162}',21162],['MAHAD {0.0%,20993}',20993],['PMSP {0.0%,17507}',17507],['MADP {0.0%,14803}',14803],['GGP {0.0%,12509}',12509],['RPI(A) {0.0%,12251}',12251],['SDU {0.0%,11074}',11074],['RSHP {0.0%,10947}',10947],['RSPS {0.0%,10834}',10834],['RAJAP {0.0%,10008}',10008],['ASP {0.0%,8029}',8029],['UPRP {0.0%,7782}',7782],['MwSP {0.0%,7714}',7714],['RKSP {0.0%,7522}',7522],['RASHVIP {0.0%,6866}',6866],['RTKP {0.0%,6709}',6709],['BKrD {0.0%,6569}',6569],['RSOSP {0.0%,6377}',6377],['BKRP {0.0%,5904}',5904],['PSJP {0.0%,5794}',5794],['SaJPCs {0.0%,5769}',5769],['VP {0.0%,5306}',5306],['PMhP {0.0%,5293}',5293],['SWPI {0.0%,5281}',5281],['VIP {0.0%,5182}',5182],['SSD {0.0%,5139}',5139],['LOGAP {0.0%,4896}',4896],['RsJnP {0.0%,4858}',4858],['MNVP {0.0%,4730}',4730],['RViP {0.0%,4652}',4652],['BHATARSP {0.0%,4620}',4620],['SUCI {0.0%,4452}',4452],['BHAKALP {0.0%,4270}',4270],['SABHP {0.0%,4116}',4116],['ABHM {0.0%,4095}',4095],['BaSaP {0.0%,3948}',3948],['BaSaPa {0.0%,3918}',3918],['VPI {0.0%,3903}',3903],['RMGP {0.0%,3893}',3893],['BRJ {0.0%,3843}',3843],['MHP {0.0%,3523}',3523],['JHJBP {0.0%,3490}',3490],['RJSNP {0.0%,3433}',3433],['HAPa {0.0%,3387}',3387],['RAJSPty {0.0%,3338}',3338],['JSEP {0.0%,3266}',3266],['BAWPA {0.0%,3224}',3224],['RVLP {0.0%,3147}',3147],['pps {0.0%,3122}',3122],['BBPP {0.0%,3113}',3113],['AIFB {0.0%,3104}',3104],['BAHUMP {0.0%,3030}',3030],['AkBSD {0.0%,3012}',3012],['OP {0.0%,2980}',2980],['DESP {0.0%,2928}',2928],['RBCP {0.0%,2867}',2867],['POOPEP {0.0%,2847}',2847],['LSPS {0.0%,2811}',2811],['ADUP {0.0%,2811}',2811],['RAJADP {0.0%,2787}',2787],['JPS {0.0%,2783}',2783],['ASaP {0.0%,2757}',2757],['shsap {0.0%,2749}',2749],['JaSSP {0.0%,2708}',2708],['PGSP {0.0%,2706}',2706],['MHD {0.0%,2691}',2691],['AZAD {0.0%,2672}',2672],['FJP {0.0%,2667}',2667],['jhspt {0.0%,2590}',2590],['RPI {0.0%,2561}',2561],['GKP {0.0%,2552}',2552],['SSAD {0.0%,2458}',2458],['BHIP {0.0%,2441}',2441],['SSKP {0.0%,2421}',2421],['ASSP {0.0%,2361}',2361],['AVIRP {0.0%,2345}',2345],['RshJP {0.0%,2238}',2238],['BLSP {0.0%,2229}',2229],['ADPT {0.0%,2136}',2136],['SP(I) {0.0%,2064}',2064],['SKLP {0.0%,2063}',2063],['RtrJP {0.0%,2053}',2053],['SaSPa {0.0%,2043}',2043],['JRPa {0.0%,2035}',2035],['PDD {0.0%,2031}',2031],['NaLP {0.0%,1977}',1977],['BDPty {0.0%,1911}',1911],['ManKP {0.0%,1832}',1832],['rpsn {0.0%,1832}',1832],['ISSP {0.0%,1827}',1827],['SAMSAMPA {0.0%,1781}',1781],['AaSamP {0.0%,1780}',1780],['BHABHAPA {0.0%,1727}',1727],['MAHISAP {0.0%,1719}',1719],['BSD {0.0%,1674}',1674],['YVP {0.0%,1640}',1640],['BMF {0.0%,1639}',1639],['ADHIKAR {0.0%,1635}',1635],['AIPF {0.0%,1631}',1631],['BaHaP {0.0%,1586}',1586],['JAPL {0.0%,1564}',1564],['ADRSP {0.0%,1541}',1541],['AABHAP {0.0%,1536}',1536],['RrSP {0.0%,1520}',1520],['PSWAM {0.0%,1489}',1489],['BhaSP {0.0%,1475}',1475],['APoI {0.0%,1445}',1445],['MaKDL {0.0%,1431}',1431],['BIRK {0.0%,1427}',1427],['KTKD {0.0%,1406}',1406],['AACP {0.0%,1404}',1404],['NAP {0.0%,1378}',1378],['NYP {0.0%,1356}',1356],['SARP {0.0%,1345}',1345],['KiSP {0.0%,1300}',1300],['MNDP {0.0%,1283}',1283],['SWAP {0.0%,1249}',1249],['BJKD {0.0%,1244}',1244],['AIPJSP {0.0%,1237}',1237],['PBI {0.0%,1230}',1230],['RsAD {0.0%,1203}',1203],['BDSAP {0.0%,1166}',1166],['KSJP {0.0%,1162}',1162],['HND {0.0%,1154}',1154],['BKS {0.0%,1143}',1143],['KMBS {0.0%,1138}',1138],['BCB {0.0%,1135}',1135],['SATSHIP {0.0%,1129}',1129],['bmd {0.0%,1104}',1104],['NEP {0.0%,1099}',1099],['BaVaP {0.0%,1098}',1098],['RJAP {0.0%,1095}',1095],['IUML {0.0%,1091}',1091],['RtJP {0.0%,1086}',1086],['AAMJP {0.0%,1080}',1080],['RUC {0.0%,1069}',1069],['ABVCP {0.0%,1049}',1049],['RAJP {0.0%,1022}',1022],['JANJAN {0.0%,1005}',1005],['BEP {0.0%,1003}',1003],['AD {0.0%,994}',994],['BKJP {0.0%,979}',979],['MaJP {0.0%,959}',959],['BRPI {0.0%,952}',952],['VKP {0.0%,926}',926],['AYP {0.0%,908}',908],['ALHP {0.0%,908}',908],['PuPP {0.0%,907}',907],['BJBCD {0.0%,904}',904],['AdVP {0.0%,899}',899],['RSD {0.0%,889}',889],['ABHASP {0.0%,879}',879],['BHASAP {0.0%,857}',857],['BRABSVP {0.0%,857}',857],['SaDa {0.0%,856}',856],['JANKP {0.0%,854}',854],['SATKP {0.0%,850}',850],['RMEP {0.0%,802}',802],['HJ {0.0%,793}',793],['RLrP {0.0%,792}',792],['SaSaP {0.0%,787}',787],['LPI(V) {0.0%,781}',781],['NJaP {0.0%,778}',778],['HuSP {0.0%,778}',778],['BNavP {0.0%,774}',774],['JaSD {0.0%,768}',768],['SHSP {0.0%,746}',746],['JSK {0.0%,723}',723],['EKSP {0.0%,712}',712],['BMtP {0.0%,704}',704],['RVMP {0.0%,691}',691],['PPI {0.0%,687}',687],['RPDl {0.0%,677}',677],['BUNKD {0.0%,672}',672],['SASEP {0.0%,668}',668],['FDDP {0.0%,667}',667],['MOP {0.0%,657}',657],['BSP(K) {0.0%,647}',647],['BHAJSP {0.0%,642}',642],['HINUP {0.0%,626}',626],['RaCP {0.0%,620}',620],['BHASSS {0.0%,609}',609],['AKSP {0.0%,603}',603],['PAJD {0.0%,590}',590],['NAVSAD {0.0%,588}',588],['LEP {0.0%,583}',583],['BHSVP {0.0%,581}',581],['AIJCP {0.0%,576}',576],['JSP {0.0%,571}',571],['IVD {0.0%,568}',568],['HCP {0.0%,568}',568],['AMKP {0.0%,560}',560],['AAPA {0.0%,550}',550],['ABJS {0.0%,544}',544],['BHANYD {0.0%,544}',544],['BHKRDL {0.0%,537}',537],['RGD {0.0%,523}',523],['RasJM {0.0%,519}',519],['ANC {0.0%,519}',519],['SSSP {0.0%,508}',508],['BHAIP {0.0%,489}',489],['PLM {0.0%,488}',488],['MANBP {0.0%,486}',486],['ABSKP {0.0%,486}',486],['ALD {0.0%,484}',484],['RaLoPa {0.0%,473}',473],['RKIVP {0.0%,464}',464],['BSKD {0.0%,452}',452],['SURSAP {0.0%,452}',452],['KYP {0.0%,451}',451],['NSPI {0.0%,451}',451],['LPSP {0.0%,449}',449],['NADEF {0.0%,449}',449],['SANVP {0.0%,438}',438],['JUSTIP {0.0%,435}',435],['BSNPty {0.0%,433}',433],['ARK {0.0%,433}',433],['RVNP {0.0%,429}',429],['MaNPa {0.0%,424}',424],['IPH {0.0%,410}',410],['KMSUP {0.0%,405}',405],['LOMP {0.0%,395}',395],['PSAVKP {0.0%,395}',395],['AIMF {0.0%,375}',375],['SWJP {0.0%,366}',366],['bjdi {0.0%,365}',365],['RSMD {0.0%,361}',361],['HKRD {0.0%,355}',355],['BaJD {0.0%,349}',349],['UDFS {0.0%,342}',342],['BHANVIP {0.0%,341}',341],['DNP {0.0%,341}',341],['GEkP {0.0%,329}',329],['SaPP {0.0%,329}',329],['NAPt {0.0%,319}',319],['NDPF {0.0%,294}',294],['BKSL {0.0%,292}',292],['BJD(T) {0.0%,285}',285],['AwVP {0.0%,280}',280],['RtSJP {0.0%,279}',279],['RSP(S) {0.0%,263}',263],['UKKD {0.0%,259}',259],['kajp {0.0%,258}',258],['AJPR {0.0%,250}',250],['RJBVP {0.0%,238}',238],['BJS {0.0%,234}',234],['NASHMBP {0.0%,233}',233],['BKPP {0.0%,218}',218],['SSCP {0.0%,216}',216],['NPPS {0.0%,215}',215],['RAC {0.0%,211}',211],['JSVP {0.0%,210}',210],['SASEPA {0.0%,208}',208],['BNIP {0.0%,204}',204],['RPIE {0.0%,202}',202],['MKUP {0.0%,200}',200],['HDVP {0.0%,200}',200],['hjc {0.0%,183}',183],['LSWP {0.0%,183}',183],['BJVP {0.0%,182}',182],['makm {0.0%,178}',178],['BLokSP {0.0%,177}',177],['NaAP {0.0%,171}',171],['BRKD {0.0%,154}',154],['LRAP {0.0%,151}',151],['UNP {0.0%,146}',146],['SamAP {0.0%,137}',137],['PUPVP {0.0%,130}',130],['aicp {0.0%,128}',128],['RMJP {0.0%,125}',125],['BPA {0.0%,120}',120],['NLIP {0.0%,117}',117],['MaSPa {0.0%,104}',104],['RaIP {0.0%,91}',91],['RaBaP {0.0%,63}',63],['NOTA {0.9%,757643}',757643]]);
85
+ options = {
86
+ legend: {position: 'left',textStyle: {fontName: 'Arial', fontSize: 13}},
87
+ titleTextStyle:{fontName: 'Arial', fontSize: 13,bold:false},
88
+ tooltip:{textStyle: {fontName: 'Arial', fontSize: 11,bold:false}},
89
+ is3D: true,
90
+ title: 'Please move your mouse over the chart or legend to view more details.\nParty {Votes%,Vote Count}',
91
+ width: 700,
92
+ height: 400,
93
+ slices: {0:{color: '#FF6600'},1:{color: '#000078'},2:{color: '#455268'},3:{color: '#AA0078'},4:{color: '#000000'},5:{color: '#6600CC'},13:{color: '#FF0000'},15:{color: '#C3C300'},22:{color: '#990033'},23:{color: '#21B6A8'},78:{color: '#F5FAFA'},160:{color: '#FFF7EF'},303:{color: '#9CFF00'}}
94
+ };
95
+ chart = new google.visualization.PieChart(document.getElementById('piecharts24'));
96
+ chart.draw(data, options);
97
+ }
98
+ if(document.getElementById('piecharts28')!=null)
99
+ {
100
+ data = new google.visualization.DataTable();
101
+ data.addColumn('string', 'PartyName');
102
+ data.addColumn('number', 'Votes Wise(%)');
103
+ data.addRows([['BJP {46.5%,2312912}',2312912],['INC {33.5%,1665664}',1665664],['IND {10.0%,499625}',499625],['BSP {7.0%,347507}',347507],['UKKD {0.7%,37039}',37039],['SP {0.4%,18202}',18202],['IBusP {0.1%,6245}',6245],['RLD {0.1%,4808}',4808],['CPI {0.1%,4106}',4106],['CPM {0.1%,3893}',3893],['UPP {0.1%,3068}',3068],['UKDD {0.1%,2660}',2660],['CPI(ML)(L) {0.0%,2124}',2124],['SHS {0.0%,1781}',1781],['UtRM {0.0%,1609}',1609],['SaSP {0.0%,1543}',1543],['SAVIPA {0.0%,1384}',1384],['HAMJANPA {0.0%,1308}',1308],['PRAJAPA {0.0%,1195}',1195],['BASD {0.0%,958}',958],['PECP {0.0%,767}',767],['BaSaPa {0.0%,720}',720],['BKLJP {0.0%,503}',503],['BMUP {0.0%,502}',502],['NCP {0.0%,500}',500],['LSPS {0.0%,460}',460],['RJSD {0.0%,412}',412],['RaAP {0.0%,383}',383],['BSRD {0.0%,283}',283],['AIFB {0.0%,197}',197],['bkdl {0.0%,149}',149],['AVIRP {0.0%,125}',125],['raup {0.0%,123}',123],['BMF {0.0%,96}',96],['PEPART {0.0%,72}',72],['NOTA {1.0%,50408}',50408]]);
104
+ options = {
105
+ legend: {position: 'left',textStyle: {fontName: 'Arial', fontSize: 13}},
106
+ titleTextStyle:{fontName: 'Arial', fontSize: 13,bold:false},
107
+ tooltip:{textStyle: {fontName: 'Arial', fontSize: 11,bold:false}},
108
+ is3D: true,
109
+ title: 'Please move your mouse over the chart or legend to view more details.\nParty {Votes%,Vote Count}',
110
+ width: 700,
111
+ height: 400,
112
+ slices: {0:{color: '#FF6600'},1:{color: '#AA0078'},2:{color: '#000000'},3:{color: '#000078'},5:{color: '#455268'},7:{color: '#6600CC'},8:{color: '#FF0000'},9:{color: '#990033'},13:{color: '#C3C300'},24:{color: '#21B6A8'},29:{color: '#F5FAFA'},35:{color: '#9CFF00'}}
113
+ };
114
+ chart = new google.visualization.PieChart(document.getElementById('piecharts28'));
115
+ chart.draw(data, options);
116
+ }
117
+
118
+
119
+
120
+
121
+
122
+
123
+ }
124
+ </script><script src="./eciresults_files/saved_resource" type="text/javascript"></script><link href="./eciresults_files/ui+en.css" type="text/css" rel="stylesheet"><script src="./eciresults_files/format+en,default+en,ui+en,corechart+en.I.js" type="text/javascript"></script>
125
+ <style type="text/css">
126
+ .ctl00_Menu1_0 {
127
+ background-color: white;
128
+ visibility: hidden;
129
+ display: none;
130
+ position: absolute;
131
+ left: 0px;
132
+ top: 0px;
133
+ }
134
+
135
+ .ctl00_Menu1_1 {
136
+ color: #7C6F57;
137
+ font-family: Verdana;
138
+ text-decoration: none;
139
+ }
140
+
141
+ .ctl00_Menu1_2 {
142
+ color: #7C6F57;
143
+ background-color: #F7F6F3;
144
+ font-family: Verdana;
145
+ }
146
+
147
+ .ctl00_Menu1_3 {
148
+ text-decoration: underline;
149
+ }
150
+
151
+ .ctl00_Menu1_4 {
152
+ padding: 2px 5px 2px 5px;
153
+ }
154
+
155
+ .ctl00_Menu1_12 {
156
+ color: white;
157
+ }
158
+
159
+ .ctl00_Menu1_13 {
160
+ background-color: #7c6f57;
161
+ color: white;
162
+ }
163
+
164
+ .ctl00_Menu1_14 {
165
+ color: white;
166
+ }
167
+
168
+ .ctl00_Menu1_15 {
169
+ background-color: #7c6f57;
170
+ color: white;
171
+ }
172
+ </style>
173
+ <link href="./eciresults_files/tooltip.css" rel="stylesheet" type="text/css"></head>
174
+ <body style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px;
175
+ width: 980px; padding: 0px; margin: auto;" bgcolor="#BFDAFB">
176
+ <form name="aspnetForm" id="aspnetForm">
177
+ <div align="center">
178
+ <table width="960px" style="background-color: White;">
179
+ <tbody><tr>
180
+ <td colspan="100%" style="text-align: center;">
181
+ <div style="font-size: 26px; font-weight: bold">
182
+ ELECTION COMMISSION OF INDIA
183
+ </div>
184
+ </td>
185
+ </tr>
186
+ <tr>
187
+ <td style="text-align: center; font-size: 16px; font-weight: bold">
188
+ GENERAL ELECTION TO VIDHAN SABHA TRENDS &amp; RESULT 2017
189
+ </td>
190
+ </tr>
191
+ <tr>
192
+ <td class="style2" style="text-align: center; font-size: 11px; font-weight: normal">
193
+ <b>Click Here for:</b> <a href="http://eciresults.nic.in/PC/PartyWiseResultS19.htm" target="_blank">BYE ELECTION TO LOKSABHA TRENDS &amp; RESULT 2017</a>
194
+ </td>
195
+ </tr>
196
+ <!-- <tr>
197
+ <td class="style2" style="text-align: center; font-size: 11px; font-weight: normal">
198
+ <b>Mirror &nbsp;Sites:</b> <a href="http://eciresults.nic.in" target="_blank">eciresults.nic.in</a>&nbsp;&nbsp;&amp;&nbsp;
199
+ <a href="http://eciresults.ap.nic.in" target="_blank">eciresults.ap.nic.in</a>
200
+ </td>
201
+ </tr>-->
202
+ <tr>
203
+ <td valign="top" width="20%" style="font-weight: bolder; font-family: Verdana" align="center">
204
+ <br>
205
+ <div style="font-size: 12px">
206
+ Click links below for
207
+ </div>
208
+ <table id="ctl00_Menu1" class="ctl00_Menu1_2" cellpadding="0" cellspacing="0" border="0">
209
+ <tbody><tr>
210
+ <td id="ctl00_Menu1n0">
211
+ <table class="ctl00_Menu1_4" cellpadding="0" cellspacing="0" border="0" width="100%">
212
+ <tbody><tr>
213
+ <td style="white-space: nowrap;">
214
+ <a class="ctl00_Menu1_1 ctl00_Menu1_3" href="http://eciresults.nic.in/PartyWiseResult.htm">Partywise</a>
215
+ </td>
216
+ </tr>
217
+ </tbody></table>
218
+ </td>
219
+ <td style="width: 3px;"></td>
220
+ <td id="ctl00_Menu1n1">
221
+ <table class="ctl00_Menu1_4" cellpadding="0" cellspacing="0" border="0" width="100%">
222
+ <tbody><tr>
223
+ <td style="white-space: nowrap;">
224
+ <a class="ctl00_Menu1_1 ctl00_Menu1_3" href="http://eciresults.nic.in/Constituencywises0510.htm">
225
+ Constituencywise-All
226
+ Candidates
227
+ </a>
228
+ </td>
229
+ </tr>
230
+ </tbody></table>
231
+ </td>
232
+ <td style="width: 3px;"></td>
233
+ <td id="ctl00_Menu1n2">
234
+ <table class="ctl00_Menu1_4" cellpadding="0" cellspacing="0" border="0" width="100%">
235
+ <tbody><tr>
236
+ <td style="white-space: nowrap;">
237
+ <a class="ctl00_Menu1_1 ctl00_Menu1_3" href="http://eciresults.nic.in/Statewises05.htm">Constituencywise Trends</a>
238
+ </td>
239
+ </tr>
240
+ </tbody></table>
241
+ </td>
242
+ </tr>
243
+ </tbody></table>
244
+ <br>
245
+ </td>
246
+ </tr>
247
+ <tr style="height: 5px">
248
+ <td></td>
249
+ </tr>
250
+ <tr style="height: 5px">
251
+ <td style="text-align: center;">
252
+ <div>
253
+ <b>English</b>
254
+
255
+ <span>|</span>
256
+ <a href="http://eciresults.nic.in/HI/PartyWiseResult.htm" style="font-size:18px"><b>हिन्दी</b></a>
257
+ </div>
258
+ </td>
259
+ </tr>
260
+ <tr>
261
+ <td valign="top" width="80%">
262
+ <table width="100%">
263
+ <tbody><tr>
264
+ <td>
265
+ <table style="margin: auto; width: 75%; font-family: Verdana; border: solid 1px black;
266
+ font-weight: lighter">
267
+ <tbody><tr>
268
+ <td colspan="2" align="center" style="font-size: 16px; font-weight: bold">
269
+ Partywise Trends &amp; Result
270
+ </td>
271
+ </tr>
272
+ <tr style="background-color: #bfdafb; height: 20px; color: black;" align="center">
273
+ <td style="font-weight: 700" colspan="2">
274
+ <b>Select State</b>&nbsp;
275
+ <select style="width: 150px; height: 22px" id="ctl00_ContentPlaceHolder1_Result1_ddlState" onchange="return GetResult(this)" name="ctl00$ContentPlaceHolder1$Result1$ddlState">
276
+ <option selected="selected" value="">Select State</option>
277
+ <option value="">All</option>&gt;
278
+
279
+ <option value="S05">Goa</option>
280
+ <option value="S14">Manipur</option>
281
+ <option value="S19">Punjab</option>
282
+ <option value="S24">Uttar Pradesh</option>
283
+ <option value="S28">Uttarakhand</option>
284
+ </select>
285
+ </td>
286
+ </tr>
287
+ </tbody></table>
288
+ </td>
289
+ </tr>
290
+ <tr>
291
+ <td align="center">
292
+ <table width="50%">
293
+ <tbody><tr>
294
+ <td align="center">
295
+ <a href="http://eciresults.nic.in/PartyWiseResult.htm#" onclick="return ScollToBottom();">View vote share</a>
296
+ </td>
297
+ </tr>
298
+ <tr>
299
+ <td style="width: 100%">
300
+ <div id="div1" style="border-style: none; table-layout: auto;">
301
+ <br> <table border="1" style="margin: auto; width: 100%; font-family: Verdana; border: solid 1px black;font-weight:lighter"> <tbody><tr> <td colspan="4" align="center" style="font-size: 15px; font-weight: bold; background-color: #BFDAFB;"> Goa&nbsp;<br>Result Status <div id="divStatusHR" style="font-size: 10px;"></div></td> </tr> <tr style="height: 20px; background-color: #BFDAFB; color:Black;"><td colspan="4" align="center"><b><div style="font-size: 10px; font-weight: bold" id="divStatus"> Status Known For 40 out of 40 Constituencies</div></b></td></tr><tr style="height: 20px; background-color: #BFDAFB; color:Black;"> <th align="left">Party</th> <th>Won</th><th>Leading</th><th>Total</th></tr><tr style="font-size:12px;"><td align="left">Bharatiya Janata Party</td><td align="center">13</td><td align="center">0</td><td align="center">13</td></tr><tr style="font-size:12px;"><td align="left">Indian National Congress</td><td align="center">17</td><td align="center">0</td><td align="center">17</td></tr><tr style="font-size:12px;"><td align="left">Nationalist Congress Party</td><td align="center">1</td><td align="center">0</td><td align="center">1</td></tr><tr style="font-size:12px;"><td align="left">Maharashtrawadi Gomantak</td><td align="center">3</td><td align="center">0</td><td align="center">3</td></tr><tr style="font-size:12px;"><td align="left">Goa Forward Party</td><td align="center">3</td><td align="center">0</td><td align="center">3</td></tr><tr style="font-size:12px;"><td align="left">Independent</td><td align="center">3</td><td align="center">0</td><td align="center">3</td></tr><tr style="font-size:12px;font-weight:bold;"><td align="left">Total</td><td align="center">40</td><td align="center">0</td><td align="center">40</td></tr><tr><td colspan="4" style="text-align:center;border-top: 1px solid #000000;border-bottom: 0px;border-left: 0px;border-bottom: 0px;border-right: 0px;"><p style="font-style: normal;font-weight:bold">Partywise Vote Share</p></td></tr><tr><td colspan="4" style="border:0px"><div id="piecharts05"><div style="position: relative;"><div dir="ltr" style="position: relative; width: 700px; height: 400px;"><div aria-label="A chart." style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><svg width="700" height="400" aria-label="A chart." style="overflow: hidden;"><defs id="defs"></defs><rect x="0" y="0" width="700" height="400" stroke="none" stroke-width="0" fill="#ffffff"></rect><g><text text-anchor="start" x="127" y="37.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Please move your mouse over the chart or legend to view more details.</text><text text-anchor="start" x="127" y="54.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Party {Votes%,Vote Count}</text><rect x="127" y="26" width="446" height="30" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><g><rect x="127" y="77" width="149" height="247" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><rect x="127" y="77" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="88.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BJP {32.5%,297588}</text></g><circle cx="133.5" cy="83.5" r="6.5" stroke="none" stroke-width="0" fill="#ff6600"></circle></g><g><rect x="127" y="98" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="109.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">INC {28.4%,259758}</text></g><circle cx="133.5" cy="104.5" r="6.5" stroke="none" stroke-width="0" fill="#aa0078"></circle></g><g><rect x="127" y="119" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="130.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">MAG {11.3%,103290}</text></g><circle cx="133.5" cy="125.5" r="6.5" stroke="none" stroke-width="0" fill="#800080"></circle></g><g><rect x="127" y="140" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="151.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">IND {11.1%,101922}</text></g><circle cx="133.5" cy="146.5" r="6.5" stroke="none" stroke-width="0" fill="#000000"></circle></g><g><rect x="127" y="161" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="172.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">AAAP {6.3%,57420}</text></g><circle cx="133.5" cy="167.5" r="6.5" stroke="none" stroke-width="0" fill="#663300"></circle></g><g><rect x="127" y="182" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="193.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">GFP {3.5%,31900}</text></g><circle cx="133.5" cy="188.5" r="6.5" stroke="none" stroke-width="0" fill="#0099c6"></circle></g><g><rect x="127" y="203" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="214.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NCP {2.3%,20916}</text></g><circle cx="133.5" cy="209.5" r="6.5" stroke="none" stroke-width="0" fill="#21b6a8"></circle></g><g><rect x="127" y="224" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="235.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">GSM {1.2%,10745}</text></g><circle cx="133.5" cy="230.5" r="6.5" stroke="none" stroke-width="0" fill="#66aa00"></circle></g><g><rect x="127" y="245" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="256.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">UGP {0.9%,8563}</text></g><circle cx="133.5" cy="251.5" r="6.5" stroke="none" stroke-width="0" fill="#b82e2e"></circle></g><g><rect x="127" y="266" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="277.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">GSRP {0.6%,5747}</text></g><circle cx="133.5" cy="272.5" r="6.5" stroke="none" stroke-width="0" fill="#316395"></circle></g><path d="M140,324L134,311L127,324Z" stroke="none" stroke-width="0" fill="#cccccc"></path><g><text text-anchor="middle" x="154" y="322.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#0011cc">1/2</text></g><path d="M168,311L181,311L175,324Z" stroke="none" stroke-width="0" fill="#0011cc"></path></g><g><path d="M558,188.7L558,213.29999999999998A123,98.4,0,0,1,544.6634890801384,257.86308185228023L544.6634890801384,233.26308185228027A123,98.4,0,0,0,558,188.7" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,213.29999999999998L544.6634890801384,257.8630818522803L544.6634890801384,233.26308185228027" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,90.29999999999998A123,98.4,0,0,1,544.6634890801384,233.26308185228027L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff6600" stroke-width="1" fill="#ff6600"></path><text text-anchor="start" x="493.0580925632295" y="156.77591257481305" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">32.5%</text></g><g><path d="M435,188.7L435,213.29999999999998L433.2548489344886,114.90990473342617L433.2548489344886,90.30990473342618" stroke="#999999" stroke-width="1" fill="#999999"></path><path d="M435,188.7L433.2548489344886,90.30990473342618A123,98.4,0,0,1,435,90.29999999999998L435,188.7A0,0,0,0,0,435,188.7" stroke="#cccccc" stroke-width="1" fill="#cccccc"></path></g><g><path d="M435,188.7L435,213.29999999999998L424.0590505416626,115.29005560674943L424.0590505416626,90.69005560674943" stroke="#75bf00" stroke-width="1" fill="#75bf00"></path><path d="M435,188.7L424.0590505416626,90.69005560674943A123,98.4,0,0,1,433.2548489344886,90.30990473342618L435,188.7A0,0,0,0,0,435,188.7" stroke="#9cff00" stroke-width="1" fill="#9cff00"></path></g><g><path d="M435,188.7L435,213.29999999999998L419.54829606151884,115.67952724425876L419.54829606151884,91.07952724425876" stroke="#733373" stroke-width="1" fill="#733373"></path><path d="M435,188.7L419.54829606151884,91.07952724425876A123,98.4,0,0,1,424.0590505416626,90.69005560674943L435,188.7A0,0,0,0,0,435,188.7" stroke="#994499" stroke-width="1" fill="#994499"></path></g><g><path d="M435,188.7L435,213.29999999999998L414.75232561155707,116.24238681901278L414.75232561155707,91.64238681901278" stroke="#254a70" stroke-width="1" fill="#254a70"></path><path d="M435,188.7L414.75232561155707,91.64238681901278A123,98.4,0,0,1,419.54829606151884,91.07952724425876L435,188.7A0,0,0,0,0,435,188.7" stroke="#316395" stroke-width="1" fill="#316395"></path></g><g><path d="M435,188.7L435,213.29999999999998L407.6669324245114,117.36034090729311L407.6669324245114,92.7603409072931" stroke="#8a2323" stroke-width="1" fill="#8a2323"></path><path d="M435,188.7L407.6669324245114,92.7603409072931A123,98.4,0,0,1,414.75232561155707,91.64238681901278L435,188.7A0,0,0,0,0,435,188.7" stroke="#b82e2e" stroke-width="1" fill="#b82e2e"></path></g><g><path d="M435,188.7L435,213.29999999999998L398.9122669031315,119.23049201385882L398.9122669031315,94.63049201385881" stroke="#4d8000" stroke-width="1" fill="#4d8000"></path><path d="M435,188.7L398.9122669031315,94.63049201385881A123,98.4,0,0,1,407.6669324245114,92.7603409072931L435,188.7A0,0,0,0,0,435,188.7" stroke="#66aa00" stroke-width="1" fill="#66aa00"></path></g><g><path d="M435,188.7L435,213.29999999999998L382.47435475243094,124.32339510607869L382.47435475243094,99.7233951060787" stroke="#19897e" stroke-width="1" fill="#19897e"></path><path d="M435,188.7L382.47435475243094,99.7233951060787A123,98.4,0,0,1,398.9122669031315,94.63049201385881L435,188.7A0,0,0,0,0,435,188.7" stroke="#21b6a8" stroke-width="1" fill="#21b6a8"></path></g><g><path d="M435,188.7L435,213.29999999999998L359.58889387280067,135.5633571183431L359.58889387280067,110.9633571183431" stroke="#007395" stroke-width="1" fill="#007395"></path><path d="M435,188.7L359.58889387280067,110.9633571183431A123,98.4,0,0,1,382.47435475243094,99.7233951060787L435,188.7A0,0,0,0,0,435,188.7" stroke="#0099c6" stroke-width="1" fill="#0099c6"></path></g><g><path d="M435,188.7L435,213.29999999999998L328.0782505178733,164.6593454801844L328.0782505178733,140.05934548018442" stroke="#4d2600" stroke-width="1" fill="#4d2600"></path><path d="M435,188.7L328.0782505178733,140.05934548018442A123,98.4,0,0,1,359.58889387280067,110.9633571183431L435,188.7A0,0,0,0,0,435,188.7" stroke="#663300" stroke-width="1" fill="#663300"></path></g><g><path d="M314.0294797048751,206.50127131687887L314.0294797048751,231.10127131687887A123,98.4,0,0,1,312,213.29999999999998L312,188.7A123,98.4,0,0,0,314.0294797048751,206.50127131687887" stroke="#000000" stroke-width="1" fill="#000000"></path><path d="M435,188.7L435,213.29999999999998L314.0294797048751,231.10127131687887L314.0294797048751,206.50127131687887" stroke="#000000" stroke-width="1" fill="#000000"></path><path d="M435,188.7L314.0294797048751,206.50127131687887A123,98.4,0,0,1,328.0782505178733,140.05934548018442L435,188.7A0,0,0,0,0,435,188.7" stroke="#000000" stroke-width="1" fill="#000000"></path><text text-anchor="start" x="327.5406163225017" y="181.501641517544" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">11.1%</text></g><g><path d="M357.60587272047314,265.17911741181285L357.60587272047314,289.7791174118129A123,98.4,0,0,1,314.0294797048751,231.10127131687887L314.0294797048751,206.50127131687887A123,98.4,0,0,0,357.60587272047314,265.17911741181285" stroke="#600060" stroke-width="1" fill="#600060"></path><path d="M435,188.7L435,213.29999999999998L357.60587272047314,289.7791174118129L357.60587272047314,265.17911741181285" stroke="#600060" stroke-width="1" fill="#600060"></path><path d="M435,188.7L357.60587272047314,265.17911741181285A123,98.4,0,0,1,314.0294797048751,206.50127131687887L435,188.7A0,0,0,0,0,435,188.7" stroke="#800080" stroke-width="1" fill="#800080"></path><text text-anchor="start" x="339.4270474626545" y="229.03018729929147" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">11.3%</text></g><g><path d="M544.6634890801384,233.26308185228027L544.6634890801384,257.8630818522803A123,98.4,0,0,1,357.60587272047314,289.7791174118128L357.60587272047314,265.17911741181285A123,98.4,0,0,0,544.6634890801384,233.26308185228027" stroke="#80005a" stroke-width="1" fill="#80005a"></path><path d="M435,188.7L544.6634890801384,233.26308185228027A123,98.4,0,0,1,357.60587272047314,265.17911741181285L435,188.7A0,0,0,0,0,435,188.7" stroke="#aa0078" stroke-width="1" fill="#aa0078"></path><text text-anchor="start" x="436.6768074428674" y="266.69700272281005" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">28.4%</text></g><g></g></svg><div aria-label="A tabular representation of the data in the chart." style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;"><table><thead><tr><th>PartyName</th><th>Votes Wise(%)</th></tr></thead><tbody><tr><td>BJP {32.5%,297588}</td><td>297,588</td></tr><tr><td>INC {28.4%,259758}</td><td>259,758</td></tr><tr><td>MAG {11.3%,103290}</td><td>103,290</td></tr><tr><td>IND {11.1%,101922}</td><td>101,922</td></tr><tr><td>AAAP {6.3%,57420}</td><td>57,420</td></tr><tr><td>GFP {3.5%,31900}</td><td>31,900</td></tr><tr><td>NCP {2.3%,20916}</td><td>20,916</td></tr><tr><td>GSM {1.2%,10745}</td><td>10,745</td></tr><tr><td>UGP {0.9%,8563}</td><td>8,563</td></tr><tr><td>GSRP {0.6%,5747}</td><td>5,747</td></tr><tr><td>GVP {0.6%,5379}</td><td>5,379</td></tr><tr><td>SHS {0.1%,792}</td><td>792</td></tr><tr><td>GoPrP {0.0%,451}</td><td>451</td></tr><tr><td>BMUP {0.0%,278}</td><td>278</td></tr><tr><td>CPI {0.0%,256}</td><td>256</td></tr><tr><td>SaJPCs {0.0%,133}</td><td>133</td></tr><tr><td>NGRF {0.0%,115}</td><td>115</td></tr><tr><td>APoI {0.0%,44}</td><td>44</td></tr><tr><td>NOTA {1.2%,10919}</td><td>10,919</td></tr></tbody></table></div></div></div><div aria-hidden="true" style="display: none; position: absolute; top: 410px; left: 710px; white-space: nowrap; font-family: Arial; font-size: 13px;">0/0</div><div></div></div></div></td></tr></tbody></table><br> <table border="1" style="margin: auto; width: 100%; font-family: Verdana; border: solid 1px black;font-weight:lighter"> <tbody><tr> <td colspan="4" align="center" style="font-size: 15px; font-weight: bold; background-color: #BFDAFB;"> Manipur&nbsp;<br>Result Status <div id="divStatusHR" style="font-size: 10px;"></div></td> </tr> <tr style="height: 20px; background-color: #BFDAFB; color:Black;"><td colspan="4" align="center"><b><div style="font-size: 10px; font-weight: bold" id="divStatus"> Status Known For 60 out of 60 Constituencies</div></b></td></tr><tr style="height: 20px; background-color: #BFDAFB; color:Black;"> <th align="left">Party</th> <th>Won</th><th>Leading</th><th>Total</th></tr><tr style="font-size:12px;"><td align="left">All India Trinamool Congress</td><td align="center">1</td><td align="center">0</td><td align="center">1</td></tr><tr style="font-size:12px;"><td align="left">Bharatiya Janata Party</td><td align="center">21</td><td align="center">0</td><td align="center">21</td></tr><tr style="font-size:12px;"><td align="left">Indian National Congress</td><td align="center">28</td><td align="center">0</td><td align="center">28</td></tr><tr style="font-size:12px;"><td align="left">Naga Peoples Front</td><td align="center">4</td><td align="center">0</td><td align="center">4</td></tr><tr style="font-size:12px;"><td align="left">Lok Jan Shakti Party</td><td align="center">1</td><td align="center">0</td><td align="center">1</td></tr><tr style="font-size:12px;"><td align="left">National People's Party</td><td align="center">4</td><td align="center">0</td><td align="center">4</td></tr><tr style="font-size:12px;"><td align="left">Independent</td><td align="center">1</td><td align="center">0</td><td align="center">1</td></tr><tr style="font-size:12px;font-weight:bold;"><td align="left">Total</td><td align="center">60</td><td align="center">0</td><td align="center">60</td></tr><tr><td colspan="4" style="text-align:center;border-top: 1px solid #000000;border-bottom: 0px;border-left: 0px;border-bottom: 0px;border-right: 0px;"><p style="font-style: normal;font-weight:bold">Partywise Vote Share</p></td></tr><tr><td colspan="4" style="border:0px"><div id="piecharts14"><div style="position: relative;"><div dir="ltr" style="position: relative; width: 700px; height: 400px;"><div aria-label="A chart." style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><svg width="700" height="400" aria-label="A chart." style="overflow: hidden;"><defs id="defs"></defs><rect x="0" y="0" width="700" height="400" stroke="none" stroke-width="0" fill="#ffffff"></rect><g><text text-anchor="start" x="127" y="37.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Please move your mouse over the chart or legend to view more details.</text><text text-anchor="start" x="127" y="54.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Party {Votes%,Vote Count}</text><rect x="127" y="26" width="446" height="30" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><g><rect x="127" y="77" width="149" height="247" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><rect x="127" y="77" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="88.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BJP {36.3%,601527}</text></g><circle cx="133.5" cy="83.5" r="6.5" stroke="none" stroke-width="0" fill="#ff6600"></circle></g><g><rect x="127" y="98" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="109.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">INC {35.1%,581869}</text></g><circle cx="133.5" cy="104.5" r="6.5" stroke="none" stroke-width="0" fill="#aa0078"></circle></g><g><rect x="127" y="119" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="130.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NPF {7.2%,118850}</text></g><circle cx="133.5" cy="125.5" r="6.5" stroke="none" stroke-width="0" fill="#6d929b"></circle></g><g><rect x="127" y="140" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="151.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">IND {5.1%,83834}</text></g><circle cx="133.5" cy="146.5" r="6.5" stroke="none" stroke-width="0" fill="#000000"></circle></g><g><rect x="127" y="161" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="172.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NPEP {5.1%,83744}</text></g><circle cx="133.5" cy="167.5" r="6.5" stroke="none" stroke-width="0" fill="#dabd95"></circle></g><g><rect x="127" y="182" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="193.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NEINDP {3.4%,56185}</text></g><circle cx="133.5" cy="188.5" r="6.5" stroke="none" stroke-width="0" fill="#0099c6"></circle></g><g><rect x="127" y="203" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="214.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">LJP {2.5%,42263}</text></g><circle cx="133.5" cy="209.5" r="6.5" stroke="none" stroke-width="0" fill="#421c52"></circle></g><g><rect x="127" y="224" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="235.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">AITC {1.4%,23384}</text></g><circle cx="133.5" cy="230.5" r="6.5" stroke="none" stroke-width="0" fill="#ffff99"></circle></g><g><rect x="127" y="245" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="256.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">MNDF {1.2%,20120}</text></g><circle cx="133.5" cy="251.5" r="6.5" stroke="none" stroke-width="0" fill="#b82e2e"></circle></g><g><rect x="127" y="266" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="277.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NCP {1.0%,15767}</text></g><circle cx="133.5" cy="272.5" r="6.5" stroke="none" stroke-width="0" fill="#21b6a8"></circle></g><path d="M140,324L134,311L127,324Z" stroke="none" stroke-width="0" fill="#cccccc"></path><g><text text-anchor="middle" x="154" y="322.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#0011cc">1/2</text></g><path d="M168,311L181,311L175,324Z" stroke="none" stroke-width="0" fill="#0011cc"></path></g><g><path d="M558,188.7L558,213.29999999999998A123,98.4,0,0,1,528.3531337388195,277.37092280848566L528.3531337388195,252.7709228084857A123,98.4,0,0,0,558,188.7" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,213.29999999999998L528.3531337388195,277.3709228084857L528.3531337388195,252.7709228084857" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,90.29999999999998A123,98.4,0,0,1,528.3531337388195,252.7709228084857L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff6600" stroke-width="1" fill="#ff6600"></path><text text-anchor="start" x="497.996418288054" y="164.1664813128768" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">36.3%</text></g><g><path d="M435,188.7L435,213.29999999999998L434.2074894574212,114.90204253489028L434.2074894574212,90.30204253489028" stroke="#999999" stroke-width="1" fill="#999999"></path><path d="M435,188.7L434.2074894574212,90.30204253489028A123,98.4,0,0,1,435,90.29999999999998L435,188.7A0,0,0,0,0,435,188.7" stroke="#cccccc" stroke-width="1" fill="#cccccc"></path></g><g><path d="M435,188.7L435,213.29999999999998L429.98429847001006,114.98184627229963L429.98429847001006,90.38184627229964" stroke="#75bf00" stroke-width="1" fill="#75bf00"></path><path d="M435,188.7L429.98429847001006,90.38184627229964A123,98.4,0,0,1,434.2074894574211,90.30204253489028L435,188.7A0,0,0,0,0,435,188.7" stroke="#9cff00" stroke-width="1" fill="#9cff00"></path></g><g><path d="M435,188.7L435,213.29999999999998L428.56677419935176,115.03468207088198L428.56677419935176,90.43468207088198" stroke="#bf929b" stroke-width="1" fill="#bf929b"></path><path d="M435,188.7L428.56677419935176,90.43468207088198A123,98.4,0,0,1,429.98429847001006,90.38184627229964L435,188.7A0,0,0,0,0,435,188.7" stroke="#ffc3ce" stroke-width="1" fill="#ffc3ce"></path></g><g><path d="M435,188.7L435,213.29999999999998L426.62353345898924,115.1284446629071L426.62353345898924,90.5284446629071" stroke="#1a8073" stroke-width="1" fill="#1a8073"></path><path d="M435,188.7L426.62353345898924,90.5284446629071A123,98.4,0,0,1,428.5667741993518,90.43468207088198L435,188.7A0,0,0,0,0,435,188.7" stroke="#22aa99" stroke-width="1" fill="#22aa99"></path></g><g><path d="M435,188.7L435,213.29999999999998L420.9366247275743,115.54529809463875L420.9366247275743,90.94529809463876" stroke="#bf0000" stroke-width="1" fill="#bf0000"></path><path d="M435,188.7L420.9366247275743,90.94529809463876A123,98.4,0,0,1,426.62353345898924,90.5284446629071L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff0000" stroke-width="1" fill="#ff0000"></path></g><g><path d="M435,188.7L435,213.29999999999998L413.66392362553137,116.39172387889968L413.66392362553137,91.79172387889967" stroke="#19897e" stroke-width="1" fill="#19897e"></path><path d="M435,188.7L413.66392362553137,91.79172387889967A123,98.4,0,0,1,420.9366247275743,90.94529809463876L435,188.7A0,0,0,0,0,435,188.7" stroke="#21b6a8" stroke-width="1" fill="#21b6a8"></path></g><g><path d="M435,188.7L435,213.29999999999998L404.4974140550214,117.9737232426007L404.4974140550214,93.37372324260069" stroke="#8a2323" stroke-width="1" fill="#8a2323"></path><path d="M435,188.7L404.4974140550214,93.37372324260069A123,98.4,0,0,1,413.66392362553137,91.79172387889967L435,188.7A0,0,0,0,0,435,188.7" stroke="#b82e2e" stroke-width="1" fill="#b82e2e"></path></g><g><path d="M435,188.7L435,213.29999999999998L394.0701876378185,120.50775735872188L394.0701876378185,95.90775735872187" stroke="#bfbf73" stroke-width="1" fill="#bfbf73"></path><path d="M435,188.7L394.0701876378185,95.90775735872187A123,98.4,0,0,1,404.4974140550214,93.37372324260069L435,188.7A0,0,0,0,0,435,188.7" stroke="#ffff99" stroke-width="1" fill="#ffff99"></path></g><g><path d="M435,188.7L435,213.29999999999998L376.0939274955932,126.91824406654163L376.0939274955932,102.31824406654164" stroke="#32153e" stroke-width="1" fill="#32153e"></path><path d="M435,188.7L376.0939274955932,102.31824406654164A123,98.4,0,0,1,394.0701876378185,95.90775735872187L435,188.7A0,0,0,0,0,435,188.7" stroke="#421c52" stroke-width="1" fill="#421c52"></path></g><g><path d="M435,188.7L435,213.29999999999998L354.60431147893354,138.82892312432196L354.60431147893354,114.22892312432197" stroke="#007395" stroke-width="1" fill="#007395"></path><path d="M435,188.7L354.60431147893354,114.22892312432197A123,98.4,0,0,1,376.0939274955932,102.31824406654164L435,188.7A0,0,0,0,0,435,188.7" stroke="#0099c6" stroke-width="1" fill="#0099c6"></path></g><g><path d="M435,188.7L435,213.29999999999998L329.56723752153306,162.62183052297695L329.56723752153306,138.02183052297696" stroke="#a48e70" stroke-width="1" fill="#a48e70"></path><path d="M435,188.7L329.56723752153306,138.02183052297696A123,98.4,0,0,1,354.60431147893337,114.22892312432208L435,188.7A0,0,0,0,0,435,188.7" stroke="#dabd95" stroke-width="1" fill="#dabd95"></path></g><g><path d="M435,188.7L435,213.29999999999998L315.05361980337454,191.51022804742985L315.05361980337454,166.91022804742985" stroke="#000000" stroke-width="1" fill="#000000"></path><path d="M435,188.7L315.05361980337454,166.91022804742985A123,98.4,0,0,1,329.56723752153306,138.02183052297696L435,188.7A0,0,0,0,0,435,188.7" stroke="#000000" stroke-width="1" fill="#000000"></path></g><g><path d="M315.16002306337623,210.86129855876834L315.16002306337623,235.46129855876833A123,98.4,0,0,1,312,213.29999999999998L312,188.7A123,98.4,0,0,0,315.16002306337623,210.86129855876834" stroke="#526e74" stroke-width="1" fill="#526e74"></path><path d="M435,188.7L435,213.29999999999998L315.16002306337623,235.46129855876833L315.16002306337623,210.86129855876834" stroke="#526e74" stroke-width="1" fill="#526e74"></path><path d="M435,188.7L315.16002306337623,210.86129855876834A123,98.4,0,0,1,315.05361980337454,166.91022804742985L435,188.7A0,0,0,0,0,435,188.7" stroke="#6d929b" stroke-width="1" fill="#6d929b"></path><text text-anchor="start" x="325.33323296397515" y="193.3923436817833" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">7.2%</text></g><g><path d="M528.3531337388195,252.7709228084857L528.3531337388195,277.3709228084857A123,98.4,0,0,1,315.16002306337623,235.46129855876825L315.16002306337623,210.86129855876825A123,98.4,0,0,0,528.3531337388195,252.7709228084857" stroke="#80005a" stroke-width="1" fill="#80005a"></path><path d="M435,188.7L528.3531337388195,252.7709228084857A123,98.4,0,0,1,315.16002306337623,210.86129855876825L435,188.7A0,0,0,0,0,435,188.7" stroke="#aa0078" stroke-width="1" fill="#aa0078"></path><text text-anchor="start" x="393.5226542473794" y="265.84629072299873" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">35.1%</text></g><g></g></svg><div aria-label="A tabular representation of the data in the chart." style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;"><table><thead><tr><th>PartyName</th><th>Votes Wise(%)</th></tr></thead><tbody><tr><td>BJP {36.3%,601527}</td><td>601,527</td></tr><tr><td>INC {35.1%,581869}</td><td>581,869</td></tr><tr><td>NPF {7.2%,118850}</td><td>118,850</td></tr><tr><td>IND {5.1%,83834}</td><td>83,834</td></tr><tr><td>NPEP {5.1%,83744}</td><td>83,744</td></tr><tr><td>NEINDP {3.4%,56185}</td><td>56,185</td></tr><tr><td>LJP {2.5%,42263}</td><td>42,263</td></tr><tr><td>AITC {1.4%,23384}</td><td>23,384</td></tr><tr><td>MNDF {1.2%,20120}</td><td>20,120</td></tr><tr><td>NCP {1.0%,15767}</td><td>15,767</td></tr><tr><td>CPI {0.7%,12251}</td><td>12,251</td></tr><tr><td>RPI(A) {0.3%,4176}</td><td>4,176</td></tr><tr><td>PDA {0.2%,3044}</td><td>3,044</td></tr><tr><td>PRJA {0.0%,696}</td><td>696</td></tr><tr><td>MPEP {0.0%,531}</td><td>531</td></tr><tr><td>CPM {0.0%,214}</td><td>214</td></tr><tr><td>AIFB {0.0%,146}</td><td>146</td></tr><tr><td>MDPF {0.0%,113}</td><td>113</td></tr><tr><td>NOTA {0.5%,9062}</td><td>9,062</td></tr></tbody></table></div></div></div><div aria-hidden="true" style="display: none; position: absolute; top: 410px; left: 710px; white-space: nowrap; font-family: Arial; font-size: 13px;">0/0</div><div></div></div></div></td></tr></tbody></table><br> <table border="1" style="margin: auto; width: 100%; font-family: Verdana; border: solid 1px black;font-weight:lighter"> <tbody><tr> <td colspan="4" align="center" style="font-size: 15px; font-weight: bold; background-color: #BFDAFB;"> Punjab&nbsp;<br>Result Status <div id="divStatusHR" style="font-size: 10px;"></div></td> </tr> <tr style="height: 20px; background-color: #BFDAFB; color:Black;"><td colspan="4" align="center"><b><div style="font-size: 10px; font-weight: bold" id="divStatus"> Status Known For 117 out of 117 Constituencies</div></b></td></tr><tr style="height: 20px; background-color: #BFDAFB; color:Black;"> <th align="left">Party</th> <th>Won</th><th>Leading</th><th>Total</th></tr><tr style="font-size:12px;"><td align="left">Bharatiya Janata Party</td><td align="center">3</td><td align="center">0</td><td align="center">3</td></tr><tr style="font-size:12px;"><td align="left">Indian National Congress</td><td align="center">77</td><td align="center">0</td><td align="center">77</td></tr><tr style="font-size:12px;"><td align="left">Aam Aadmi Party</td><td align="center">20</td><td align="center">0</td><td align="center">20</td></tr><tr style="font-size:12px;"><td align="left">Shiromani Akali Dal</td><td align="center">15</td><td align="center">0</td><td align="center">15</td></tr><tr style="font-size:12px;"><td align="left">Lok Insaaf Party</td><td align="center">2</td><td align="center">0</td><td align="center">2</td></tr><tr style="font-size:12px;font-weight:bold;"><td align="left">Total</td><td align="center">117</td><td align="center">0</td><td align="center">117</td></tr><tr><td colspan="4" style="text-align:center;border-top: 1px solid #000000;border-bottom: 0px;border-left: 0px;border-bottom: 0px;border-right: 0px;"><p style="font-style: normal;font-weight:bold">Partywise Vote Share</p></td></tr><tr><td colspan="4" style="border:0px"><div id="piecharts19"><div style="position: relative;"><div dir="ltr" style="position: relative; width: 700px; height: 400px;"><div aria-label="A chart." style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><svg width="700" height="400" aria-label="A chart." style="overflow: hidden;"><defs id="defs"></defs><rect x="0" y="0" width="700" height="400" stroke="none" stroke-width="0" fill="#ffffff"></rect><g><text text-anchor="start" x="127" y="37.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Please move your mouse over the chart or legend to view more details.</text><text text-anchor="start" x="127" y="54.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Party {Votes%,Vote Count}</text><rect x="127" y="26" width="446" height="30" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><g><rect x="127" y="77" width="149" height="247" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><rect x="127" y="77" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="88.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">INC {38.5%,5945899}</text></g><circle cx="133.5" cy="83.5" r="6.5" stroke="none" stroke-width="0" fill="#aa0078"></circle></g><g><rect x="127" y="98" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="109.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">SAD {25.2%,3898161}</text></g><circle cx="133.5" cy="104.5" r="6.5" stroke="none" stroke-width="0" fill="#cccc99"></circle></g><g><rect x="127" y="119" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="130.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">AAAP {23.7%,3662…</text><rect x="145" y="119" width="131" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><circle cx="133.5" cy="125.5" r="6.5" stroke="none" stroke-width="0" fill="#663300"></circle></g><g><rect x="127" y="140" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="151.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BJP {5.4%,833092}</text></g><circle cx="133.5" cy="146.5" r="6.5" stroke="none" stroke-width="0" fill="#ff6600"></circle></g><g><rect x="127" y="161" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="172.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">IND {2.1%,323243}</text></g><circle cx="133.5" cy="167.5" r="6.5" stroke="none" stroke-width="0" fill="#000000"></circle></g><g><rect x="127" y="182" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="193.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BSP {1.5%,234400}</text></g><circle cx="133.5" cy="188.5" r="6.5" stroke="none" stroke-width="0" fill="#000078"></circle></g><g><rect x="127" y="203" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="214.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">LIP {1.2%,189228}</text></g><circle cx="133.5" cy="209.5" r="6.5" stroke="none" stroke-width="0" fill="#dd4477"></circle></g><g><rect x="127" y="224" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="235.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">SAD(M) {0.3%,49260}</text></g><circle cx="133.5" cy="230.5" r="6.5" stroke="none" stroke-width="0" fill="#66aa00"></circle></g><g><rect x="127" y="245" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="256.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">APPA {0.2%,37476}</text></g><circle cx="133.5" cy="251.5" r="6.5" stroke="none" stroke-width="0" fill="#b82e2e"></circle></g><g><rect x="127" y="266" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="277.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">RMPOI {0.2%,37243}</text></g><circle cx="133.5" cy="272.5" r="6.5" stroke="none" stroke-width="0" fill="#316395"></circle></g><path d="M140,324L134,311L127,324Z" stroke="none" stroke-width="0" fill="#cccccc"></path><g><text text-anchor="middle" x="154" y="322.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#0011cc">1/2</text></g><path d="M168,311L181,311L175,324Z" stroke="none" stroke-width="0" fill="#0011cc"></path></g><g><path d="M558,188.7L558,213.29999999999998A123,98.4,0,0,1,516.3351809491592,287.11528661177994L516.3351809491592,262.51528661177997A123,98.4,0,0,0,558,188.7" stroke="#80005a" stroke-width="1" fill="#80005a"></path><path d="M435,188.7L435,213.29999999999998L516.3351809491592,287.11528661178L516.3351809491592,262.51528661177997" stroke="#80005a" stroke-width="1" fill="#80005a"></path><path d="M435,188.7L435,90.29999999999998A123,98.4,0,0,1,516.3351809491592,262.51528661177997L435,188.7A0,0,0,0,0,435,188.7" stroke="#aa0078" stroke-width="1" fill="#aa0078"></path><text text-anchor="start" x="500.4359341136137" y="168.6287646818968" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">38.5%</text></g><g><path d="M435,188.7L435,213.29999999999998L430.48446658047317,114.96633143688896L430.48446658047317,90.36633143688897" stroke="#999999" stroke-width="1" fill="#999999"></path><path d="M435,188.7L430.48446658047317,90.36633143688897A123,98.4,0,0,1,435,90.29999999999998L435,188.7A0,0,0,0,0,435,188.7" stroke="#cccccc" stroke-width="1" fill="#cccccc"></path></g><g><path d="M435,188.7L435,213.29999999999998L425.066107733057,115.2214428020354L425.066107733057,90.62144280203539" stroke="#75bf00" stroke-width="1" fill="#75bf00"></path><path d="M435,188.7L425.066107733057,90.62144280203539A123,98.4,0,0,1,430.48446658047317,90.36633143688897L435,188.7A0,0,0,0,0,435,188.7" stroke="#9cff00" stroke-width="1" fill="#9cff00"></path></g><g><path d="M435,188.7L435,213.29999999999998L423.3675340576231,115.34103475891732L423.3675340576231,90.74103475891731" stroke="#bf0000" stroke-width="1" fill="#bf0000"></path><path d="M435,188.7L423.3675340576231,90.74103475891731A123,98.4,0,0,1,425.066107733057,90.62144280203539L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff0000" stroke-width="1" fill="#ff0000"></path></g><g><path d="M435,188.7L435,213.29999999999998L421.5135557827415,115.49328179352986L421.5135557827415,90.89328179352985" stroke="#254a70" stroke-width="1" fill="#254a70"></path><path d="M435,188.7L421.5135557827415,90.89328179352985A123,98.4,0,0,1,423.3675340576231,90.74103475891731L435,188.7A0,0,0,0,0,435,188.7" stroke="#316395" stroke-width="1" fill="#316395"></path></g><g><path d="M435,188.7L435,213.29999999999998L419.6511049844596,115.66914775567494L419.6511049844596,91.06914775567495" stroke="#8a2323" stroke-width="1" fill="#8a2323"></path><path d="M435,188.7L419.6511049844596,91.06914775567495A123,98.4,0,0,1,421.5135557827415,90.89328179352985L435,188.7A0,0,0,0,0,435,188.7" stroke="#b82e2e" stroke-width="1" fill="#b82e2e"></path></g><g><path d="M435,188.7L435,213.29999999999998L417.208519299725,115.93482934193193L417.208519299725,91.33482934193194" stroke="#4d8000" stroke-width="1" fill="#4d8000"></path><path d="M435,188.7L417.208519299725,91.33482934193194A123,98.4,0,0,1,419.6511049844597,91.06914775567493L435,188.7A0,0,0,0,0,435,188.7" stroke="#66aa00" stroke-width="1" fill="#66aa00"></path></g><g><path d="M435,188.7L435,213.29999999999998L407.90059005836514,117.31792840471849L407.90059005836514,92.71792840471849" stroke="#a63359" stroke-width="1" fill="#a63359"></path><path d="M435,188.7L407.90059005836514,92.71792840471849A123,98.4,0,0,1,417.208519299725,91.33482934193194L435,188.7A0,0,0,0,0,435,188.7" stroke="#dd4477" stroke-width="1" fill="#dd4477"></path></g><g><path d="M435,188.7L435,213.29999999999998L396.59930163486007,119.8184121142323L396.59930163486007,95.21841211423231" stroke="#00005a" stroke-width="1" fill="#00005a"></path><path d="M435,188.7L396.59930163486007,95.21841211423231A123,98.4,0,0,1,407.90059005836514,92.71792840471849L435,188.7A0,0,0,0,0,435,188.7" stroke="#000078" stroke-width="1" fill="#000078"></path></g><g><path d="M435,188.7L435,213.29999999999998L381.60776126357945,124.65411989643079L381.60776126357945,100.05411989643078" stroke="#000000" stroke-width="1" fill="#000000"></path><path d="M435,188.7L381.60776126357945,100.05411989643078A123,98.4,0,0,1,396.59930163486007,95.21841211423231L435,188.7A0,0,0,0,0,435,188.7" stroke="#000000" stroke-width="1" fill="#000000"></path></g><g><path d="M435,188.7L435,213.29999999999998L347.8029497426741,143.8994839146733L347.8029497426741,119.29948391467332" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L347.8029497426741,119.29948391467332A123,98.4,0,0,1,381.60776126357945,100.05411989643078L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff6600" stroke-width="1" fill="#ff6600"></path></g><g><path d="M341.507437755364,252.64067653033575L341.507437755364,277.24067653033575A123,98.4,0,0,1,312,213.29999999999998L312,188.7A123,98.4,0,0,0,341.507437755364,252.64067653033575" stroke="#4d2600" stroke-width="1" fill="#4d2600"></path><path d="M435,188.7L435,213.29999999999998L341.507437755364,277.24067653033575L341.507437755364,252.64067653033575" stroke="#4d2600" stroke-width="1" fill="#4d2600"></path><path d="M435,188.7L341.507437755364,252.64067653033575A123,98.4,0,0,1,347.80294974267423,119.29948391467323L435,188.7A0,0,0,0,0,435,188.7" stroke="#663300" stroke-width="1" fill="#663300"></path><text text-anchor="start" x="325.6352158096881" y="190.58548915639417" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">23.7%</text></g><g><path d="M516.3351809491592,262.51528661177997L516.3351809491592,287.11528661178A123,98.4,0,0,1,341.50743775536404,277.2406765303358L341.50743775536404,252.64067653033578A123,98.4,0,0,0,516.3351809491592,262.51528661177997" stroke="#999973" stroke-width="1" fill="#999973"></path><path d="M435,188.7L516.3351809491592,262.51528661177997A123,98.4,0,0,1,341.50743775536404,252.64067653033578L435,188.7A0,0,0,0,0,435,188.7" stroke="#cccc99" stroke-width="1" fill="#cccc99"></path><text text-anchor="start" x="409.53580049484674" y="269.83024866870056" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">25.2%</text></g><g></g></svg><div aria-label="A tabular representation of the data in the chart." style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;"><table><thead><tr><th>PartyName</th><th>Votes Wise(%)</th></tr></thead><tbody><tr><td>INC {38.5%,5945899}</td><td>5,945,899</td></tr><tr><td>SAD {25.2%,3898161}</td><td>3,898,161</td></tr><tr><td>AAAP {23.7%,3662665}</td><td>3,662,665</td></tr><tr><td>BJP {5.4%,833092}</td><td>833,092</td></tr><tr><td>IND {2.1%,323243}</td><td>323,243</td></tr><tr><td>BSP {1.5%,234400}</td><td>234,400</td></tr><tr><td>LIP {1.2%,189228}</td><td>189,228</td></tr><tr><td>SAD(M) {0.3%,49260}</td><td>49,260</td></tr><tr><td>APPA {0.2%,37476}</td><td>37,476</td></tr><tr><td>RMPOI {0.2%,37243}</td><td>37,243</td></tr><tr><td>CPI {0.2%,34074}</td><td>34,074</td></tr><tr><td>CPM {0.1%,10901}</td><td>10,901</td></tr><tr><td>AITC {0.1%,10587}</td><td>10,587</td></tr><tr><td>DEMSWP {0.1%,9931}</td><td>9,931</td></tr><tr><td>CPI(ML)(L) {0.1%,9616}</td><td>9,616</td></tr><tr><td>SHS {0.0%,6779}</td><td>6,779</td></tr><tr><td>BSP(A) {0.0%,6359}</td><td>6,359</td></tr><tr><td>HSS {0.0%,4033}</td><td>4,033</td></tr><tr><td>BMUP {0.0%,2940}</td><td>2,940</td></tr><tr><td>DPIN {0.0%,2920}</td><td>2,920</td></tr><tr><td>BDPty {0.0%,2240}</td><td>2,240</td></tr><tr><td>JJJKP {0.0%,1979}</td><td>1,979</td></tr><tr><td>NAIP {0.0%,1975}</td><td>1,975</td></tr><tr><td>SAKAP {0.0%,1940}</td><td>1,940</td></tr><tr><td>PDemP {0.0%,1663}</td><td>1,663</td></tr><tr><td>HINUP {0.0%,1503}</td><td>1,503</td></tr><tr><td>NCP {0.0%,1395}</td><td>1,395</td></tr><tr><td>IKL {0.0%,1003}</td><td>1,003</td></tr><tr><td>JKNPP {0.0%,981}</td><td>981</td></tr><tr><td>SLDP {0.0%,892}</td><td>892</td></tr><tr><td>SWAP {0.0%,856}</td><td>856</td></tr><tr><td>DPI {0.0%,847}</td><td>847</td></tr><tr><td>BRPP {0.0%,822}</td><td>822</td></tr><tr><td>SAPUNPA {0.0%,803}</td><td>803</td></tr><tr><td>IVD {0.0%,796}</td><td>796</td></tr><tr><td>RPI(A) {0.0%,753}</td><td>753</td></tr><tr><td>ABSD {0.0%,750}</td><td>750</td></tr><tr><td>PLP {0.0%,730}</td><td>730</td></tr><tr><td>IUML {0.0%,524}</td><td>524</td></tr><tr><td>RKSP {0.0%,509}</td><td>509</td></tr><tr><td>DBSP {0.0%,446}</td><td>446</td></tr><tr><td>BRP {0.0%,399}</td><td>399</td></tr><tr><td>CPIM {0.0%,376}</td><td>376</td></tr><tr><td>OP {0.0%,372}</td><td>372</td></tr><tr><td>RSP {0.0%,354}</td><td>354</td></tr><tr><td>KYP {0.0%,338}</td><td>338</td></tr><tr><td>BGTD {0.0%,245}</td><td>245</td></tr><tr><td>BASD {0.0%,179}</td><td>179</td></tr><tr><td>DCP {0.0%,177}</td><td>177</td></tr><tr><td>HND {0.0%,163}</td><td>163</td></tr><tr><td>LPSP {0.0%,92}</td><td>92</td></tr><tr><td>BIRK {0.0%,86}</td><td>86</td></tr><tr><td>NOTA {0.7%,108471}</td><td>108,471</td></tr></tbody></table></div></div></div><div aria-hidden="true" style="display: none; position: absolute; top: 410px; left: 710px; white-space: nowrap; font-family: Arial; font-size: 13px;">0/0</div><div></div></div></div></td></tr></tbody></table><br> <table border="1" style="margin: auto; width: 100%; font-family: Verdana; border: solid 1px black;font-weight:lighter"> <tbody><tr> <td colspan="4" align="center" style="font-size: 15px; font-weight: bold; background-color: #BFDAFB;"> Uttar Pradesh&nbsp;<br>Result Status <div id="divStatusHR" style="font-size: 10px;"></div></td> </tr> <tr style="height: 20px; background-color: #BFDAFB; color:Black;"><td colspan="4" align="center"><b><div style="font-size: 10px; font-weight: bold" id="divStatus"> Status Known For 403 out of 403 Constituencies</div></b></td></tr><tr style="height: 20px; background-color: #BFDAFB; color:Black;"> <th align="left">Party</th> <th>Won</th><th>Leading</th><th>Total</th></tr><tr style="font-size:12px;"><td align="left">Bahujan Samaj Party</td><td align="center">19</td><td align="center">0</td><td align="center">19</td></tr><tr style="font-size:12px;"><td align="left">Bharatiya Janata Party</td><td align="center">312</td><td align="center">0</td><td align="center">312</td></tr><tr style="font-size:12px;"><td align="left">Indian National Congress</td><td align="center">7</td><td align="center">0</td><td align="center">7</td></tr><tr style="font-size:12px;"><td align="left">Rashtriya Lok Dal</td><td align="center">1</td><td align="center">0</td><td align="center">1</td></tr><tr style="font-size:12px;"><td align="left">Samajwadi Party</td><td align="center">47</td><td align="center">0</td><td align="center">47</td></tr><tr style="font-size:12px;"><td align="left">Apna Dal (Soneylal)</td><td align="center">9</td><td align="center">0</td><td align="center">9</td></tr><tr style="font-size:12px;"><td align="left">Nirbal Indian Shoshit Hamara Aam Dal</td><td align="center">1</td><td align="center">0</td><td align="center">1</td></tr><tr style="font-size:12px;"><td align="left">Suheldev Bhartiya Samaj Party</td><td align="center">4</td><td align="center">0</td><td align="center">4</td></tr><tr style="font-size:12px;"><td align="left">Independent</td><td align="center">3</td><td align="center">0</td><td align="center">3</td></tr><tr style="font-size:12px;font-weight:bold;"><td align="left">Total</td><td align="center">403</td><td align="center">0</td><td align="center">403</td></tr><tr><td colspan="4" style="text-align:center;border-top: 1px solid #000000;border-bottom: 0px;border-left: 0px;border-bottom: 0px;border-right: 0px;"><p style="font-style: normal;font-weight:bold">Partywise Vote Share</p></td></tr><tr><td colspan="4" style="border:0px"><div id="piecharts24"><div style="position: relative;"><div dir="ltr" style="position: relative; width: 700px; height: 400px;"><div aria-label="A chart." style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><svg width="700" height="400" aria-label="A chart." style="overflow: hidden;"><defs id="defs"></defs><rect x="0" y="0" width="700" height="400" stroke="none" stroke-width="0" fill="#ffffff"></rect><g><text text-anchor="start" x="127" y="37.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Please move your mouse over the chart or legend to view more details.</text><text text-anchor="start" x="127" y="54.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Party {Votes%,Vote Count}</text><rect x="127" y="26" width="446" height="30" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><g><rect x="127" y="77" width="149" height="247" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><rect x="127" y="77" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="88.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BJP {39.7%,344030…</text><rect x="145" y="77" width="131" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><circle cx="133.5" cy="83.5" r="6.5" stroke="none" stroke-width="0" fill="#ff6600"></circle></g><g><rect x="127" y="98" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="109.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BSP {22.2%,192813…</text><rect x="145" y="98" width="131" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><circle cx="133.5" cy="104.5" r="6.5" stroke="none" stroke-width="0" fill="#000078"></circle></g><g><rect x="127" y="119" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="130.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">SP {21.8%,18923689}</text></g><circle cx="133.5" cy="125.5" r="6.5" stroke="none" stroke-width="0" fill="#455268"></circle></g><g><rect x="127" y="140" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="151.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">INC {6.2%,5416324}</text></g><circle cx="133.5" cy="146.5" r="6.5" stroke="none" stroke-width="0" fill="#aa0078"></circle></g><g><rect x="127" y="161" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="172.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">IND {2.6%,2229448}</text></g><circle cx="133.5" cy="167.5" r="6.5" stroke="none" stroke-width="0" fill="#000000"></circle></g><g><rect x="127" y="182" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="193.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">RLD {1.8%,1545810}</text></g><circle cx="133.5" cy="188.5" r="6.5" stroke="none" stroke-width="0" fill="#6600cc"></circle></g><g><rect x="127" y="203" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="214.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">ADAL {1.0%,851336}</text></g><circle cx="133.5" cy="209.5" r="6.5" stroke="none" stroke-width="0" fill="#dd4477"></circle></g><g><rect x="127" y="224" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="235.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">SBSP {0.7%,607911}</text></g><circle cx="133.5" cy="230.5" r="6.5" stroke="none" stroke-width="0" fill="#66aa00"></circle></g><g><rect x="127" y="245" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="256.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NINSHAD {0.6%,54…</text><rect x="145" y="245" width="131" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><circle cx="133.5" cy="251.5" r="6.5" stroke="none" stroke-width="0" fill="#b82e2e"></circle></g><g><rect x="127" y="266" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="277.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">PECP {0.3%,227998}</text></g><circle cx="133.5" cy="272.5" r="6.5" stroke="none" stroke-width="0" fill="#316395"></circle></g><path d="M140,324L134,311L127,324Z" stroke="none" stroke-width="0" fill="#cccccc"></path><g><text text-anchor="middle" x="154" y="322.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#0011cc">1/2</text></g><path d="M168,311L181,311L175,324Z" stroke="none" stroke-width="0" fill="#0011cc"></path></g><g><path d="M558,188.7L558,213.29999999999998A123,98.4,0,0,1,509.3615117372144,291.68108168544194L509.3615117372144,267.0810816854419A123,98.4,0,0,0,558,188.7" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,213.29999999999998L509.3615117372144,291.68108168544194L509.3615117372144,267.0810816854419" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,90.29999999999998A123,98.4,0,0,1,509.3615117372144,267.0810816854419L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff6600" stroke-width="1" fill="#ff6600"></path><text text-anchor="start" x="501.5884752418201" y="171.02005761467677" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">39.7%</text></g><g><path d="M435,188.7L435,213.29999999999998L423.7414405991427,115.31307894550866L423.7414405991427,90.71307894550866" stroke="#999999" stroke-width="1" fill="#999999"></path><path d="M435,188.7L423.7414405991427,90.71307894550866A123,98.4,0,0,1,435,90.29999999999998L435,188.7A0,0,0,0,0,435,188.7" stroke="#cccccc" stroke-width="1" fill="#cccccc"></path></g><g><path d="M435,188.7L435,213.29999999999998L417.03883570319834,115.95476997127125L417.03883570319834,91.35476997127124" stroke="#75bf00" stroke-width="1" fill="#75bf00"></path><path d="M435,188.7L417.03883570319834,91.35476997127124A123,98.4,0,0,1,423.7414405991427,90.71307894550866L435,188.7A0,0,0,0,0,435,188.7" stroke="#9cff00" stroke-width="1" fill="#9cff00"></path></g><g><path d="M435,188.7L435,213.29999999999998L415.81651572184353,116.10413529471623L415.81651572184353,91.50413529471624" stroke="#bf0000" stroke-width="1" fill="#bf0000"></path><path d="M435,188.7L415.81651572184353,91.50413529471624A123,98.4,0,0,1,417.03883570319834,91.35476997127124L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff0000" stroke-width="1" fill="#ff0000"></path></g><g><path d="M435,188.7L435,213.29999999999998L414.4724091740771,116.28002510036691L414.4724091740771,91.68002510036692" stroke="#80800d" stroke-width="1" fill="#80800d"></path><path d="M435,188.7L414.4724091740771,91.68002510036692A123,98.4,0,0,1,415.81651572184353,91.50413529471624L435,188.7A0,0,0,0,0,435,188.7" stroke="#aaaa11" stroke-width="1" fill="#aaaa11"></path></g><g><path d="M435,188.7L435,213.29999999999998L412.87779654383263,116.50460138458996L412.87779654383263,91.90460138458997" stroke="#1a8073" stroke-width="1" fill="#1a8073"></path><path d="M435,188.7L412.87779654383263,91.90460138458997A123,98.4,0,0,1,414.4724091740771,91.68002510036692L435,188.7A0,0,0,0,0,435,188.7" stroke="#22aa99" stroke-width="1" fill="#22aa99"></path></g><g><path d="M435,188.7L435,213.29999999999998L411.08132939107026,116.7784262165552L411.08132939107026,92.17842621655521" stroke="#733373" stroke-width="1" fill="#733373"></path><path d="M435,188.7L411.08132939107026,92.17842621655521A123,98.4,0,0,1,412.8777965438327,91.90460138458995L435,188.7A0,0,0,0,0,435,188.7" stroke="#994499" stroke-width="1" fill="#994499"></path></g><g><path d="M435,188.7L435,213.29999999999998L409.0918005403291,117.10764204737956L409.0918005403291,92.50764204737955" stroke="#254a70" stroke-width="1" fill="#254a70"></path><path d="M435,188.7L409.0918005403291,92.50764204737955A123,98.4,0,0,1,411.08132939107026,92.17842621655521L435,188.7A0,0,0,0,0,435,188.7" stroke="#316395" stroke-width="1" fill="#316395"></path></g><g><path d="M435,188.7L435,213.29999999999998L404.40421880733095,117.99283956147573L404.40421880733095,93.39283956147572" stroke="#8a2323" stroke-width="1" fill="#8a2323"></path><path d="M435,188.7L404.40421880733095,93.39283956147572A123,98.4,0,0,1,409.0918005403291,92.50764204737955L435,188.7A0,0,0,0,0,435,188.7" stroke="#b82e2e" stroke-width="1" fill="#b82e2e"></path></g><g><path d="M435,188.7L435,213.29999999999998L399.18881515022235,119.16287775070222L399.18881515022235,94.56287775070221" stroke="#4d8000" stroke-width="1" fill="#4d8000"></path><path d="M435,188.7L399.18881515022235,94.56287775070221A123,98.4,0,0,1,404.40421880733095,93.39283956147572L435,188.7A0,0,0,0,0,435,188.7" stroke="#66aa00" stroke-width="1" fill="#66aa00"></path></g><g><path d="M435,188.7L435,213.29999999999998L392.0039876658079,121.10770384164888L392.0039876658079,96.50770384164888" stroke="#a63359" stroke-width="1" fill="#a63359"></path><path d="M435,188.7L392.0039876658079,96.50770384164888A123,98.4,0,0,1,399.18881515022235,94.56287775070221L435,188.7A0,0,0,0,0,435,188.7" stroke="#dd4477" stroke-width="1" fill="#dd4477"></path></g><g><path d="M435,188.7L435,213.29999999999998L379.39471580460486,125.52919895254698L379.39471580460486,100.92919895254698" stroke="#4d0099" stroke-width="1" fill="#4d0099"></path><path d="M435,188.7L379.39471580460486,100.92919895254698A123,98.4,0,0,1,392.0039876658079,96.50770384164888L435,188.7A0,0,0,0,0,435,188.7" stroke="#6600cc" stroke-width="1" fill="#6600cc"></path></g><g><path d="M435,188.7L435,213.29999999999998L362.47497420518835,133.8252417089827L362.47497420518835,109.22524170898271" stroke="#000000" stroke-width="1" fill="#000000"></path><path d="M435,188.7L362.47497420518835,109.22524170898271A123,98.4,0,0,1,379.39471580460486,100.92919895254698L435,188.7A0,0,0,0,0,435,188.7" stroke="#000000" stroke-width="1" fill="#000000"></path></g><g><path d="M435,188.7L435,213.29999999999998L329.9981479862648,162.05245286690473L329.9981479862648,137.45245286690474" stroke="#80005a" stroke-width="1" fill="#80005a"></path><path d="M435,188.7L329.9981479862648,137.45245286690474A123,98.4,0,0,1,362.47497420518835,109.22524170898271L435,188.7A0,0,0,0,0,435,188.7" stroke="#aa0078" stroke-width="1" fill="#aa0078"></path></g><g><path d="M351.37081179033424,260.8560924857428L351.37081179033424,285.45609248574283A123,98.4,0,0,1,312,213.29999999999998L312,188.7A123,98.4,0,0,0,351.37081179033424,260.8560924857428" stroke="#343e4e" stroke-width="1" fill="#343e4e"></path><path d="M435,188.7L435,213.29999999999998L351.37081179033424,285.45609248574283L351.37081179033424,260.8560924857428" stroke="#343e4e" stroke-width="1" fill="#343e4e"></path><path d="M435,188.7L351.37081179033424,260.8560924857428A123,98.4,0,0,1,329.9981479862648,137.45245286690474L435,188.7A0,0,0,0,0,435,188.7" stroke="#455268" stroke-width="1" fill="#455268"></path><text text-anchor="start" x="326.9797872886569" y="202.87957152872963" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">21.8%</text></g><g><path d="M509.3615117372144,267.0810816854419L509.3615117372144,291.68108168544194A123,98.4,0,0,1,351.37081179033436,285.45609248574294L351.37081179033436,260.8560924857429A123,98.4,0,0,0,509.3615117372144,267.0810816854419" stroke="#00005a" stroke-width="1" fill="#00005a"></path><path d="M435,188.7L509.3615117372144,267.0810816854419A123,98.4,0,0,1,351.37081179033436,260.8560924857429L435,188.7A0,0,0,0,0,435,188.7" stroke="#000078" stroke-width="1" fill="#000078"></path><text text-anchor="start" x="411.6185163317982" y="270.1984602664614" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">22.2%</text></g><g></g></svg><div aria-label="A tabular representation of the data in the chart." style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;"><table><thead><tr><th>PartyName</th><th>Votes Wise(%)</th></tr></thead><tbody><tr><td>BJP {39.7%,34403039}</td><td>34,403,039</td></tr><tr><td>BSP {22.2%,19281352}</td><td>19,281,352</td></tr><tr><td>SP {21.8%,18923689}</td><td>18,923,689</td></tr><tr><td>INC {6.2%,5416324}</td><td>5,416,324</td></tr><tr><td>IND {2.6%,2229448}</td><td>2,229,448</td></tr><tr><td>RLD {1.8%,1545810}</td><td>1,545,810</td></tr><tr><td>ADAL {1.0%,851336}</td><td>851,336</td></tr><tr><td>SBSP {0.7%,607911}</td><td>607,911</td></tr><tr><td>NINSHAD {0.6%,540542}</td><td>540,542</td></tr><tr><td>PECP {0.3%,227998}</td><td>227,998</td></tr><tr><td>AIMIM {0.2%,205232}</td><td>205,232</td></tr><tr><td>LD {0.2%,181704}</td><td>181,704</td></tr><tr><td>BMUP {0.2%,152844}</td><td>152,844</td></tr><tr><td>CPI {0.2%,138763}</td><td>138,763</td></tr><tr><td>MD {0.1%,96087}</td><td>96,087</td></tr><tr><td>SHS {0.1%,88595}</td><td>88,595</td></tr><tr><td>JAM {0.1%,72537}</td><td>72,537</td></tr><tr><td>BSRD {0.1%,66412}</td><td>66,412</td></tr><tr><td>RPD {0.1%,59194}</td><td>59,194</td></tr><tr><td>JANADIP {0.1%,52812}</td><td>52,812</td></tr><tr><td>IEMC {0.1%,49860}</td><td>49,860</td></tr><tr><td>BSCP {0.0%,35379}</td><td>35,379</td></tr><tr><td>CPM {0.0%,35207}</td><td>35,207</td></tr><tr><td>NCP {0.0%,33494}</td><td>33,494</td></tr><tr><td>SARSAMP {0.0%,30485}</td><td>30,485</td></tr><tr><td>CPI(ML)(L) {0.0%,27916}</td><td>27,916</td></tr><tr><td>RKMP {0.0%,27406}</td><td>27,406</td></tr><tr><td>SWAJANPA {0.0%,22230}</td><td>22,230</td></tr><tr><td>MBCOI {0.0%,21162}</td><td>21,162</td></tr><tr><td>MAHAD {0.0%,20993}</td><td>20,993</td></tr><tr><td>PMSP {0.0%,17507}</td><td>17,507</td></tr><tr><td>MADP {0.0%,14803}</td><td>14,803</td></tr><tr><td>GGP {0.0%,12509}</td><td>12,509</td></tr><tr><td>RPI(A) {0.0%,12251}</td><td>12,251</td></tr><tr><td>SDU {0.0%,11074}</td><td>11,074</td></tr><tr><td>RSHP {0.0%,10947}</td><td>10,947</td></tr><tr><td>RSPS {0.0%,10834}</td><td>10,834</td></tr><tr><td>RAJAP {0.0%,10008}</td><td>10,008</td></tr><tr><td>ASP {0.0%,8029}</td><td>8,029</td></tr><tr><td>UPRP {0.0%,7782}</td><td>7,782</td></tr><tr><td>MwSP {0.0%,7714}</td><td>7,714</td></tr><tr><td>RKSP {0.0%,7522}</td><td>7,522</td></tr><tr><td>RASHVIP {0.0%,6866}</td><td>6,866</td></tr><tr><td>RTKP {0.0%,6709}</td><td>6,709</td></tr><tr><td>BKrD {0.0%,6569}</td><td>6,569</td></tr><tr><td>RSOSP {0.0%,6377}</td><td>6,377</td></tr><tr><td>BKRP {0.0%,5904}</td><td>5,904</td></tr><tr><td>PSJP {0.0%,5794}</td><td>5,794</td></tr><tr><td>SaJPCs {0.0%,5769}</td><td>5,769</td></tr><tr><td>VP {0.0%,5306}</td><td>5,306</td></tr><tr><td>PMhP {0.0%,5293}</td><td>5,293</td></tr><tr><td>SWPI {0.0%,5281}</td><td>5,281</td></tr><tr><td>VIP {0.0%,5182}</td><td>5,182</td></tr><tr><td>SSD {0.0%,5139}</td><td>5,139</td></tr><tr><td>LOGAP {0.0%,4896}</td><td>4,896</td></tr><tr><td>RsJnP {0.0%,4858}</td><td>4,858</td></tr><tr><td>MNVP {0.0%,4730}</td><td>4,730</td></tr><tr><td>RViP {0.0%,4652}</td><td>4,652</td></tr><tr><td>BHATARSP {0.0%,4620}</td><td>4,620</td></tr><tr><td>SUCI {0.0%,4452}</td><td>4,452</td></tr><tr><td>BHAKALP {0.0%,4270}</td><td>4,270</td></tr><tr><td>SABHP {0.0%,4116}</td><td>4,116</td></tr><tr><td>ABHM {0.0%,4095}</td><td>4,095</td></tr><tr><td>BaSaP {0.0%,3948}</td><td>3,948</td></tr><tr><td>BaSaPa {0.0%,3918}</td><td>3,918</td></tr><tr><td>VPI {0.0%,3903}</td><td>3,903</td></tr><tr><td>RMGP {0.0%,3893}</td><td>3,893</td></tr><tr><td>BRJ {0.0%,3843}</td><td>3,843</td></tr><tr><td>MHP {0.0%,3523}</td><td>3,523</td></tr><tr><td>JHJBP {0.0%,3490}</td><td>3,490</td></tr><tr><td>RJSNP {0.0%,3433}</td><td>3,433</td></tr><tr><td>HAPa {0.0%,3387}</td><td>3,387</td></tr><tr><td>RAJSPty {0.0%,3338}</td><td>3,338</td></tr><tr><td>JSEP {0.0%,3266}</td><td>3,266</td></tr><tr><td>BAWPA {0.0%,3224}</td><td>3,224</td></tr><tr><td>RVLP {0.0%,3147}</td><td>3,147</td></tr><tr><td>pps {0.0%,3122}</td><td>3,122</td></tr><tr><td>BBPP {0.0%,3113}</td><td>3,113</td></tr><tr><td>AIFB {0.0%,3104}</td><td>3,104</td></tr><tr><td>BAHUMP {0.0%,3030}</td><td>3,030</td></tr><tr><td>AkBSD {0.0%,3012}</td><td>3,012</td></tr><tr><td>OP {0.0%,2980}</td><td>2,980</td></tr><tr><td>DESP {0.0%,2928}</td><td>2,928</td></tr><tr><td>RBCP {0.0%,2867}</td><td>2,867</td></tr><tr><td>POOPEP {0.0%,2847}</td><td>2,847</td></tr><tr><td>LSPS {0.0%,2811}</td><td>2,811</td></tr><tr><td>ADUP {0.0%,2811}</td><td>2,811</td></tr><tr><td>RAJADP {0.0%,2787}</td><td>2,787</td></tr><tr><td>JPS {0.0%,2783}</td><td>2,783</td></tr><tr><td>ASaP {0.0%,2757}</td><td>2,757</td></tr><tr><td>shsap {0.0%,2749}</td><td>2,749</td></tr><tr><td>JaSSP {0.0%,2708}</td><td>2,708</td></tr><tr><td>PGSP {0.0%,2706}</td><td>2,706</td></tr><tr><td>MHD {0.0%,2691}</td><td>2,691</td></tr><tr><td>AZAD {0.0%,2672}</td><td>2,672</td></tr><tr><td>FJP {0.0%,2667}</td><td>2,667</td></tr><tr><td>jhspt {0.0%,2590}</td><td>2,590</td></tr><tr><td>RPI {0.0%,2561}</td><td>2,561</td></tr><tr><td>GKP {0.0%,2552}</td><td>2,552</td></tr><tr><td>SSAD {0.0%,2458}</td><td>2,458</td></tr><tr><td>BHIP {0.0%,2441}</td><td>2,441</td></tr><tr><td>SSKP {0.0%,2421}</td><td>2,421</td></tr><tr><td>ASSP {0.0%,2361}</td><td>2,361</td></tr><tr><td>AVIRP {0.0%,2345}</td><td>2,345</td></tr><tr><td>RshJP {0.0%,2238}</td><td>2,238</td></tr><tr><td>BLSP {0.0%,2229}</td><td>2,229</td></tr><tr><td>ADPT {0.0%,2136}</td><td>2,136</td></tr><tr><td>SP(I) {0.0%,2064}</td><td>2,064</td></tr><tr><td>SKLP {0.0%,2063}</td><td>2,063</td></tr><tr><td>RtrJP {0.0%,2053}</td><td>2,053</td></tr><tr><td>SaSPa {0.0%,2043}</td><td>2,043</td></tr><tr><td>JRPa {0.0%,2035}</td><td>2,035</td></tr><tr><td>PDD {0.0%,2031}</td><td>2,031</td></tr><tr><td>NaLP {0.0%,1977}</td><td>1,977</td></tr><tr><td>BDPty {0.0%,1911}</td><td>1,911</td></tr><tr><td>ManKP {0.0%,1832}</td><td>1,832</td></tr><tr><td>rpsn {0.0%,1832}</td><td>1,832</td></tr><tr><td>ISSP {0.0%,1827}</td><td>1,827</td></tr><tr><td>SAMSAMPA {0.0%,1781}</td><td>1,781</td></tr><tr><td>AaSamP {0.0%,1780}</td><td>1,780</td></tr><tr><td>BHABHAPA {0.0%,1727}</td><td>1,727</td></tr><tr><td>MAHISAP {0.0%,1719}</td><td>1,719</td></tr><tr><td>BSD {0.0%,1674}</td><td>1,674</td></tr><tr><td>YVP {0.0%,1640}</td><td>1,640</td></tr><tr><td>BMF {0.0%,1639}</td><td>1,639</td></tr><tr><td>ADHIKAR {0.0%,1635}</td><td>1,635</td></tr><tr><td>AIPF {0.0%,1631}</td><td>1,631</td></tr><tr><td>BaHaP {0.0%,1586}</td><td>1,586</td></tr><tr><td>JAPL {0.0%,1564}</td><td>1,564</td></tr><tr><td>ADRSP {0.0%,1541}</td><td>1,541</td></tr><tr><td>AABHAP {0.0%,1536}</td><td>1,536</td></tr><tr><td>RrSP {0.0%,1520}</td><td>1,520</td></tr><tr><td>PSWAM {0.0%,1489}</td><td>1,489</td></tr><tr><td>BhaSP {0.0%,1475}</td><td>1,475</td></tr><tr><td>APoI {0.0%,1445}</td><td>1,445</td></tr><tr><td>MaKDL {0.0%,1431}</td><td>1,431</td></tr><tr><td>BIRK {0.0%,1427}</td><td>1,427</td></tr><tr><td>KTKD {0.0%,1406}</td><td>1,406</td></tr><tr><td>AACP {0.0%,1404}</td><td>1,404</td></tr><tr><td>NAP {0.0%,1378}</td><td>1,378</td></tr><tr><td>NYP {0.0%,1356}</td><td>1,356</td></tr><tr><td>SARP {0.0%,1345}</td><td>1,345</td></tr><tr><td>KiSP {0.0%,1300}</td><td>1,300</td></tr><tr><td>MNDP {0.0%,1283}</td><td>1,283</td></tr><tr><td>SWAP {0.0%,1249}</td><td>1,249</td></tr><tr><td>BJKD {0.0%,1244}</td><td>1,244</td></tr><tr><td>AIPJSP {0.0%,1237}</td><td>1,237</td></tr><tr><td>PBI {0.0%,1230}</td><td>1,230</td></tr><tr><td>RsAD {0.0%,1203}</td><td>1,203</td></tr><tr><td>BDSAP {0.0%,1166}</td><td>1,166</td></tr><tr><td>KSJP {0.0%,1162}</td><td>1,162</td></tr><tr><td>HND {0.0%,1154}</td><td>1,154</td></tr><tr><td>BKS {0.0%,1143}</td><td>1,143</td></tr><tr><td>KMBS {0.0%,1138}</td><td>1,138</td></tr><tr><td>BCB {0.0%,1135}</td><td>1,135</td></tr><tr><td>SATSHIP {0.0%,1129}</td><td>1,129</td></tr><tr><td>bmd {0.0%,1104}</td><td>1,104</td></tr><tr><td>NEP {0.0%,1099}</td><td>1,099</td></tr><tr><td>BaVaP {0.0%,1098}</td><td>1,098</td></tr><tr><td>RJAP {0.0%,1095}</td><td>1,095</td></tr><tr><td>IUML {0.0%,1091}</td><td>1,091</td></tr><tr><td>RtJP {0.0%,1086}</td><td>1,086</td></tr><tr><td>AAMJP {0.0%,1080}</td><td>1,080</td></tr><tr><td>RUC {0.0%,1069}</td><td>1,069</td></tr><tr><td>ABVCP {0.0%,1049}</td><td>1,049</td></tr><tr><td>RAJP {0.0%,1022}</td><td>1,022</td></tr><tr><td>JANJAN {0.0%,1005}</td><td>1,005</td></tr><tr><td>BEP {0.0%,1003}</td><td>1,003</td></tr><tr><td>AD {0.0%,994}</td><td>994</td></tr><tr><td>BKJP {0.0%,979}</td><td>979</td></tr><tr><td>MaJP {0.0%,959}</td><td>959</td></tr><tr><td>BRPI {0.0%,952}</td><td>952</td></tr><tr><td>VKP {0.0%,926}</td><td>926</td></tr><tr><td>AYP {0.0%,908}</td><td>908</td></tr><tr><td>ALHP {0.0%,908}</td><td>908</td></tr><tr><td>PuPP {0.0%,907}</td><td>907</td></tr><tr><td>BJBCD {0.0%,904}</td><td>904</td></tr><tr><td>AdVP {0.0%,899}</td><td>899</td></tr><tr><td>RSD {0.0%,889}</td><td>889</td></tr><tr><td>ABHASP {0.0%,879}</td><td>879</td></tr><tr><td>BHASAP {0.0%,857}</td><td>857</td></tr><tr><td>BRABSVP {0.0%,857}</td><td>857</td></tr><tr><td>SaDa {0.0%,856}</td><td>856</td></tr><tr><td>JANKP {0.0%,854}</td><td>854</td></tr><tr><td>SATKP {0.0%,850}</td><td>850</td></tr><tr><td>RMEP {0.0%,802}</td><td>802</td></tr><tr><td>HJ {0.0%,793}</td><td>793</td></tr><tr><td>RLrP {0.0%,792}</td><td>792</td></tr><tr><td>SaSaP {0.0%,787}</td><td>787</td></tr><tr><td>LPI(V) {0.0%,781}</td><td>781</td></tr><tr><td>NJaP {0.0%,778}</td><td>778</td></tr><tr><td>HuSP {0.0%,778}</td><td>778</td></tr><tr><td>BNavP {0.0%,774}</td><td>774</td></tr><tr><td>JaSD {0.0%,768}</td><td>768</td></tr><tr><td>SHSP {0.0%,746}</td><td>746</td></tr><tr><td>JSK {0.0%,723}</td><td>723</td></tr><tr><td>EKSP {0.0%,712}</td><td>712</td></tr><tr><td>BMtP {0.0%,704}</td><td>704</td></tr><tr><td>RVMP {0.0%,691}</td><td>691</td></tr><tr><td>PPI {0.0%,687}</td><td>687</td></tr><tr><td>RPDl {0.0%,677}</td><td>677</td></tr><tr><td>BUNKD {0.0%,672}</td><td>672</td></tr><tr><td>SASEP {0.0%,668}</td><td>668</td></tr><tr><td>FDDP {0.0%,667}</td><td>667</td></tr><tr><td>MOP {0.0%,657}</td><td>657</td></tr><tr><td>BSP(K) {0.0%,647}</td><td>647</td></tr><tr><td>BHAJSP {0.0%,642}</td><td>642</td></tr><tr><td>HINUP {0.0%,626}</td><td>626</td></tr><tr><td>RaCP {0.0%,620}</td><td>620</td></tr><tr><td>BHASSS {0.0%,609}</td><td>609</td></tr><tr><td>AKSP {0.0%,603}</td><td>603</td></tr><tr><td>PAJD {0.0%,590}</td><td>590</td></tr><tr><td>NAVSAD {0.0%,588}</td><td>588</td></tr><tr><td>LEP {0.0%,583}</td><td>583</td></tr><tr><td>BHSVP {0.0%,581}</td><td>581</td></tr><tr><td>AIJCP {0.0%,576}</td><td>576</td></tr><tr><td>JSP {0.0%,571}</td><td>571</td></tr><tr><td>IVD {0.0%,568}</td><td>568</td></tr><tr><td>HCP {0.0%,568}</td><td>568</td></tr><tr><td>AMKP {0.0%,560}</td><td>560</td></tr><tr><td>AAPA {0.0%,550}</td><td>550</td></tr><tr><td>ABJS {0.0%,544}</td><td>544</td></tr><tr><td>BHANYD {0.0%,544}</td><td>544</td></tr><tr><td>BHKRDL {0.0%,537}</td><td>537</td></tr><tr><td>RGD {0.0%,523}</td><td>523</td></tr><tr><td>RasJM {0.0%,519}</td><td>519</td></tr><tr><td>ANC {0.0%,519}</td><td>519</td></tr><tr><td>SSSP {0.0%,508}</td><td>508</td></tr><tr><td>BHAIP {0.0%,489}</td><td>489</td></tr><tr><td>PLM {0.0%,488}</td><td>488</td></tr><tr><td>MANBP {0.0%,486}</td><td>486</td></tr><tr><td>ABSKP {0.0%,486}</td><td>486</td></tr><tr><td>ALD {0.0%,484}</td><td>484</td></tr><tr><td>RaLoPa {0.0%,473}</td><td>473</td></tr><tr><td>RKIVP {0.0%,464}</td><td>464</td></tr><tr><td>BSKD {0.0%,452}</td><td>452</td></tr><tr><td>SURSAP {0.0%,452}</td><td>452</td></tr><tr><td>KYP {0.0%,451}</td><td>451</td></tr><tr><td>NSPI {0.0%,451}</td><td>451</td></tr><tr><td>LPSP {0.0%,449}</td><td>449</td></tr><tr><td>NADEF {0.0%,449}</td><td>449</td></tr><tr><td>SANVP {0.0%,438}</td><td>438</td></tr><tr><td>JUSTIP {0.0%,435}</td><td>435</td></tr><tr><td>BSNPty {0.0%,433}</td><td>433</td></tr><tr><td>ARK {0.0%,433}</td><td>433</td></tr><tr><td>RVNP {0.0%,429}</td><td>429</td></tr><tr><td>MaNPa {0.0%,424}</td><td>424</td></tr><tr><td>IPH {0.0%,410}</td><td>410</td></tr><tr><td>KMSUP {0.0%,405}</td><td>405</td></tr><tr><td>LOMP {0.0%,395}</td><td>395</td></tr><tr><td>PSAVKP {0.0%,395}</td><td>395</td></tr><tr><td>AIMF {0.0%,375}</td><td>375</td></tr><tr><td>SWJP {0.0%,366}</td><td>366</td></tr><tr><td>bjdi {0.0%,365}</td><td>365</td></tr><tr><td>RSMD {0.0%,361}</td><td>361</td></tr><tr><td>HKRD {0.0%,355}</td><td>355</td></tr><tr><td>BaJD {0.0%,349}</td><td>349</td></tr><tr><td>UDFS {0.0%,342}</td><td>342</td></tr><tr><td>BHANVIP {0.0%,341}</td><td>341</td></tr><tr><td>DNP {0.0%,341}</td><td>341</td></tr><tr><td>GEkP {0.0%,329}</td><td>329</td></tr><tr><td>SaPP {0.0%,329}</td><td>329</td></tr><tr><td>NAPt {0.0%,319}</td><td>319</td></tr><tr><td>NDPF {0.0%,294}</td><td>294</td></tr><tr><td>BKSL {0.0%,292}</td><td>292</td></tr><tr><td>BJD(T) {0.0%,285}</td><td>285</td></tr><tr><td>AwVP {0.0%,280}</td><td>280</td></tr><tr><td>RtSJP {0.0%,279}</td><td>279</td></tr><tr><td>RSP(S) {0.0%,263}</td><td>263</td></tr><tr><td>UKKD {0.0%,259}</td><td>259</td></tr><tr><td>kajp {0.0%,258}</td><td>258</td></tr><tr><td>AJPR {0.0%,250}</td><td>250</td></tr><tr><td>RJBVP {0.0%,238}</td><td>238</td></tr><tr><td>BJS {0.0%,234}</td><td>234</td></tr><tr><td>NASHMBP {0.0%,233}</td><td>233</td></tr><tr><td>BKPP {0.0%,218}</td><td>218</td></tr><tr><td>SSCP {0.0%,216}</td><td>216</td></tr><tr><td>NPPS {0.0%,215}</td><td>215</td></tr><tr><td>RAC {0.0%,211}</td><td>211</td></tr><tr><td>JSVP {0.0%,210}</td><td>210</td></tr><tr><td>SASEPA {0.0%,208}</td><td>208</td></tr><tr><td>BNIP {0.0%,204}</td><td>204</td></tr><tr><td>RPIE {0.0%,202}</td><td>202</td></tr><tr><td>MKUP {0.0%,200}</td><td>200</td></tr><tr><td>HDVP {0.0%,200}</td><td>200</td></tr><tr><td>hjc {0.0%,183}</td><td>183</td></tr><tr><td>LSWP {0.0%,183}</td><td>183</td></tr><tr><td>BJVP {0.0%,182}</td><td>182</td></tr><tr><td>makm {0.0%,178}</td><td>178</td></tr><tr><td>BLokSP {0.0%,177}</td><td>177</td></tr><tr><td>NaAP {0.0%,171}</td><td>171</td></tr><tr><td>BRKD {0.0%,154}</td><td>154</td></tr><tr><td>LRAP {0.0%,151}</td><td>151</td></tr><tr><td>UNP {0.0%,146}</td><td>146</td></tr><tr><td>SamAP {0.0%,137}</td><td>137</td></tr><tr><td>PUPVP {0.0%,130}</td><td>130</td></tr><tr><td>aicp {0.0%,128}</td><td>128</td></tr><tr><td>RMJP {0.0%,125}</td><td>125</td></tr><tr><td>BPA {0.0%,120}</td><td>120</td></tr><tr><td>NLIP {0.0%,117}</td><td>117</td></tr><tr><td>MaSPa {0.0%,104}</td><td>104</td></tr><tr><td>RaIP {0.0%,91}</td><td>91</td></tr><tr><td>RaBaP {0.0%,63}</td><td>63</td></tr><tr><td>NOTA {0.9%,757643}</td><td>757,643</td></tr></tbody></table></div></div></div><div aria-hidden="true" style="display: none; position: absolute; top: 410px; left: 710px; white-space: nowrap; font-family: Arial; font-size: 13px;">0/0</div><div></div></div></div></td></tr></tbody></table><br> <table border="1" style="margin: auto; width: 100%; font-family: Verdana; border: solid 1px black;font-weight:lighter"> <tbody><tr> <td colspan="4" align="center" style="font-size: 15px; font-weight: bold; background-color: #BFDAFB;"> Uttarakhand&nbsp;<br>Result Status <div id="divStatusHR" style="font-size: 10px;"></div></td> </tr> <tr style="height: 20px; background-color: #BFDAFB; color:Black;"><td colspan="4" align="center"><b><div style="font-size: 10px; font-weight: bold" id="divStatus"> Status Known For 70 out of 70 Constituencies</div></b></td></tr><tr style="height: 20px; background-color: #BFDAFB; color:Black;"> <th align="left">Party</th> <th>Won</th><th>Leading</th><th>Total</th></tr><tr style="font-size:12px;"><td align="left">Bharatiya Janata Party</td><td align="center">56</td><td align="center">1</td><td align="center">57</td></tr><tr style="font-size:12px;"><td align="left">Indian National Congress</td><td align="center">11</td><td align="center">0</td><td align="center">11</td></tr><tr style="font-size:12px;"><td align="left">Independent</td><td align="center">2</td><td align="center">0</td><td align="center">2</td></tr><tr style="font-size:12px;font-weight:bold;"><td align="left">Total</td><td align="center">69</td><td align="center">1</td><td align="center">70</td></tr><tr><td colspan="4" style="text-align:center;border-top: 1px solid #000000;border-bottom: 0px;border-left: 0px;border-bottom: 0px;border-right: 0px;"><p style="font-style: normal;font-weight:bold">Partywise Vote Share</p></td></tr><tr><td colspan="4" style="border:0px"><div id="piecharts28"><div style="position: relative;"><div dir="ltr" style="position: relative; width: 700px; height: 400px;"><div aria-label="A chart." style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><svg width="700" height="400" aria-label="A chart." style="overflow: hidden;"><defs id="defs"></defs><rect x="0" y="0" width="700" height="400" stroke="none" stroke-width="0" fill="#ffffff"></rect><g><text text-anchor="start" x="127" y="37.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Please move your mouse over the chart or legend to view more details.</text><text text-anchor="start" x="127" y="54.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#000000">Party {Votes%,Vote Count}</text><rect x="127" y="26" width="446" height="30" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect></g><g><rect x="127" y="77" width="149" height="160" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><rect x="127" y="77" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="88.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BJP {46.5%,2312912}</text></g><circle cx="133.5" cy="83.5" r="6.5" stroke="none" stroke-width="0" fill="#ff6600"></circle></g><g><rect x="127" y="98" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="109.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">INC {33.5%,1665664}</text></g><circle cx="133.5" cy="104.5" r="6.5" stroke="none" stroke-width="0" fill="#aa0078"></circle></g><g><rect x="127" y="119" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="130.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">IND {10.0%,499625}</text></g><circle cx="133.5" cy="125.5" r="6.5" stroke="none" stroke-width="0" fill="#000000"></circle></g><g><rect x="127" y="140" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="151.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">BSP {7.0%,347507}</text></g><circle cx="133.5" cy="146.5" r="6.5" stroke="none" stroke-width="0" fill="#000078"></circle></g><g><rect x="127" y="161" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="172.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">UKKD {0.7%,37039}</text></g><circle cx="133.5" cy="167.5" r="6.5" stroke="none" stroke-width="0" fill="#990099"></circle></g><g><rect x="127" y="182" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="193.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">SP {0.4%,18202}</text></g><circle cx="133.5" cy="188.5" r="6.5" stroke="none" stroke-width="0" fill="#455268"></circle></g><g><rect x="127" y="203" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="214.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">NOTA {1.0%,50408}</text></g><circle cx="133.5" cy="209.5" r="6.5" stroke="none" stroke-width="0" fill="#9cff00"></circle></g><g><rect x="127" y="224" width="149" height="13" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect><g><text text-anchor="start" x="145" y="235.05" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#222222">Other</text></g><circle cx="133.5" cy="230.5" r="6.5" stroke="none" stroke-width="0" fill="#cccccc"></circle></g></g><g><path d="M558,188.7L558,213.29999999999998A123,98.4,0,0,1,461.7841363816073,309.338692330261L461.7841363816073,284.73869233026096A123,98.4,0,0,0,558,188.7" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,213.29999999999998L461.7841363816073,309.338692330261L461.7841363816073,284.73869233026096" stroke="#bf4d00" stroke-width="1" fill="#bf4d00"></path><path d="M435,188.7L435,90.29999999999998A123,98.4,0,0,1,461.7841363816073,284.73869233026096L435,188.7A0,0,0,0,0,435,188.7" stroke="#ff6600" stroke-width="1" fill="#ff6600"></path><text text-anchor="start" x="506.4692748545741" y="185.5525948036148" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">46.5%</text></g><g><path d="M435,188.7L435,213.29999999999998L428.48049819333266,115.03832129683803L428.48049819333266,90.43832129683803" stroke="#999999" stroke-width="1" fill="#999999"></path><path d="M435,188.7L428.48049819333266,90.43832129683803A123,98.4,0,0,1,435,90.29999999999998L435,188.7A0,0,0,0,0,435,188.7" stroke="#cccccc" stroke-width="1" fill="#cccccc"></path></g><g><path d="M435,188.7L435,213.29999999999998L420.6768501170601,115.5694401860107L420.6768501170601,90.9694401860107" stroke="#75bf00" stroke-width="1" fill="#75bf00"></path><path d="M435,188.7L420.6768501170601,90.9694401860107A123,98.4,0,0,1,428.48049819333266,90.43832129683803L435,188.7A0,0,0,0,0,435,188.7" stroke="#9cff00" stroke-width="1" fill="#9cff00"></path></g><g><path d="M435,188.7L435,213.29999999999998L417.87162418055556,115.85875619254318L417.87162418055556,91.25875619254319" stroke="#343e4e" stroke-width="1" fill="#343e4e"></path><path d="M435,188.7L417.87162418055556,91.25875619254319A123,98.4,0,0,1,420.6768501170601,90.9694401860107L435,188.7A0,0,0,0,0,435,188.7" stroke="#455268" stroke-width="1" fill="#455268"></path></g><g><path d="M435,188.7L435,213.29999999999998L412.19285078513394,116.60639253496569L412.19285078513394,92.0063925349657" stroke="#730073" stroke-width="1" fill="#730073"></path><path d="M435,188.7L412.19285078513394,92.0063925349657A123,98.4,0,0,1,417.87162418055556,91.25875619254319L435,188.7A0,0,0,0,0,435,188.7" stroke="#990099" stroke-width="1" fill="#990099"></path></g><g><path d="M435,188.7L435,213.29999999999998L362.97966157528646,133.5320531413687L362.97966157528646,108.93205314136868" stroke="#00005a" stroke-width="1" fill="#00005a"></path><path d="M435,188.7L362.97966157528646,108.93205314136868A123,98.4,0,0,1,412.19285078513406,92.00639253496568L435,188.7A0,0,0,0,0,435,188.7" stroke="#000078" stroke-width="1" fill="#000078"></path><text text-anchor="start" x="386.6274786188841" y="123.0505409628019" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">7%</text></g><g><path d="M435,188.7L435,213.29999999999998L318.0157850772355,182.9032269196409L318.0157850772355,158.3032269196409" stroke="#000000" stroke-width="1" fill="#000000"></path><path d="M435,188.7L318.0157850772355,158.3032269196409A123,98.4,0,0,1,362.97966157528646,108.93205314136868L435,188.7A0,0,0,0,0,435,188.7" stroke="#000000" stroke-width="1" fill="#000000"></path><text text-anchor="start" x="345.57429153154123" y="150.020029454895" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">10%</text></g><g><path d="M461.7841363816073,284.73869233026096L461.7841363816073,309.338692330261A123,98.4,0,0,1,312,213.29999999999998L312,188.7A123,98.4,0,0,0,461.7841363816073,284.73869233026096" stroke="#80005a" stroke-width="1" fill="#80005a"></path><path d="M435,188.7L461.7841363816073,284.73869233026096A123,98.4,0,0,1,318.0157850772355,158.3032269196409L435,188.7A0,0,0,0,0,435,188.7" stroke="#aa0078" stroke-width="1" fill="#aa0078"></path><text text-anchor="start" x="349.55237813594124" y="240.53078819544584" font-family="Arial" font-size="13" stroke="none" stroke-width="0" fill="#ffffff">33.5%</text></g><g></g></svg><div aria-label="A tabular representation of the data in the chart." style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;"><table><thead><tr><th>PartyName</th><th>Votes Wise(%)</th></tr></thead><tbody><tr><td>BJP {46.5%,2312912}</td><td>2,312,912</td></tr><tr><td>INC {33.5%,1665664}</td><td>1,665,664</td></tr><tr><td>IND {10.0%,499625}</td><td>499,625</td></tr><tr><td>BSP {7.0%,347507}</td><td>347,507</td></tr><tr><td>UKKD {0.7%,37039}</td><td>37,039</td></tr><tr><td>SP {0.4%,18202}</td><td>18,202</td></tr><tr><td>IBusP {0.1%,6245}</td><td>6,245</td></tr><tr><td>RLD {0.1%,4808}</td><td>4,808</td></tr><tr><td>CPI {0.1%,4106}</td><td>4,106</td></tr><tr><td>CPM {0.1%,3893}</td><td>3,893</td></tr><tr><td>UPP {0.1%,3068}</td><td>3,068</td></tr><tr><td>UKDD {0.1%,2660}</td><td>2,660</td></tr><tr><td>CPI(ML)(L) {0.0%,2124}</td><td>2,124</td></tr><tr><td>SHS {0.0%,1781}</td><td>1,781</td></tr><tr><td>UtRM {0.0%,1609}</td><td>1,609</td></tr><tr><td>SaSP {0.0%,1543}</td><td>1,543</td></tr><tr><td>SAVIPA {0.0%,1384}</td><td>1,384</td></tr><tr><td>HAMJANPA {0.0%,1308}</td><td>1,308</td></tr><tr><td>PRAJAPA {0.0%,1195}</td><td>1,195</td></tr><tr><td>BASD {0.0%,958}</td><td>958</td></tr><tr><td>PECP {0.0%,767}</td><td>767</td></tr><tr><td>BaSaPa {0.0%,720}</td><td>720</td></tr><tr><td>BKLJP {0.0%,503}</td><td>503</td></tr><tr><td>BMUP {0.0%,502}</td><td>502</td></tr><tr><td>NCP {0.0%,500}</td><td>500</td></tr><tr><td>LSPS {0.0%,460}</td><td>460</td></tr><tr><td>RJSD {0.0%,412}</td><td>412</td></tr><tr><td>RaAP {0.0%,383}</td><td>383</td></tr><tr><td>BSRD {0.0%,283}</td><td>283</td></tr><tr><td>AIFB {0.0%,197}</td><td>197</td></tr><tr><td>bkdl {0.0%,149}</td><td>149</td></tr><tr><td>AVIRP {0.0%,125}</td><td>125</td></tr><tr><td>raup {0.0%,123}</td><td>123</td></tr><tr><td>BMF {0.0%,96}</td><td>96</td></tr><tr><td>PEPART {0.0%,72}</td><td>72</td></tr><tr><td>NOTA {1.0%,50408}</td><td>50,408</td></tr></tbody></table></div></div></div><div aria-hidden="true" style="display: none; position: absolute; top: 410px; left: 710px; white-space: nowrap; font-family: Arial; font-size: 13px;">Other</div><div></div></div></div></td></tr></tbody></table><table><tbody><tr><td style="font-weight:normal">Last Updated at 20:36 On 11/03/2017</td><td></td></tr></tbody></table>
302
+ </div>
303
+ </td>
304
+ </tr>
305
+ <tr style="height: 10px">
306
+ <td></td>
307
+ </tr>
308
+ <tr>
309
+ <td align="center" width="50%">
310
+ <a href="http://eciresults.nic.in/PartyWiseResult.htm#" onclick="return ScollToTop();">Go To Top</a>
311
+ </td>
312
+ </tr>
313
+ </tbody></table>
314
+ </td>
315
+ </tr>
316
+ <tr id="customMessage" style="display: none">
317
+ <td align="center">
318
+ <table width="100%">
319
+ <tbody><tr>
320
+ <td align="center">
321
+ <b>
322
+ @message
323
+ </b>
324
+ </td>
325
+ </tr>
326
+ </tbody></table>
327
+ <br>
328
+ </td>
329
+ </tr>
330
+ </tbody></table>
331
+ </td>
332
+ </tr>
333
+ <tr>
334
+ <td align="center">
335
+ <a href="http://eciresults.nic.in/Disclaimer.htm">Disclaimer</a>
336
+ </td>
337
+ </tr>
338
+ </tbody></table>
339
+ </div>
340
+ <script type="text/javascript">
341
+ function GetResult(ddstate) {
342
+ var statecode = ddstate.value;
343
+ if (statecode != 'Select State')
344
+ location.href = 'PartyWiseResult' + statecode + '.htm?st=' + statecode;
345
+ else
346
+ location.href = 'PartyWiseResult' + ddstate.options[1].value + '.htm?st=' + ddstate.options[1].value;
347
+ }
348
+ function SetSelectedSate() {
349
+ var ddlState = document.getElementById("ctl00_ContentPlaceHolder1_Result1_ddlState");
350
+ var stateCode = '';
351
+ var queryString = location.search.substring(1);
352
+ if (queryString != null && queryString != '') {
353
+ stateCode = queryString.split('=')[1];
354
+ }
355
+ if (ddlState != null)
356
+ for (var index = 0; index < ddlState.options.length; index++) {
357
+ if (ddlState.options[index].value == stateCode) {
358
+ ddlState.options[index].selected = true;
359
+ }
360
+ }
361
+ }
362
+ onload = SetSelectedSate;
363
+
364
+ </script>
365
+ <script type="text/javascript">
366
+ //<![CDATA[
367
+ var ctl00_Menu1_Data = new Object();
368
+ ctl00_Menu1_Data.disappearAfter = 500;
369
+ ctl00_Menu1_Data.horizontalOffset = 2;
370
+ ctl00_Menu1_Data.verticalOffset = 0;
371
+ ctl00_Menu1_Data.hoverClass = 'ctl00_Menu1_15';
372
+ ctl00_Menu1_Data.hoverHyperLinkClass = 'ctl00_Menu1_14';
373
+ ctl00_Menu1_Data.staticHoverClass = 'ctl00_Menu1_13';
374
+ ctl00_Menu1_Data.staticHoverHyperLinkClass = 'ctl00_Menu1_12';
375
+ </script>
376
+ <script type="text/javascript">
377
+ function ScollToBottom() {
378
+ window.scrollTo(0, document.body.scrollHeight);
379
+ return false;
380
+ }
381
+ function ScollToTop() {
382
+ window.scrollTo(0, 0);
383
+ }
384
+ </script>
385
+ <script language="javascript" type="text/javascript">
386
+ var currentPageName = window.location.pathname.toLowerCase();
387
+ if (currentPageName != null && ((currentPageName.indexOf("partywiseresults22.htm") != -1) || (currentPageName.indexOf("partywiseresult.htm") != -1) || (currentPageName.indexOf("partywiseresults22.htm") != -1))) {
388
+ //document.getElementById("customMessage").style.display = 'block';
389
+ }
390
+ </script>
391
+ </form><div style="position: absolute; display: none;"><div style="background: infobackground; padding: 1px; border: 1px solid infotext; font-size: 13px; margin: 13px; font-family: Arial;">AAAP {23.7%,3662665}</div></div><div style="position: absolute; display: none;"><div style="background: infobackground; padding: 1px; border: 1px solid infotext; font-size: 13px; margin: 13px; font-family: Arial;">BJP {39.7%,34403039}</div></div><div style="position: absolute; display: none;"><div style="background: infobackground; padding: 1px; border: 1px solid infotext; font-size: 13px; margin: 13px; font-family: Arial;">BSP {22.2%,19281352}</div></div><div style="position: absolute; display: none;"><div style="background: infobackground; padding: 1px; border: 1px solid infotext; font-size: 13px; margin: 13px; font-family: Arial;">NINSHAD {0.6%,540542}</div></div>
392
+
393
+
394
+ </body><div class="hovercards-root"><div data-reactroot=""></div></div></html>