-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter.4.00.xhtml
executable file
·3407 lines (3281 loc) · 142 KB
/
chapter.4.00.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<!-- <!DOCTYPE html> -->
<!-- <html lang="en"> -->
<head>
<title>The Principles of the Trinary Universe: Chapter 4.00 Trinary Universe</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Jeffrey Scott Flesher" />
<meta name="created" content="1961-01-14T18:32:33.366699936" />
<meta name="changedby" content="Jeffrey Scott Flesher" />
<meta name="changed" content="2020-01-14T18:32:57.366666666" />
<meta name="description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="keywords" content="Light,Wizzard,Wizard,Newton,Tesla,Franklin,God,Jesus,Bar/Abbas,Darkness,Trinary,Universe,Sanctuary,Physics,Sun,Step,Jeffrey Scott Flesher" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TheLightWizzard" />
<meta name="twitter:creator" content="@TheLightWizzard" />
<meta name="twitter:title" content="The Principles of the Trinary Universe: Chapter 4.00 Trinary Universe" />
<meta name="twitter:description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="twitter:image" content="images/cover.jpg" />
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<!-- *** Put all js files inside comment tag when running kindlegen to get rid of warnings
*** -->
<link rel="stylesheet" href="1doc2rule.min.css" />
<!-- <script async="async" src="1doc2rule.min.js"></script> -->
</head>
<body>
<!-- ************* CONTAINER ********************************************** -->
<div class="container">
<!-- ************* BEGIN_TITLE_PAGE_COPYRIGHT ***************************** -->
<div class="noprint">
<span class="show_web_page_only"><span class="align_center"><span id="google_translate_element" class="google_translate_element"></span></span></span>
<span class="bigcenter"><cite>The Principles of the Trinary Universe</cite></span>
<span class="bignboldncenter">Chapter 4.00:<br />Trinary Universe</span>
<span class="small_text_line_center"><span class="center_italic">C</span>®<span class="center_italic">pyRight</span> & <span class="center_italic">C</span>©<span class="center_italic">pyLeft</span><br />by</span>
<span class="a_signature_large_center">Jeffrey Scott Flesher</span>
<span class="author_title">“Medically Retired United States Air Force Staff Sergeant”</span>
<span class="center_small">Last Update: <span class="text_mono ">14 January 2020</span></span>
<span class="center_small">
<a href="http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.xhtml" class="blank_target_link">http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.html</a>
</span>
<div class="a_line_show_break_html"></div><span class="a_blank_line"> </span>
</div>
<!-- ************* END_TITLE_PAGE_COPYRIGHT ******************************* -->
<!-- ************* BEGIN_CHAPTER_4 **************************************** -->
<div class="page_content">
<h2 id="chapter_04_00" class="a_header"> Chapter 4.00:<br />Trinary Universe </h2>
<p class="text_top">
I have to fully define what a Trinary Universe is,
but first I must point out what other Universe Theories are out there,
a Static Universe,
also referred to as a “Stationary”,
or “Infinite”,
or “Static Infinite” Universe,
is a cosmological model in which the Universe is both spatially Infinite,
and Temporally Infinite,
and space is neither expanding nor contracting,
so in this definition of a Universe,
the Universe itself is not moving,
I must point out that the Light was Dynamic in this Model,
and this was the original model that Einstein used,
till Hubble came out with his Redshift Theory,
then this model was dropped,
and Einstein changed his Mind,
and said,
no, the Universe is Not Static,
it is expanding,
so now the Universe is Dynamic,
and so is the Light,
when I talk about Einsteins Static Model,
I am talking about the first one,
at times I might get confused,
and not because I do not understand them,
it is that the Definition keeps changing,
for example, when Einstein first released his Static Universe Model,
people were happy with it,
not Tesla,
but when Hubble said the Universe is expanding,
here is the proof,
Einstein dropped that model,
and switched teams,
and now Mainstream wording:
The Dynamic Universe is a unifying theory converting spacetime in variable coordinates into dynamic space in absolute coordinates,
the Dynamic Universe theory relies on an overall zero-energy balance in space,
and the conservation of the total energy in interactions in space.
that said,
I could throw in the Flat Earth Theory,
because I take it just as serious.
Trinary is defined as having 3 Logical State Changes,
so the Trinary Universe also has these 3 Logical State Changes,
to fully understand this concept,
look at any Atom, then scale it up to the size of a Planet,
than a Sun, then a Galaxy, then the Universe,
then it becomes clear as to how the Universe is Trinary,
because of all Trinary Atoms,
and Trinary Engines,
are what make up the Trinary Universe.
In this Universe,
Light is Static,
and the Universe is Dynamic,
but you can not fold its spacetime continuum,
you can not go forward or backward in time,
you can only move in real-time,
and has absolutely nothing to do with the Dynamic Universe,
I will have to explain the difference between the two,
and most understand Einsteins Theory of General Relativity,
I was being sarcastic,
Mainstream Words:
The General Theory of Relativity,
or General Relativity for short,
explains gravity based on the way space can “curve”,
or, to put it more accurately,
it associates the force of gravity with the Changing Geometry of Space-Time,
so in short, the Dynamic Universe,
is about the Curvature of Space-Time,
but the Spacetime Continuum sounds better,
and I must point out,
that not one theory based on this Theory,
has been proven in over a Century,
and why I do not take it any more serious then I would the Flat Earth Theory.
It is hard to teach you what Science is,
by talking about what Science is not,
so let me try to explain what I mean by Dynamic Universe,
and Static Light.
</p>
<p class="text_indent">
Kepler said the Bible Code was hidden in the passages of the Canons,
what he found was the meaning of Trinity,
the Father was Solid,
the Son was Semisolid,
and the Holy Ghost was invisible,
that is the Definition of Trinary: 3 Logical State Changes,
to understand how this is possible,
I must talk about the Trinary Math Prim`er (+1) + (-1) = 0,
it looks like a Graph:
</p>
<div class="a_table" id="table_4_10">
<table class="subdue_center" style="width: 40%">
<tbody>
<tr>
<th class="subdue_center"> State </th>
<th class="subdue_center"> Trinity </th>
<th class="subdue_center"> Dimension(s) </th>
<th class="subdue_center"> Visibility </th>
<th class="subdue_center" colspan="13" rowspan="1"> Graph </th>
</tr>
<tr>
<td class="subdue_center"> (<sup>+</sup>1) </td>
<td class="subdue_center"> Father </td>
<td class="subdue_center"> All 3 </td>
<td class="subdue_center"> Solid </td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
</tr>
<tr>
<td class="subdue_center"> 0 </td>
<td class="subdue_center"> Mother Spirit </td>
<td class="subdue_center"> 0 </td>
<td class="subdue_center"> Invisible </td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
</tr>
<tr>
<td class="subdue_center"> (<sup>–</sup>1) </td>
<td class="subdue_center"> Son </td>
<td class="subdue_center"> 1 or 2 </td>
<td class="subdue_center"> Semisolid </td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center"></td>
<td class="subdue_center">*</td>
<td class="subdue_center"></td>
</tr>
<tr>
<td class="subdue_center" colspan="4"> Time frame </td>
<td class="subdue_center">  0 </td>
<td class="subdue_center">  1 </td>
<td class="subdue_center">  2 </td>
<td class="subdue_center">  3 </td>
<td class="subdue_center">  4 </td>
<td class="subdue_center">  5 </td>
<td class="subdue_center">  6 </td>
<td class="subdue_center">  7 </td>
<td class="subdue_center">  8 </td>
<td class="subdue_center">  9 </td>
<td class="subdue_center"> 10 </td>
<td class="subdue_center"> 11 </td>
<td class="subdue_center"> 12 </td>
</tr>
</tbody>
</table>
<span class="a_caption"> Table 4.10: Trinary Math Graph names </span>
</div>
<p class="text_indent">
If Kepler and Newton are right,
and we use their Math,
and Laws,
and they are based on God Being the Force of Gravity,
in All his Equations,
not just some of them,
so you can not use any of them in those other Universes,
because they have no God in them,
so let me fill in the blanks,
where TF stands for Time Frame:
</p>
<p class="text_indent">
Therefore it is clear that this is an Alternating Current,
but not so clear how Atoms disappear,
and that is due to Dimensions in Space,
and in Trinary Science,
the Dimensions of space are 0, 1, 2, and 3,
and these are the States shown with the Dimensions of Space they occupy,
in each Value in the above table 4.10.
</p>
<p class="text_indent">
At the Subatomic Level of Trinary Science,
there are 3 types of Atoms: Proton, Neutron, and Electron,
they are all Trinary Atoms,
because they all have 3 Logical State Changes,
and all this Trinary Science,
came from Bible Code.
To understand what I just said,
may or may not be easy for you,
the concept that the Atom is made of Neutrinos,
one side is Matter,
the other side is Antimatter,
and in between is a Neutral Matter,
this is bound around Light without Darkness,
for both the Proton,
and Neutron,
but both Light and Darkness exist in Electrons.
I define each level of Trinary Science,
so you do not have to guess at it,
nor get it confused with a Theory,
Trinary Science is based on Math,
and Laws, of Kepler, Newton,
and Tesla,
but not Einstein,
nor anyone other than who I mention,
although I did Mention Einstein,
just to say I do not use any of his Theory,
or Math,
or anyone's that does,
therefore I only Mention Einstein,
to say I do not mention him,
but by doing so, I did,
so I had to make clear why,
and maybe it was because Einstein admitted his Theory would not work without God as the Force of Gravity,
and no one can prove that statement is wrong,
because everyone uses the Math, and Laws of Kepler, and Newton,
so who are we kidding,
as such, God is the Force in All my Equations,
and God is All Light without Darkness,
and you have to be a complete idiot to use the Math,
and Laws of Kepler, and Newton,
knowing they are based on God,
in a Theory that does not have a God in it,
that is called a Lie by the way,
proving Einsteins Theories are Wrong,
and Newton was Right.
</p>
<p class="text_indent">
The Laws, and Math of the Trinary Universe,
are based on God as All Light without Darkness,
therefore there are Trinary Laws,
and Trinary Math,
and Trinary Science,
and I have to use the Prefix of Trinary,
to distinguish it from other types of Science,
or Theories,
because I go way beyond Kepler and Newton,
even Tesla,
in terms of defining the Universe,
and why my changes are so radical from any known Theory,
it is in a category of its own,
so I get to name it,
but I named it after Sir Isaac Newton,
by renaming Trinity too Trinary,
because he really did hate the teaching of Christ.
</p>
<p class="text_indent">
Mainstream Science comes down to pretending it is Science,
I actually have no clue as to why people would waste over a Century,
on Theories that have never been Proven,
and to believe theories are true is beyond insane,
people claiming to have evidence that Black Holes,
or Multiverses exist is insane,
thinking you can use Newtonian Math based on God being the Force of Gravity,
in a Godless Dynamic Universe is Insane with a Capital I,
you have to be retarded to think it does not matter because it works,
when the reason it Newtonian Math Works,
is because God exist,
unlike the Mainstream Religion God that does not Physically Exist,
Trinary Science goes against ever belief Mainstream has,
when it comes to what God is,
and what Real Science is,
Mainstream is just insane,
and I have no clue as to if people are really that retarded,
because of the Belief in a Theory that has not been proven in over a Century,
is call insanity,
that is when you wake up every day for a Century,
and try to prove this Mainstream Theory,
and end up in a Wheel Chair,
having a computer talking for you,
and then you die of old age,
never proving anything except how insane you are,
for doing the same thing every day,
yet expecting different results,
and I can care less about peoples Right to believe what they want,
that is insane by the way,
and that is when you know insane people are in charge,
I have thought this since I was a child,
and prove it every day,
there is no other way to put it,
people that are Religions are insane,
and this is not my Opinion,
it is insane to believe in things that do not Physically Exist,
that is the definition of Insanity,
and the same is true of a Theory that has not been proven,
a Theory is not a way to explain a Fact,
only Retarded People believe that,
and that is why Retarded People use Newtonian Math in a Godless Dynamic Universe,
it is all just BS.
When I use a Word Spelled Retarded,
I mean it, but most people have no idea what it actually means,
Mainstream defines it as less advanced in mental, physical,
or social development than is usual for one's age,
the other is very foolish or stupid,
and Stupid is having, or showing a great lack of intelligence, or common sense,
and Foolish is lacking good sense or judgment,
as in unwise,
now that we know what the Spells mean,
anyone that believes in things that do not Physically Exist,
are Insane,
there is no arguing this point,
if I was talking to a child who had a make-believe friend,
I would not allow that child to grow up thinking that Imaginary Friend is Real,
and at some age, maybe 4,
make believe Friends may become a problem at say age 14,
but if Adults want to have Pretend Angels,
they are Retarded,
Santa Clause is a good example of this,
because there is no more validity in a Deity that does not Physically Exist,
then there is in Santa Clause,
so I must treat all Religions People like a Retarded Child,
the Bible calls them sheep,
so I will call them Sheeple,
and those that believe that a Theory is a way of explaining a Fact,
Retarded, a Theory is Make Believe,
a Fact is Real.
God is All Light without Darkness,
that Physically exists as Light,
therefore if God is the Force of Gravity,
than Light is Gravity,
and not some Curvature in Space and Time,
that no one can prove exists,
or Black Holes that only exist in Computer Generated Graphics,
or CGI,
proving that when it comes to Proof of Existence,
Mainstream has no evidence of Black Holes,
other than Theories that have not been Proven,
so what Proof do I have that Light is Gravity?
Light is inside of Every Atom in the Universe,
and everything is made of Atoms,
so it has to be the Light,
and that is Trinary Logic.
When I call people Retarded for believing in things that are not Real,
as in an Angel named God,
because that Logic means that all Angels are God by another name,
and also implies that God is just a Name,
so it is a belief in multiple Gods with different Names,
and why they worship Angels instead of God,
because the Bible was very clear about what God is,
so let me show you the Trinary Logic of what the Bible States as a Fact,
sorry if I left out a Bible,
I only listed a limited number of them due to space,
I am limited to 666 printed pages,
at U.S. Letter 8.5 x 11, Black & White,
Perfect Bound, which has a range of 32-740 Pages,
options for Color are limited to 480 pages,
and this book was at one time over 16,000 pages,
so I could not see how to cut it down to anything less than 666-pages,
because I repeat myself a lot,
so please take the time to verify my findings,
but as far as all my Research,
and Newtons,
we only found one definition for what God is,
and for the official definition of the Trinary God,
I use the definition that “God is All Light without Darkness”,
but just to prove to you that I am not making this up,
read all these Bibles for yourself,
and see how you would define God:
</p>
<div id="table_4_00_bible_define_Light" class="a_table">
<table class="oddlist">
<thead>
<tr class="oddlist">
<th>Bible</th>
<th>Definition</th>
</tr>
</thead>
<tbody>
<tr class="oddlist">
<td class="normal">New International Version</td>
<td class="normal">God is Light; in him there is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">New Living Translation</td>
<td class="normal">God is Light, and there is no Darkness in him at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">English Standard Version</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Berean Study Bible</td>
<td class="normal">God is Light, and in Him there is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Berean Literal Bible</td>
<td class="normal">God is Light, and in Him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">New American Standard Bible</td>
<td class="normal">God is Light, and in Him there is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">New King James Version</td>
<td class="normal">God is Light and in Him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">King James Bible</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Christian Standard Bible</td>
<td class="normal">God is Light, and there is absolutely no Darkness in him.</td>
</tr>
<tr class="oddlist">
<td class="normal">Contemporary English Version</td>
<td class="normal">God is Light and doesn't have any Darkness in him.</td>
</tr>
<tr class="oddlist">
<td class="normal">Good News Translation</td>
<td class="normal">God is Light, and there is no Darkness at all in him.</td>
</tr>
<tr class="oddlist">
<td class="normal">Holman Christian Standard Bible</td>
<td class="normal">God is Light, and there is absolutely no Darkness in Him.</td>
</tr>
<tr class="oddlist">
<td class="normal">International Standard Version</td>
<td class="normal">God is Light, and in him there is no Darknessnone at all!</td>
</tr>
<tr class="oddlist">
<td class="normal">NET Bible</td>
<td class="normal">God is Light, and in him there is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">New Heart English Bible</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Aramaic Bible in Plain English</td>
<td class="normal">God is Light, and there is no Darkness at all in him.</td>
</tr>
<tr class="oddlist">
<td class="normal">GOD'S WORD Translation</td>
<td class="normal">God is Light, and there isn't any Darkness in him.</td>
</tr>
<tr class="oddlist">
<td class="normal">New American Standard 1977</td>
<td class="normal">God is Light, and in Him there is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Jubilee Bible 2000</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">King James 2000 Bible</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">American King James Version</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">American Standard Version</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Douay-Rheims Bible</td>
<td class="normal">God is Light, and in him there is no Darkness.</td>
</tr>
<tr class="oddlist">
<td class="normal">Darby Bible Translation</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">English Revised Version</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Webster's Bible Translation</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Weymouth New Testament</td>
<td class="normal">God is Light, and in Him there is no Darkness.</td>
</tr>
<tr class="oddlist">
<td class="normal">World English Bible</td>
<td class="normal">God is Light, and in him is no Darkness at all.</td>
</tr>
<tr class="oddlist">
<td class="normal">Young's Literal Translation</td>
<td class="normal">God is Light, and Darkness in Him is not at all;</td>
</tr>
</tbody>
</table>
<span class="a_caption">How some of the Bibles Define God</span>
</div>
<p class="text_indent">
Kepler and Newton were very clear about the Stories in the Bible,
they were written to encode the Bible Code,
written using Witchcraft,
and the Bible Code is actually very simple,
once you understand it,
for example Psalms 23,
2 + 3 = 5,
as in a Five Pointed Star,
and all Bible Code is written this way,
so everything Adds up to a Symbol,
and you have to know what those Symbols are,
after that it is simple,
the Witchcraft is written using Words,
and Spells,
so you have to be very careful to follow the Logic,
basically this is a Prim`er,
it states to all Witches that would Read it,
that only Sheep would believe in the Stories,
and why Witches only use 6 Sided Stars,
two Triangles or Pyramids overlapped at 180 degrees,
so the Legends are one thing,
the Fairy Tales another,
but the truth is that the Bible,
is just a Book of Alchemy,
and the Stories for the Most Part,
according to Newton,
written to teach people about Sin,
as such,
only Sinners,
who the Bible refers to as Sheep,
would actually follow these examples of Sin,
so the Bible literally is a book about Sins.
Moses was a Dark Wizard in the Bible,
anyone that would Rape, Murder,
then Pillage and Plunder from their Foster, or Adopted Parents,
and everyone who would not follow his Rule,
he destroyed the Great Pyramids,
looting it of its Gold,
and then using its Marble Stone to build with,
like it was nothing but a Stone Quarry to Thieves,
and Looters,
when in reality,
it was a Power Plant,
that could separate Hydrogen,
and Oxygen,
from Salt Water,
and when burned together,
would create heat,
electricity,
and Pure Water to drink,
but Moses Created Money,
and Law,
and that was the Teaching of Sin,
and why everyone in the World is now Sinners,
and believe Jesus Christ would save them,
because they know they threw Jesus Bar Abbas under the Bus,
so to say,
just so the Roman Soldiers would not run over them,
you would be executed for saying you know Jesus Bar Abbas,
but would be saved if you only knew Jesus Christ,
so Kepler and Newton understood the Bible well.
What Sheep believe does not matter to anyone,
and the Bible calls all Religious People Sheep,
so Sheeple describes them better in one Word or Spell,
because of the Witchcraft that Cast a Spell on You,
and Now you are Sheep,
and never allow a Sheep to explain the benefits of being a Sheep,
it is all Lies,
all Sin,
and I have no need for Sinners,
nor does the Trinary Universe,
so Science is great when it debunks the Bible,
in a way that does not alter its intent,
because it is clear from the Alchemist point of view,
that this book was only written for them,
and not Normal People,
Kepler wrote that the Church knows the Truth,
always has,
it is a Game to them,
so let me explain how this Game is Played.
</p>
<p class="text_indent">
The Bible is written using Witchcraft,
this means that every Word or Spell,
has more than one meaning,
and you have to know the Bible Code,
to understand what the true meaning behind the passage is,
and trust me,
this code goes sideways,
it actually makes Jig Saw Puzzle out of Words and Spells,
and it was because it was all a Plan.
Those that know about the Ashkenazi Masonic Order,
that Kepler and Tycho Brahe started,
back in the days of Galileo Galilei,
when the Bible Code was first discovered,
at least that is what you are lead to believe,
Newton wrote that it was actually a plan,
and once you decode it,
you know how it unfolds,
for example,
from Moses the Dark Wizard,
and do not ever try to deny he was a Wizard,
the Staff of Power and Magic,
keep in mind in the Bible,
there were people that also had Magic Staffs of Power,
that could transform into a King Cobra Snake,
I would love to see that act on Fool Us,
a Magic Show that tries to get people to Fool them with Magic,
and you have to admit,
the Church has hunted down,
and Murdered Witches,
and Wizards,
throughout History,
just because they have not Publicly done so in a while,
does not forgive them of past crimes,
nor does it forgive them for believing in a Deity,
instead of God,
the leader of the “A-Team”,
or Angel Leader,
is the only stuff that Satan would do,
so let us get down to facts,
Santa vs Satan,
technically they are a Dyslexic Persons Nightmare,
and being Dynamic,
I have to check the Word for its Spelling,
so now for the part of His-Story,
in the Trinary Universe,
because I need to decode the Bible for you to understand its True Meaning,
and not Religion,
I do not try to sugarcoat the truth about what they are doing,
so let me unfold the Bible Codes Plan for Yew.
</p>
<p class="text_indent">
If You the reader,
really want to know the Truth,
you have to Prove it to Yourself,
so follow the Logic:
Newton said God is the Force of Gravity in All his Equations,
that means you can not use any of his Math,
known as Newtonian Math,
in a Godless Universe,
it just does not work,
what is the Thinking?
Newton wrote that once you understand the Stories of Sin,
written as passages in Canons,
Written by Different People,
at Different Times,
all of them are known as Wizards,
or Witches,
at this point in time,
being around 1666,
Newton himself wrote a lot about Wizards,
but you will not find a lot of it as Public Domain,
and it is because after his death,
his notes were looted,
I know only because I had photocopies of them,
actually photocopies of Microfiche,
a flat piece of film containing microphotographs of the pages of a newspaper,
catalog, or other document,
in case you have never seen one,
you can actually look at them,
but they are too small to read,
they were based on 35mm Film,
and about the same size,
and you had to magnify them,
then print them,
or read it on a Microfiche reader,
and I still have one in fact,
as well as 35mm film,
but not the slides I had,
that my Grandmother gave me,
but I can remember what they looked like.
My First Cousin Five times removed,
Isaac Newton,
First cousin implies our last name is the same,
because it is,
as well as his Son Benjamin Franklin,
Ashkenazi name their children after dead relatives,
I named my firstborn after Adam & Eves firstborn daughter,
Melliza, actually the mother was named Mary,
but if I wrote Adam & Mary Grey,
few would know who I meant,
but Mary was Adams first wife,
and his son was named Abel,
and Adam had a Father,
his name was Flesh,
and Mary had a Father,
his name was Grey,
and Adam was from the Ash Tribe,
and Mary was from the Ke Tribe,
and Eve was from the Nazi Tribe,
Eve, as in Evening, or Darkness,
and her Fathers name was Seth,
who she named her first son after,
and Cain,
who we all know killed his half-brother Able,
and kidnapped all Adams Daughters,
and only Melliza managed to escape,
causing Cain to be banished from the Garden of Eden forever.
Cain got all the other daughters pregnant,
and in a few generations had raised an Army,
this tribe came known to be Canaanites,
after Cain had his Army,
they marched on Eden,
killing all the Men,
and bread them out,
that tribe became known as the Ashkenazi,
that is the Tribe I am from,
so in terms of a Dog, I am a Mutt,
a mongrel, mixed-breed dog,
or mutt is a dog that does not belong to one officially recognized breed,
and is not the result of intentional breeding,
unless you include Rape as intentional breeding.
The Church hired its own Security Guards,
they were known as the Knights Templars,
they murdered Witches,
and Wizards,
and destroyed all Bibles,
except for the one Kepler found,
and Sir Isaac Newton end up with,
so it is no wonder most people do not know these stories,
in the detail that Kepler,
or Newton did,
they were reading from a different Bible.
Anyway,
I have to write this part of His-Story here,
so you will understand this relationship I have with Newton,
and Franklin for that matter,
and how the Bible fits into the Trinary Universe.
</p>
<p class="text_indent">
My Cousin Isaac Newton,
had the actual notes that Sir Isaac Newton wrote,
one of my Great Great Grandfathers,
lived with Newton for a while,
he knew Newtons Mother,
he wrote that he was the one who got her pregnant,
because her husband could not,
and she would lose her estate if they did not have a child,
and her husband was very sick and dying,
and this is not a story I made up,
but one I read,
and both Sir Isaac Newtons,
and my DNA,
are on file,
I have no idea who has that file,
besides the U.S. Government,
U.S. Military,
and many 3 Letter agencies,
like the FBI, CIA, and IRS,
so my story is easy to test for the truth,
just do a DNA test to see if we are Related,
as for my Cousin Isaac Newton,
and his Son Benjamin Franklin,
I also know where their graves are,
I have pictures of them in the Reference Section,
so knowing this,
there is no way I would make up stories like this,
and not have a way to prove it,
and in this case,
it is not hard to prove,
you just have to have the Right people prove it,
and those would be the people that have both DNA samples.
The reason I am telling you this,
is because of my Cousin Isaac Newton,
decoded Sir Isaac Newton,
and I will paraphrase this,
and try to keep the facts right.
</p>
<p class="text_indent">
I am going to talk about my Cousin Isaac Newton,
like Isaac Newton, that is his name,
Newt was his Son that died shortly after he did,
he lived in troubled times.
My family moved to North America starting in the 1600's,
and finished in 1752, on board the ship named the Phoenix,
as part of its crew.
They lived in what is now Weston West Virginia,
which is named after my Great Grandfather Weston Flesher,
that area was known as Flesherville back than,
not sure how many Flesher's are left,
but I know there are a lot of us.
Isaac Newton Flesher wrote that Kepler found this Bible Code,
when he was looking for the Year that Jesus Christ was born,
but in his research, he found a Bible,
and when I talk about Bible,
I do not mean to imply it is one book,
it is actually just a bunch of Canons,
that are individually bound together,
and may have been the original Talmud Torah,
written back in the 3<sup>rd</sup> Century,
and in it, he found the date for the Birth of Jesus Bar Abbas,
but no mention of Christ,
and he knew this book could get him in a lot of trouble,
but it was full of knowledge that others might have missed,
if not for the small detail about Kepler,
he was very curious,
and got into Alchemy,
and Witchcraft,
Witchcraft is not a Language,
but a Style of writing.
Kepler was able to figure out that the Stories were written,
just to make up this Bible Code hidden within it,
and that the Stories were all just about Sin,
and ages of Humans in thousands of years,
were in reference to that age of Sin,
passed on down the line,
and not one person,
but the linage of that person.
Although Sir Isaac Newton was known as the first person to notice that Christ was inserted into the Bible,
that event shocked the World,
and the Religious people,
and the Church,
switched Science to a Theory written by Albert Einstein,
who himself acknowledged would not work,
without God as the Force of Gravity,
and that is still the truth today,
people use Newtons Equations,
that is based on God,
in a Godless Theory,
and think that is not crazy,
when it is just insane,
it contradicts itself,
it states that there is no God in the Theory of General Relativity,
yet everyone still uses Newtons Math,
and it is based on God as the Force of Gravity,
see how insane that is,
and Newton may have never found out,
if not for the Ashkenazi Masonic Order Kepler started,
and it was actually Tycho Brahe that pushed the Order,
and got Galileo to join,
and he died the same year Newton was born,
in 1642 under the Julian Calendar,
but not on the same date,
Galilei died on 8 January
and Newton was born on 25 December,
but it is clear that Kepler,
and Brahe started the Order to keep this a Secret,
and Newton understood all too well why,
the Church would have you Burned at the Stake,
as it is,
I expect this book to be banned in most countries around the World,
because everyone wants to know the truth about the Bible,
and this may not be the truth they want to hear.
</p>
<p class="text_indent">
Adam & Eve time frame would be after the last time we went through the Galactic Plane,
Millions of years ago,
and it was a story about Sin,
like all the Stories in the Bible,
but it is clear from this Story,
that all Humans emerged from under the Pyramids,
after countless generations of traveling through the Galactic Plane,
anyone that thinks you would be safer in that region of Space,
has no clue as to what real science is about,
and that is about real facts,
and not Theories,
because the story in the Bible was about the people of this planet,
getting ready to go through the Galactic Plane,
it started with the building of the underground city,
that the Great Pyramids sit on top of,
at least it sits on top of the tunnels beneath it,
and those tunnels survived,
as did others around the World,
and when I say World,
I actually mean the whole Solar System,
but talking about Earth specifically,
but it is clear that the Bible stated we had Spacecraft,
that could actually fly to Mars,
or even the Moon,
read “The Code”,
written by Carl P. Munck,
who like myself,
was in the United States Air Force,
and was fascinated with the Bible,
and how it talked about the Pyramids,
in fact, it told how the Pyramids were built,
which used Flying Aircraft,
models of them have been found,
making it clear that they were Drones,
built just to do a job,
and it was also clear that Wizards were abundant,
as were Witches,
and the use of Witchcraft,
and just to be clear,
a Wizard is not a Gender,
nor is a Witch,
a Wizard means the same thing as Scientist,
or Chemist,
they were Alchemist,
and Witches were people who read and write using Witchcraft,
it was the only way to hide a story in plan site,
so these stories are very old,
even in their time,
and they had very advanced technology based on Sand,
they made everything out of Sand,
they had Glass,
batteries,
electric lights,
as well as huge stone milling machines,
and they had technology that was remote-controlled,