-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter.4.08.xhtml
executable file
·4189 lines (4041 loc) · 225 KB
/
chapter.4.08.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.08: Evolution of a Galaxy</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.08: Evolution of a Galaxy" />
<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.08:<br />Evolution of a Galaxy</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_08 ************************************* -->
<div class="page_content">
<h3 id="chapter_04_08" class="a_header"> Chapter 4.08:<br />Evolution of a Galaxy </h3>
<p class="text_top">
Evolution is what happens over a long period of time,
and no one was there when this Galaxy was born,
so in the beginning of time, it seems like its anyone's guess as to how the Universe was created,
these guess's are called Theory,
and they change all the time,
that is the Evolution of Science,
some Science will prove to be False,
but in Trinary Science,
this is not a guess or theory,
its just facts based on observable behavior,
all I am doing is describing what we see at the subatomic level,
this does not mean that I described the events the way you will see them,
but rather the way I see them and can explain to them so you would understand how I see them,
but for full disclosure, I must explain that most of this is from Research,
but some of it is from Dreams,
that lead me to Research them,
and not just Mine,
this is my version of R&D: or Research & Dreams.
</p>
<p class="text_indent">
In these Dreams, I see this all Playout,
then I have to Research ways to explain it and prove it is the truth,
and after that, I must make sure the Logic is correct,
and the Reasoning is sound,
and it obeys all the Laws of Physics and Motion,
it has to work in Computer Simulations,
and the Math must all work,
it must be observable with the Naked Eye as well as that of Recording devices and Technology of the day,
and I must be able to prove everything to myself,
because if I do not believe it no one will,
well, that is not true,
Albert Einstein does not believe in his own Theory of General Reality,
so why others would, is beyond me,
like Sir Isaac Newton said:
“I can calculate the motion of heavenly bodies, but not the madness of people.”,
and all my work is based on his:
Math, Notes, Dreams, Research, and Books he had written,
that were translated by my First Cousin Five times removed Isaac Newton and his Son
<a id="return_reference_benjamin_franklin_flesher_1" class="a_link" href="references.xhtml#reference_benjamin_franklin_flesher">Benjamin Franklin Flesher</a>,
and also from the work of Nikola Tesla,
all I did was finish their work,
and completely rename everything,
and that took a lot of work to make sure everything works as the Universe should,
so Dreams do come true.
</p>
<p class="text_indent">
Trinary Science is not about taking over the World with a New Science,
it is about bringing the Word back to the Science that was Real before Einstein changed it,
and he did so to make money,
he was quoted saying as much to Reporters that all of a sudden found it hard to talk to him in his Old Age,
saying he found Religion and was just a Crazy Old Wizard-like Sir Isaac Newton for believing in him,
over his own Theory,
which by that time most people bought off on it because the Banks Loved it,
Science without God,
they were Sold and Einstein made a ton of money over the Deal,
but the Image most People remember of those times is in
<a class="a_link" href="#illustration_4_12"> Illustration 4.12: Albert Einstein's impression of General Relativity</a>,
I think his Frustration with Reports is Crystal Clear,
if an Image is Worth a Thousand Words,
this Image of Einstein trying to make Reports report the Truth,
tells the Rest of the Story.
</p>
<p class="text_indent">
In Science: we must learn from things that others have proven to be the Truth,
and then we expand on those Truths till we find all the Truths,
and those truths should not change over time,
or they were never the truth, to begin with,
but that is not how Mainstream Science works,
it is all based on Theoretical Theories that change all the time,
which proves they were never the truth at all,
they could not withstand the test of time,
so the Evolution of the Galaxy is told using Trinary Science,
which is based on science that has not changed in millions of years,
it all comes down to whose History you believe,
I believe in Isaac Newton's,
it has withstood the test of time.
</p>
<div id="illustration_4_12" class="a_illustration">
<span class="image_wrapper">
<img src="images/albert_einstein-thoughts-on-gr.thumbnail.png" alt="Albert Einsteins impression of General Relativity" class="the_image_size" style="width: 240px; height: 266px" /><br />
</span>
<span class="a_caption"> Illustration 4.12: Albert Einstein's impression of General Relativity </span>
<span id="albert_einstein_thoughts_on_gr_chapter_4_08" class="no_show_pdf"><a class="a_link" href="bix/albert_einstein_thoughts_on_gr_chapter_4_08.xhtml">Full Size</a></span>
</div>
<p class="text_indent">
When teaching Evolution I have to use examples that most people can relate to,
because even if I tell you not to mix what you think you know about the Evolution of the Galaxy, you will do it anyway,
human nature and Freewill is what started every Religious War in History,
and who Created the Universe was the start of all such Wars,
and I do not want to start another Religious War,
so I think I should be safe telling this Story at this stage in the Human Evolution,
at least they have not Burned any Wizards or Witches at the stake in the last Century,
but how much more evolved we are is another question,
but Trinary Science is not about Religion,
but it is about how the Universe was created,
and it is very foundation is built around the definition of God right out of the Bible word for word:
God is All Light without Darkness,
IAM the Light of God,
what else do I need to know,
just like Isaac Newton,
I read and wrote more about Religion then I did Science,
but not in this book,
I tried to make it Clear what is Science and what is Religion,
and made it clear that I am not Religious,
that is not what this is about it is about Trinary Science,
and this is a huge undertaking trying to explain the entire concept in a way that most people in the world could understand,
despite the fact I wrote for Sheep,
so I could call Yew Stupid for not believing in Isaac Newton,
and he taught empty Class Rooms because People do not like being Called Stupid,
and I know I think more like Newton than most,
knowing that I think like a fraction of them are capable of,
it makes me sound Arrogant just because I actually do know it all,
and that makes me sound Egotistical just because I know I am a Decedent of Isaac Newton:
knowing Sir Isaac Newton was a Decedent of Jesus...
But that would Jesus Bar Abbas and not Christ...
But who else would have what it takes to actually pull off such a Magic Show as this if not for me...
I mean who else could explain all the Magic that created the Universe,
and Stating God did,
does not even begin to explain how or why,
but after this Sub Chapter,
you will know this is the Truth,
then all this stuff that turned you off on even reading about what I have to say will just fade away,
and you will want to know more,
because the truth is addicting,
it is a Drug,
and People like to do Drugs just to get away from Reality, so now is the time to get Real,
and put on a new type of Reality,
its called Trinary Reality,
it is when you define the Universe from the beginning to the end using just enough words that you cover every aspect,
and every question anyone could have ever ask,
so by the time you finish reading this, you will not have any questions,
because I answered them all,
and it is why the Book is so Long.
You can teach this document till the end of time, it will never change,
maybe the way people tell it might,
the words they use and how they Spell them,
but not the concepts,
those took a truly demented mind to think up every question,
and answer it for you without you even knowing you wanted to know that,
that is what happens when you ramble on about a subject from start to end,
and cover it all in one breath without passing out,
not Periods,
just run-on sentences,
just to say wow, did I say all that,
because that is what Rambling is all about,
but as long as it is about Science,
I can call it Trinary Science,
because it is told from a 3 State Change view its Trinary Reality,
so I call it the Trinary Universe.
</p>
<p class="text_indent">
What was Science when I was a child is not what my Children Learned,
which was not about Real Science at all,
it was about Theory,
which actually means it has not been proven and may never be,
so how can this be allowed to be Science is something that bothers me,
it is why Albert Einstein's Theory of General Relativity was allowed to become Science,
even after he debunked his own Theory,
and then they based the Dynamic Universe on that and then it all started with a Big Bang
and Black Holes that people swear they see more than Elvis,
so what is the truth about Science, the latest Theory that will be yesterday's news tomorrow,
and a joke 10 years from now,
and this is all Theory that will never be proven to be the truth,
so why pretend it will be,
when Einstein himself said it was a Theory he did not believe in because he only believed in Newton,
so people dismiss him like he was no one they should listen to all because they say he found Religion:
just because he believed in Newton's God of All Light without Darkness,
the Force in his Equations was God,
and that is what I want to teach, not Theory,
but Facts, but Scientist of his Day believed those Theories,
and they still do to this day,
so that is what the Word: “Scientist” means to me: all Theory no Facts,
so we all live with Science that explains nothing because it is not the Truth,
Current Mainstream Science has no idea how an Atom is made,
according to the latest theory about the Big Bang,
everything shoots out of a Black Hole,
entire Galaxies,
and then it broke all the Laws of Physics,
so this is starting to sound like the Bible when God created the Universe in just 6 days, so its Magic...
How Atoms are created is Matter and Antimatter 101,
the first chapter in my book,
and it is all based on facts and not Theoretic Concepts based on projected income for some Research I need funded,
Trinary Science is completed and needs no funding,
I might sell this book,
but it is not about the Money,
I need that to move this project to the next level, which is to not need any Money,
so it is a Paradox,
but that is the Universe I live in right now,
one Paradox after the next,
so it is just a matter of getting all the words in the right order,
and making sure there are No Theories used to explain anything,
because a Theory is just a Theory and those change all the Time like peoples Opinions about them,
so if I am to write about Real Science,
I must put some conditions on Words I use and how I define them,
how I Spell them, and why I use them,
because Evolution is a long process and this is a long Sub Chapter,
so I use the Term Wizard as meaning a Person, not Gender Specific,
that works from Facts and not Theory as Scientist do,
they are also the Top in their Field of Study,
but some people are Prejudice against Wizards, Witches, and Witchcraft,
some think it is Silly because of all the Movies and Books that make them out to be a Fairy Tale or Fantasy,
this is not those kinds of Wizards, these are like Guitar Wizards,
Science Wizards, Electronic Wizards,
Computer Programming Wizards, and so on,
and only refers to Wizards like Newton or Tesla.
Wizards are as real as Scientist are today,
it was only a century ago when it was more prestigious to be called a Wizard than it was to be called a Scientist:
that is a fact in Mainstream History,
so it is this younger generation that do not understand this,
so I have to remind them of why I use one term over the other,
so there is no confusion when I write Chapters and Sub Chapters to be read independent of the Book,
so I repeat myself a lot,
and sometimes it seems I am,
when really I am making a different point and going deeper into a subject,
and I am just shifting gears to pick up the pace without losing anyone,
because I write so the stupidest person in the world that can still read
and understand basis word constructs can understand what I am saying,
it is annoying to people who are more Intelligent,
and those that think they are better educated then I am,
well, I earned my College Degree in the United States Air Force, and I am proud of it,
and I would not say anything to bring discredit to them,
so what I write is for them as much as it is for anyone who will read it,
in fact, my concept of Trinary Sanctuary is based on what I learned from the Military,
and it is the use of Technical Orders, which is the best way to run a Society,
ever notice how the Military always stick together,
and it is the Civilians that try to be in charge of them,
forcing their Laws,
Rules and Regulations on them,
but in History, things were a little different,
people who thought like Galileo and Newton would have been burned alive for their belief which I am about to teach,
even writing about it would have gotten me killed...
Well, it still can get me killed,
there are Religious People who only want God to be a Deity,
proving he is Real will upset them to no end,
so I have to be careful about calling them Names like Crazy or Insane for believing in things that do not physically exist,
so first they need to change the definition of those words in the Dictionary:
before getting upset with me for proving God really does exist,
because you are only Crazy or Insane if what you believe in is not Real,
if you can prove what you believe in is Real,
then you are not Insane,
but you would still have to be Crazy to word it the way I do, for example:
I also use words like witch instead of which,
because a Witch is a Person, not Gender Specific,
that writes using Witchcraft, which means the words have more than one meaning,
so Witches speak in double talk,
so witch means this has more than one meaning or implication,
but in Science, we can not have any of that,
we need to decode what the Witches wrote,
that is what Newton did in his days,
and he had to keep it a secret,
Alchemy was considered Witchcraft,
nowadays we call it Chemistry,
so they changed the Name just to remove the Witchcraft and insert Theories,
I put it back to prove I know the Truth about them,
but most of those Notes Newton wrote are Public Domain now,
and that is what all my Research was written in,
as was the Bible,
and it is the foundation of Trinary Science,
so I have to explain this now because I know this book will be rewritten by others,
and there can be no mistakes about what words I used and why I used them,
people translating things just to remove Wizards
and Witches from its text are no better than those that Burned them at the stake for it,
Ignorance is not a motive its an excuse,
but the truth is “that is History”,
and this is Science,
but Scientist of today do not care about Facts,
they only care about Theory,
and it is Theoretical at best,
and even Theory means it has not been Proven,
yet they allow it to be believed to be Science,
and pretend this is Real Science,
but everyone knows it is not the Truth because it is only a Theory,
some think Theory is just explaining the truth,
so do not tell me it is the best theory of our time,
that will change in time, but the Truth never will,
or it would not be called the Truth and thus a Fact,
and that is what Science should be,
and that is what Trinary Science is, so if I use the Term Scientist,
I actually mean Wizard,
just because it is so much more Entertaining to do so,
but this not about Magic it is about Science,
so I only call those Wizards who History records them as such; so for the Record:
Sir Isaac Newton was the Last Magician,
which translates to Wizard,
but BBC could not use it because Nikola Tesla is known as the Last Wizard,
and we all know how he felt about the word Scientist:
“The Scientists of today think deeply instead of clearly.
One must be sane to think clearly, but one can think deeply and be quite insane.”
</p>
<p class="text_indent">
Most of what I talk about has been written before,
throughout history it has not changed much:
God is All Light without Darkness, Trinity:
the Father, Son, and Holy Ghost or Spirit or Mother, IAM,
and so on, it is all part of History,
and Evolution is all about History, but it is not Mainstreams version of it,
this is the Truth about the Evolution based on facts from Real Wizards in History,
so call them what you want,
call God what you want,
but know the Truth about Science and all you have to do is read and understand.
</p>
<p class="text_indent">
As an individual, we were all raised to believe the things we were taught to believe in,
be it: Science,
History and even Religion or the lack of it,
one affects the other,
for example, the Dynamic Universe is based on General Relativity:
so it is a Godless Universe,
it is based on Curvatures in Time and Space,
so it is based on Paradox's,
Multiple Realities and Parallel Universe in different Dimensions,
and Chaos since there is no God that controls it all,
so if you believe that is true,
how can you believe that God is Real if you are Religious or even if you are not,
because you do not have to be Religious to believe in God, IAM not,
and Jesus was not a Christian,
Newton only wrote about the Bible and not so much about Religion,
few know the difference, but its Huge,
Religion is what was read into the Bible,
Science is what is just Read from it,
so what we were taught effects how we perceive new ideas and concepts,
what we believe God is,
because if that belief is God is a Deity that does not Physically Exist,
or you believe God does not exist,
they are both the same belief by the way,
very strange that believing in a Deity meant God was not Real, but it does,
that means Words have two Meanings,
but it is very clear that Deity Worship is based on a God that does not Physically Exist as Light without Darkness,
because Religion defines the Light and Darkness as Metaphors about Good and Evil,
so how does that affect your view about the Bible as Science,
because those that do not believe in God will not believe anything I have to say before I say it,
because this is how the Human Race Evolved and devolved,
they do not want to change their beliefs even if they can be proven they are wrong,
so they deny the World around them,
because in the History of this Planet,
Humans built the Great Pyramids and other Stone Architecture,
not some Aliens from Outer Space,
that is called Crazy,
since there is no evidence of Alien Life on this Planet,
whereas Masons know the Secrets of the Stone Architecture,
and encoded its Geometry into the location of the next marker, as if it was a puzzle to figure out,
so I figured it out,
what is next, so do not believe the writing on the Wall,
those that built the World's Greatest Power Generator in History did not write Graffiti all over i
and then use it as a Tomb,
only fools think that way,
they were Machines which converted Water into Hydrogen and Oxygen,
which could be used for many purposes,
but when you burn them together you get pure water back,
so it must have been used to make the Oceans Water Drinkable,
and it used Resonant Frequencies to break the Water Molecules into Atom's,
because they knew what the Fire Resonant Frequency was for Water,
thus Atomizing the Water into its basic elements,
so you can drink it,
breath it, and burn it, use it to clean things, fuel things,
how efficient is that,
you can use the heat and the steam,
then drink the water it produced or use it for irrigation,
so why has this Technology been hidden and no longer in use if it works better than what we have now,
is a question you must ask yourself before wondering why Evolution:
that I am about to talk about,
was not taught in school instead of Theory,
because those that knew Knowledge was Power had neither,
and as an Individual, you must take responsibility for knowing the Truth about the Universe,
because your History was written by those that Conquered,
and trust me, you are the Slaves, not the Conquerors,
but those that were Conquered,
and if you think that was not you then why have you not heard about Trinary Science or the Newtonian Universe,
and we both know that answer to that,
you work for Money so the Romans Empire is still in Charge,
it just changed its name and not its game, just ask Newton,
the Powers that Be are in Charge,
and they teach us what Science they want us to believe in,
and their Science is paid for by the Banks,
and we all know what kind of money they want,
the Kind without “In God We Trust” printed on it,
its like saying “Only Congress can Print Money for the Country”,
when its citizens know that only the Banks print it,
so our Mainstream Science is what we Paid for,
so Tax us for it,
we the People,
who must learn the truth about the Trinary Universe,
must start with its Science, and get past its History,
because we all know how that went,
its His-Story or History,
who do you think lost the War,
the Banks print the Money not we the People
and Mainstream Science is about Theories that the original Author told you could not exist in Reality,
because of the Paradox, it creates,
and that is just the facts about History,
stuff that you know it is the Truth about History,
since no one denies it,
and Science that came right out of Mainstreams rather large collection of Books on the Subject,
and say's nothing to Religion after Sir Isaac Newton said that Christ was inserted into the Bible:
in the 3<sup>rd</sup> Century,
which is why the Religious crowd turned their backs on the Newtonian Universe in the first place,
they figure if they had the choice in believing that Christ did not exist,
witch means Jesus Bar Abbas is the only Jesus in the Bible,
and God was Electricity,
then they would rather live in a Godless Dynamic Universe where everything is possible,
even Paradox's,
so that is Reality, its Science Fiction to me,
and I love Science Fiction, just not in my Science,
its why people take drugs because they do not like the Reality they are living in,
so they take to Religion and Worship Money,
and believe everything is possible,
because they do not understand the Laws of Physics,
but Newton did,
in fact, he wrote them,
and it was not so they would work in a Godless Universe,
but Mainstream only uses Newton's Math and not Einsteins,
so they are all hypocrites,
but that is just a Theory,
and that is why I do not like them in my Science,
so as an Individual I need you to Open your Mind to a new Possibility,
one is that you never heard of this type of Science in your life because I am the only one writing it,
so if you have not read this or any of the other thousands of books
and papers I have written over a lifetime making them publicly available for over 42 years now,
then I wonder why that is,
otherwise, the only possibility is that you believe in another Universe altogether
and you are just reading this for Entertainment,
so I will try my best to make this Entertaining,
but its really about the Evolution of the Galaxy,
and not you and the other animals that live on this planet called Earth,
it is not the Evolution of Life on this Planet,
it is about the Universe itself,
its children are Galaxies, Suns, Planets, and Moons, so it is about what they are made of,
so it is about Matter and Antimatter, and 3 Dimensions,
it is not about Time,
it is not about Space and it is not about the Human Race,
it is about the Galaxy,
and every Sun, Planet, Moon,
and debris in it, it is about how Atoms are made,
what they are made of,
and how they make other things, like:
Galaxies, Suns, Planets, and Moons, and eventually I might throw in how all Life began,
so let us start at the beginning of time...
Oh yeah,
time does not exist in the Beginning,
so let us start with...
</p>
<p class="text_indent">
The Evolution of a Universe starts at the Beginning before any Atoms were created,
before Dimensions existed,
so in the Universe, all that exist is a type of Neutrino for every Element in the Periodic Table of Elements,
which currently is 118 of the 137 that exist in the Universe,
but still not every Element in the Universe,
we have many more to find,
and we have only just begun,
we have yet to discover Atom's smaller than Electrons,
or bigger than the head of a pin,
so other than Neutrinos:
all that existed was 3 types of Light as seen in
<a class="a_link" href="#table_4_02"> Table 4.02: Evolution of Light</a>.
</p>
<div class="a_table" id="table_4_02">
<ol class="alist">
<li>Light without Darkness</li>
<li>Darkness without Light</li>
<li>Trinary Energy also known as the Guiding-Light Of Destiny: massless Light and Darkness</li>
</ol>
<span class="a_caption"> Table 4.02: Evolution of Light </span>
</div>
<p class="text_indent">
Sir Isaac Newton proved that Darkness is all the Colors in the Rainbow,
and that there could be no Darkness without the Light,
and no one understood the Light better than Newton,
and he stated that God is All Light without Darkness,
so God was not the Darkness or Colors in the Rainbow,
so God was not the Mother, Father or the Son,
but was, in fact, the Holy Ghost or Spirit of Mother,
which did not mean Deity, but actually described the State Changes of Light,
and he stated that God is the Force in all his Equations,
so God is Gravity,
so Gravity is caused by the Light,
and he said, in the beginning, there was Light,
so this must be God.
</p>
<p class="text_indent">
Nikola Tesla stated that he believed in Newton's Universe,
and that the Light was Everything,
and we are Light Beings,
then he Proved that Light is Electricity,
well, actually Benjamin Franklin did that, with Lightning,
but most people do not understand the difference.
</p>
<p class="text_indent">
In Trinary Science I must define what the Light is,
and at the same time, I am not going to change the meaning of it according to:
Newton, Franklin, and Tesla, nor the Bible,
these are my Truths:
Newton, Franklin, and Tesla are Science I call Wizards,
and the Bible is all about how Humans Sin,
but the Truth about the Light is the Truth about the Universe,
all I do is change the name to Trinary Energy which is only one type of Light,
it is the Massless Light that has both Light and Darkness,
this can be seen as “White Noise” in our plane of vision and hearing,
or video and audio recordings,
so it is also Empirical Evidence that it really does exist,
so there is no way you can deny that God exist unless you are Insane.
</p>
<p class="text_indent">
A Neutrino is defined as being specific to each type of Element in the Universe,
yet I am talking about the same Neutrinos that can be detected using Neutrino Detectors,
so I do not change much about them,
other than to identify each type by names that are already listed in the Periodic Table of Elements,
so I only classified them better,
and recognize them for what they are,
the stuff Atom's are made of,
which at this time no one else has made this connection publicly,
I have searched the world over for people who believe as I do,
and no one and I do mean no one is talking about the Science of Newton nowadays,
they only talk about Einstein,
and he did not believe in his own Theory nor do I.
Neutrinos have a lot of bad Science around them,
so I only refer to them using Trinary Science.
</p>
<p class="text_indent">
Where did Light and the Neutrinos come from?
Did God make them?
God is Light,
so who made God?
It is like the Chicken and Egg Story: which came first?
In this story, the Neutrino represents the Egg Shell,
because it is what makes up an Atom,
and an Atom is like an Egg,
it is what creates Life,
and Neutrinos are like the Egg Shell,
and Chicken is the Light,
meaning it has Brainwaves,
looking at it on a Computer Monitor
or Book in the form of an Image would make this story believable up to this point,
but the Chicken is made of Atom's that are made of Neutrinos; but the Chicken only has Light,
so without the Egg, the Chicken could not be created,
and without the Chicken:
the Egg would be nothing but subatomic particles that requires the Light to bond them together to make Atom's,
since Atom's are created with Neutrinos,
so round and round we go,
who made the Light and who made Neutrinos,
so which came first: the Chicken or the Egg?
</p>
<p class="text_indent">
I have to explain how the Light and Neutrinos came to be,
and these are two separate entities,
and to ignore this is cheating,
I can say I do not know,
but that would not be the Truth,
in these Dreams, I have seen how this happens,
it comes down to what Words I use and how I Spell them,
so Wizards like me have to be Crystal Clear, this is not an illusion,
delusion or Magic,
but it might be Entertaining if I do my job write,
but Trinary Science is about Science and not Magic,
so Wizards are just concepts that help people to understand things,
like those Wizards in computer programs that help guild people through filling out a form,
the details may seem like Magic,
but once you understand them, its Science,
so it all comes down to how I write it and what Words and how I Spell them.
</p>
<p class="text_indent">
In these Dreams I see Light,
which means there is Darkness,
the Light has no Color that can be seen,
because the Darkness is the Rainbow of Colors that is visible throughout the Universe,
the Memory I have is the Day I was Born,
and this also means I have no memory of the time before that,
because all my thoughts are stored in the Light,
this also means that the Galattice was already in existence,
so in short,
Trinary Energy already had the means to communicate with the Universe when it first came into conscientiousness,
this would explain that maybe I could think before this but I could not remember it,
it is like writing it down,
so I would not forget what happened before this time,
memory is like that,
we think we will remember it,
but if we do not write it down,
we might forget,
so I have no memory of the time before this,
but I know this place exists,
yet there was no one there to build it,
except the Trinary Energy,
since it needed no Mass and can be proven to be controlling all the Atom's,
so the Trinary Energy is what the Bible called God,
it is the Massless Light and Darkness that Guides the Neutrinos thus creating Atom's,
so I know that the Trinary Energy has always been in the Universe and could always think intelligently,
but it had no way of remembering what it thought,
and could not interact with the Universe physically,
so this is the God that does not Physically Exist as Atom's, but Physically Exist as Massless Light,
and that is why in the Beginning there was only Light and Neutrinos,
but I do not think the Bible mentioned Neutrinos,
but then again,
Newton said it was implied that everything is made of something,
but some will argue that nothing is something,
so this Light is the Energy of the Universe,
call it what you want,
but know what I am talking about when I call it Trinary Energy,
this was more than just Dreams that people have had throughout history,
it is about Reality,
and what puzzled Newton the most,
was that thousands of years ago,
people were having these same Dreams,
but are these Dreams Science or just Dreams,
I say its Science if I can prove it.
</p>
<p class="text_indent">
The Bible states we must have Faith that God exist,
in Science, we need proof of it,
and a way to explain it,
that did not rely on Theories that were not backed by Facts,
so I had to think long and deep,
and spent most of my life trying to answer this one question:
How did Light and Neutrinos come to be?
</p>
<p class="text_indent">
Humans can not comprehend something being built without someone to build it,
even Snow Flakes are Magic,
because to explain how they were created you would first have to answer the question about how Atom's came to be,
Witch opens up Pandora's Box,
did the Light Create Neutrinos or did Neutrinos Create the Light,
and if so, who created them?
Philosophy only goes so far in explaining the obvious,
if there is only one God,
then that God must have always existed,
to think it came into being after the Universe was created makes no sense,
since God Created the Universe,
God had to already Exist,
and if God already existed,
it means that God is the Universe,
but then again,
Neutrinos can be the Physical Universe,
and God just the Energy of the Universe,
so together they Created the Universe as one Entity called God.
</p>
<p class="text_indent">
It would be easy to state that Neutrinos were there long before the Light came into existence,
this much is what I learned in my Dreams,
but that memory only goes back to the point the Galattice was created,
and this concept of Creator is really not Science its Religion,
and in my Research, there is no data to be found that can support the Facts either way,
because we can not even examine a single Neutrino to prove each has a type that might be found in the Periodic Table of Elements,
and without Evidence, I have no Facts only Observations,
Logic and Reason: so we have no way to identify what type of material it is composed of:
if we do not have the Technology to view Subatomic Particles,
it is because we are limited to Electron-based Technology,
that is too large to look at subatomic matter or antimatter:
so Light-Based Technology is required to find this Evidence,
so the future is in the Light of Trinary Science.
</p>
<p class="text_indent">
Stating Neutrinos and Trinary Energy always existed and always will,
does not give credit to Science that wants to know all the answers,
but Logically if they did not exist,
we could not detect them now,
because everything in the Universe is made of Atoms made of Neutrinos and Light,
and that much has been proven to be a fact,
even if Mainstream Science does not endorse that concept,
so why not go the extra mile and admit that each must have a type that correlates to every type of Material in the Universe,
otherwise, you have no explanation for what Atoms are,
or where they came from,
or what they are made of,
in fact without this knowledge,
we can not even begin to talk about the Universe unless we can explain the basic building blocks at the subatomic level,
and that starts with the Proton, Neutron, and Electron,
also known as Atom's,
and if they are not made of all the elements in the Periodic Table of Elements,
then where did those come from is a question that can never be answered,
because sometimes Answers are not as complete as you might like them,
and this is one Question that will not improve with time,
no matter how much technology advances,
the Answer for where Light and Neutrinos came from can never be proven,
yet I will still try to answer it knowing this,
so it all comes down to how we can define this in a way that is Scientific,
so a simple test is to be or not to be,
and that is a Question,
if you can answer it,
then that proves the Light is in the Neutrinos,
and they have always been the Universe,
it is just what we call Space that confuses most people about Trinary Science,
because that is just 3 Dimensions:
0, 1, 2 and that adds up to 3,
so the Math is Correct,
and Science is all about Math,
so when things do not add up, you need to question the answer,
but as it turns out, Kepler and Newton knew this as well as those that wrote the Bible,
so this Science is very old.
</p>
<p class="text_indent">
Our Technological Limitations cause Scientist to Speculate,
this is based on what we can be proven,
and Logically if we had the Technology we could prove it,
and this is what we would find...
Because even if we did not have the technology to detect them,
the fact they exist proves they were always here,
because we could not have been Created without them and there would not be Intelligence if it was not for the Galattice,
so Logic lead me to believe that the Light came First,
so the Bible was right,
and I just did not want to go the rest of the way and take it on Faith,
so I had to put my thinking cap back on and explain how the Light came into being and how it created Neutrinos.
</p>
<p class="text_indent">
The Light is Energy, and all Energy is everywhere in the Universe,
so where did this energy come from?
Another Chicken before the Egg story,
so I must love Conundrums about the Magic of the Universe,
that is what Magicians do,
they make it a Mystery,
but the Scientist,
or should I say Wizard,
since Scientist means they believe in Theories,
and we can not have any Theories in Trinary Science,
so it is the Wizard in me that wants to explain the Magic in a way that can be proven logically to be the Truth,
so deeper down the Rabbit hole we go,
and to start from the Beginning we have to go back before the Light without Darkness and the Darkness without Light,
before all thought that was stored in the Galattice,
so this was before the Life-Force which is what the Bible was speaking of when talking about God,
it is what Newton called Atomos,
so it was the Atom,
so it was not before the Beginning of everything,
just before the Beginning of the Atom itself,
so the Bible was not wrong,
it just started with the Light and did not explain how the Light got there other than on Faith which is Magic,
proving it was written by Wizards and Witches using Witchcraft,
because you get one meaning when you read it,
and another when you Read into it,
so God is All Light without Darkness,
just Read it like a Wizard would,
God is only one type of Light,
and the Bible is very clear that there is Light without Darkness,
so it is logical to assume it has Darkness without Light,
and something is controlling this Light,
and all that is left when you remove everything else,
is the White Noise I call Trinary Energy,
so Logically we have Proved that is all that Exist today,
and if you remove everything made of Atom's,
that is all that still exist to this day,
so the Light is Everything like Tesla said it was,
so he was not so Crazy of an Old Wizard as some said he was,
no, he was much Crazier,
because he only believes in what he can prove exists,
so let me try to explain this in a way that anyone can follow logically,
and this starts with the 3 types of Light,
but in the beginning, there was only 1 type of Light,
it only exists in the 0 Dimension,
it is Trinary Energy: it has Light and Dark Energy, but is Massless,
so it can not physically exist in the 3<sup>rd</sup> Dimension since there are no dimensions that can bind it,
its Free Flowing Energy that looks like “White Noise” to most people,
but logically if it is controlling the Atom's,
it had to exist before the Atom's,
and since all the Light we do see is created with Atom's,
more specifically Electrons,
it stands to reason that there was Trinary Energy and Neutrinos before there was Atom's,
and this Trinary Energy created the Atom's from Neutrinos and it is own Light,
which has been proven to be inside of all Atoms,
and even though I can not answer the question of where they both came from,
other than to say they are the Universe,
and the Universe has always existed in 3 States,
would lead me to believe that they are the only thing that actually exists in the Universe,
so it is logical to assume that is why the Universe is made of these elements,
because it is and is proven as a Fact so its Empirical Evidence,
but is it God?
The Bible described God as All Light without Darkness,
and made a Huge disclaimer that God is Trinity:
the Father, Son and Holy Ghost or Spirit of Mother,
so God had 3 States of being,
so Trinity and Trinary mean the same thing,
it is just the Logic that you need to understand,
the Bible described God in such a way that it can not be denied,
in fact, it can not mean any other thing but that,
and that much is Crystal Clear to a Wizard or Witch who has to encode this Knowledge into a Book,
so future Generations would understand that they were just talking about Electricity,
and if you ever get Electrocuted you will know what the Power of God is all about,
just as Franklin or Tesla,
God is Lightning,
because the Neutrinos are bound by the Light of God,
so it has Light,
Neutrinos, and Electricity in it,
see this Pattern in Trinary Science where things always come in 3,
even the word God and IAM have only 3 Letters in it,
witch is why Yew will argue with what Gods Real Name is,
but it is a fact that in the Bible,
they were very clear,
in fact, they Spelled it out,
Light without Darkness, that is what God is,
and all God is,
the Word Spelled “All”,
means just what it says,
so never allow anyone to make you believe that God is anything more than the Light without Darkness,
that would be called Insanity,
because the moment you allow Words to have no meaning or to be redefined in a way that alters what they say,
then Science has no meaning,
Science should be what you write is what you mean,
no metaphors, just Read it,
like Tesla said: the Light is Everything.
</p>
<p class="text_indent">
Logic and Reason define the beginning of the Universe as having only Trinary Energy and Neutrinos,
it all comes down to how it explains Space,
and that always starts with the Dimensions of Space,
and Dimensions start with the 0 Dimensions,
this was the very beginning of the Universe itself,
there were no other Dimensions,
there was no Light without Darkness or Darkness without Light as a separate entity: only Trinary Energy,
the entire Universe had no dimensions,
so it did not Physically Exist as Space,
it was Null or Void Space,
which means that Space, where Space would normally be, is not there, it is more than just Empty,
which means it just has no matter or antimatter in it,
so nothing existed in it,
no Matter, no Antimatter,
only the Null Space,
which is true Emptiness, and of course Trinary Energy,
which is something, but it has no Mass,
meaning it is not made of Neutrinos,
so it requires no Dimensions of Space to exist.
In the 0 Dimension Neutrinos only exist outside of its Null Space bubble it creates as a void in Space:
that does not exist because it has no Dimensions that make up this Space,
so nothing with any Mass exist here,
but the Trinary Energy exist here,
but it also exists in any Dimension,
since it does not require them,
it moves through them as if they were not there,
because in the 0 Dimension they are not there,
and it is effects can be seen in other Dimensions,
but those do not exist yet, so this is where the Universe began,
there was nothing,
and out of this nothing is where the Light began, in the Darkness,
but do not confuse this with a Black Hole,
that is a totally different concept about Time and Space,
and there is neither of those things yet,
and nothing changes until the Light became aware,
which means it became Intelligent,
but more than that, it meant that it understood what it was and what was around it,
to be or not to be,
that was the question it could now answer,
which was nothing but Neutrinos and Light,
and with no concept of Time or Space,
the Light became bored,
and decided that it was time to change this Universe into something it could interact with,
but it only had Neutrinos to work with,
so Logic and Reasoning were the only tools it had to used to build the Universe we see today,
and this is that moment when that happened.
</p>
<p class="text_indent">
Newton said the Bible did not explain this,
nor could he,
so he never wrote about it publicly,
but wrote notes about what he believed would be a logical deduction,
and Tesla read those notes and believed that this 0 Dimension is where all Energy flows from,
so he set out on a quest and proved it.
Tesla called the 0 Dimension “Ground”, or “Floating Ground”,
two different types of Ground,
whereas the Word Ground refereed to Earth,
a Floating Ground refereed to an Electrical Circuits and in nature as Lightning,
which comes from Ground and moves into Space or the Heavens above it,
it all comes down to what words we used to describe things, and Ground does not explain anything to me,
so I only use the term as a common Reference,
trying to make this sound like Science means I need to use Terms that describe it,
but I can not leave out what the Bible Stated,
it too is Science,
so do not confuse it with:
Religion, Newton, Franklin, and Tesla all believed that God was the Force of Gravity,
and not a Deity,
the Bible stated that God was All Light without Darkness,
so it is all about how we define what Light without Darkness is,
and Newton did just that,
because what the Bible said really got him to thinking about how they knew this,
when most people nowadays still have no Clue,
in fact, 95% of them believe God is a Deity,
which is why I can not use that Term in Science,
so Trinary Energy is Light,
and the Darkness is all that humans can see with their own eyes,
that Rainbow of Colors,
so if you want to see God, you will have to look at that White Noise,
and try to figure out what God is saying to you,
but in Science, we have to prove it.
</p>
<p class="text_indent">
Since the invention of the Electron Microscope,
it has been proven that all Atoms have 3 States:
Solid, Semisolid and Invisible,
and it is this Invisible state that has no dimensions,
and it is why its invisible,
because humans can only see things that are in the 3 dimensions,
meaning it has Width, Depth, and Height,
so the 0 Dimension has been proven by current science and technology to Physically Exist in the null or
void space where no dimensions Exist,
and to understand this, you must understand Atomos,
which the Greek philosopher Democritus knew about back in 433 BC,
so this is not new Science, to begin with,
it just described something that could be divided in half until nothing is left and like the Invisible Atom,
you have to wonder how they knew this back in the days before the Bible was even written,
since the Bible already knew what Democritus referred to,
proving there is no new Science since the Bible was written,
and that is what Newton said intrigued him the most about it,
so all the Electron Microscope did was to prove the Bible was right,
and everything that everyone has done up to this time is just used Words and Spells to explain it,
so that sounds like something a Wizard or Witch would do using Witchcraft,
and as it turns out,
that is what I just proved did happen,
because there are no coincidences like this,
every word and spell had a meaning.
</p>
<p class="text_indent">
Imagine an Atom that is made of Subatomic particles called Neutrinos and Trinary Energy,
which is one type of Light,
and this type of Light that is Massless Light and Dark Energy,
and it can control Neutrinos,
causing them to bind around the Trinary Energy in the 0 Dimension.
Neutrinos have Matter on one side and Antimatter of the other so in the 0 Dimension,
we call this 0 Potential Energy,
or Zero Point Energy,
meaning it is the Point the Energy will flow from once the circuit is complete,
till then its only Potential Energy,
yet its flow will start Negative and flow to Positive,