-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathniku.tir
10100 lines (10100 loc) · 930 KB
/
niku.tir
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
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip(Recip((t0 - (x0 * x0))))) ^ x0),8.41860270191043,-174.35929712928737
t0,1.798011049723757,-6.301759103812452e-2
(Abs((x0 + (x0 * x0))) ^ (t0 + x0)),6.671627596239717e-5,-2092740.8843580137
t0,1.798011049723757,-6.301759103812452e-2
((t0 / x0) - (t0 * Recip(x0))),0.4615991558444686;0.8453217763792376,-Infinity
(t0 / (Abs(x0) ^ x0)),1.8936441149223209,-1.3325936044155573
(t0 + x0),0.17102734819014936,-0.6395738210321935
((x0 + t0) * t0),10.470590494760332;0.14561269006631794,-7.2869101779495e-2
(Recip((x0 / x0)) * t0),0.6417728365834454,-Infinity
(((Abs(t0) ^ x0) * x0) + t0),-0.4992818909487764;1.3429628299308793,-3.3930354173689385e-2
((x0 - (Abs(x0) ^ x0)) + Recip((Abs(x0) ^ x0))),,-121.8412176022877
(t0 - Recip(Recip((x0 / x0)))),0.4244389263967907,-Infinity
(t0 + (x0 / (x0 * x0))),-0.5215884326548235,-Infinity
((x0 + t0) - Recip(x0)),0.5664619104750663,-Infinity
(Recip(Recip(x0)) - (x0 * t0)),9.626130666013533e-2,-0.6386775021098045
(t0 * x0),0.9037386897153022,-0.6386775021098045
(Abs(((t0 / x0) + x0)) ^ x0),0.34917767398623467,-146.25687205650988
(t0 / (x0 * (Abs(x0) ^ x0))),0.8728511094429483,-Infinity
(Abs(Recip(Recip((t0 - x0)))) ^ (Abs(x0) ^ x0)),0.6332914328990538,-1.6885373344527675e66
((t0 / (x0 + t0)) - (Abs(x0) ^ t0)),0.5020628581889711;0.16383243193093877;5.514303535002179e-4,-6.111505820517392
((Abs(t0) ^ x0) / (Abs(t0) ^ x0)),1.2075457260136275;0.9239965416436606,-0.21775454514039758
(Abs((Abs(Recip(x0)) ^ t0)) ^ t0),0.7145554737702843;-0.8735807878536184,-0.45123191317181915
Recip((Abs((Abs((x0 * t0)) ^ t0)) ^ t0)),-3.800001546184539e-2;-0.7053094092637686;0.4319230063633821,-1.973316949866147
Recip((x0 * x0)),,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
(t0 / (x0 / (t0 + x0))),-0.7313847563105105;0.2720045398166202,-Infinity
(Abs((Abs(x0) ^ x0)) ^ t0),0.2261246451612747,-0.46169247301457006
((Abs(x0) ^ x0) - x0),,-96.30877521030958
(Abs((x0 * t0)) ^ x0),-0.45120644772622387,-1.4184553070472044
(Recip((x0 + t0)) * (t0 / x0)),0.5421241516338913;-0.11535030455377804,-Infinity
(Abs((x0 + t0)) ^ t0),9.695911815775288;0.24035135834202004,-6.253983989761064e-2
((Abs(x0) ^ x0) + t0),-3.854360575692638,-101.30236915269163
((((x0 * x0) + t0) * x0) * t0),78.06210252864398;1.0263392040257337e-2,-0.7105610473360066
(Recip(Recip(x0)) * t0),0.9037386956583315,-0.6386775021098048
Recip((((Abs((x0 / x0)) ^ t0) - x0) + t0)),0.43758554776777464;0.36089470748666086,-Infinity
(((t0 / x0) - x0) * t0),-0.9121224740653058;0.860962456244363,-Infinity
(Abs(x0) ^ (x0 + x0)),,-362607.6325164636
(Abs((x0 - (Abs(t0) ^ x0))) ^ (x0 + x0)),-1.5605732327601236,-2.630068581769213
(((x0 / x0) * t0) + x0),-0.7482773505089972,-Infinity
Recip(Recip((x0 * x0))),,-9.213170910613117
(Abs((Abs((Abs(x0) ^ t0)) ^ t0)) ^ x0),-0.5312917690575519;-0.425612927443048,-0.46169247301457
((t0 + x0) + (t0 - x0)),0.4202129647010357;1.3777980850227214,-6.30175910381245e-2
((x0 - x0) * t0),0.5701477022297199,-3.2958613259668437
((t0 * x0) + t0),2.453829446971383e-2;1.758087644555061,-6.265251369818786e-2
((Abs(t0) ^ x0) + t0),-1.020714615946371;0.7639586372593908,-6.270298155836097e-2
((Abs((Abs(Recip(x0)) ^ x0)) ^ x0) * t0),1.9787653074624874,-1.6732835635833827
Recip(Recip((t0 / x0))),0.6253293773553878,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(Recip((Abs(x0) ^ t0)) * t0),-5.962664321769312e-2;1.768825679822478,-5.0933129025460766e-2
((t0 / x0) * t0),-0.7362218424531064;0.7350857838911846,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip((Abs(t0) ^ x0))) ^ (t0 + x0)),-0.9811563811841257;11.273229483378822,-0.24758705900905834
t0,1.798011049723757,-6.301759103812452e-2
((t0 + x0) + (x0 * t0)),1.7580876445550615;-0.9754617055302864,-6.265251369818785e-2
(Abs(Recip(((x0 / x0) + (x0 * t0)))) ^ t0),-0.63042483284101;-0.9993196586366537,-Infinity
(t0 * (t0 - x0)),-0.1439570757818577;-10.612639209677727,-7.259724794298256e-2
(Abs(Recip(x0)) ^ (x0 + x0)),,-2.1436397824706503
(t0 + (x0 + x0)),-1.4559563337099108,-2.4287539559336637
(Recip(((x0 + t0) * x0)) * t0),-0.49258378583771156;0.7653945488005514,-Infinity
((t0 * x0) * t0),0.7697792759489744;1.1740231493548112,-0.6386775021098043
(x0 + t0),0.17102734806629827,-0.6395738210321936
(x0 / (Abs(x0) ^ t0)),-7.58091183495993e-5,-0.6689285187600185
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(Recip(Recip((Abs(x0) ^ t0)))) ^ x0)) ^ x0),6.95536344806641e-2,-0.5223945926682982
(x0 * t0),0.9037386898568044,-0.6386775021098048
(((Abs(Recip(x0)) ^ x0) * x0) * t0),2.5399696302321355,-0.43396774758530915
Recip((Recip((t0 * x0)) + t0)),0.8189041845832454;0.372942406680528,-1.0397684087083259
(x0 + t0),0.17102734806629827,-0.6395738210321936
(Recip((Abs((x0 + t0)) ^ t0)) / x0),0.3625339807499155;-0.37380086896941456,-Infinity
(Abs((Abs((t0 / x0)) ^ t0)) ^ t0),-0.2702616234932136;-0.797212819436667;-0.8453909053208073,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
((x0 + t0) + x0),-1.4559563535911602,-2.4287539559336646
((((Abs(t0) ^ x0) * t0) + x0) * t0),-0.8749009443294978;6.821101342844316;0.2513870438342965,-6.63896682819227e-2
((t0 * x0) * x0),0.3310420997016926,-1.3768291878445853
((Abs(((t0 - x0) + x0)) ^ t0) + t0),-1.4277991307980338;0.7937157611445439;0.4713446636281578,-6.301759103812452e-2
(Abs((x0 * t0)) ^ (t0 / x0)),-0.878344145195366;0.806964561514518,-0.7309039647689611
(Recip(x0) * t0),-0.4325108772733539,-Infinity
(Abs(Recip((x0 / x0))) ^ t0),3.54762523e-316,-Infinity
((x0 * x0) * t0),0.3310420997016926,-1.376829187844585
Recip((Abs(((x0 + x0) / x0)) ^ t0)),-6.2483135569544546e-2,-Infinity
(Abs((t0 * x0)) ^ t0),-37.353395997253095;0.13889578257763557,-6.321496420473649e-2
((x0 + x0) / x0),,-Infinity
Recip((t0 - x0)),-1490.7522097019869,-3.2982713522768683
(((x0 * t0) * x0) + t0),-7.606052798152769e-3;1.8227564900002733,-6.261686949529222e-2
((t0 / x0) * x0),0.8656553970681307,-Infinity
(x0 - x0),,-3.2958613259668437
((x0 * t0) + t0),2.4538286600973513e-2;1.758087658479552,-6.265251369818783e-2
Recip((t0 - x0)),-1490.7522097019869,-3.2982713522768683
Recip((t0 + x0)),0.30018946545227904,-1.6725629776198672
(Abs((x0 + t0)) ^ x0),-3.3542751269406597,-0.46543073016511166
(t0 * Recip(x0)),-0.931060306529258,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
((t0 / x0) - x0),0.7623945417057305,-Infinity
(x0 - (x0 / x0)),,-Infinity
((t0 - x0) / (Abs(t0) ^ x0)),4.462317504332967;1.3932366541152716,-1.0661109497677965
((Abs(x0) ^ x0) - (x0 - (x0 * t0))),-2.550618292479955,-75.14336014941036
(((Recip(x0) + (x0 * t0)) + x0) * x0),0.9952797647095044,-Infinity
(((x0 * x0) * x0) + t0),-5.47047863726647,-67.1166279550727
(Abs((Abs(Recip(Recip((Abs(x0) ^ x0)))) ^ x0)) ^ x0),,-7.20985233864889e42
t0,1.798011049723757,-6.301759103812452e-2
((x0 + x0) + ((x0 + t0) + t0)),-1.2711439719858257;-1.811796083262794,-5.430557995742532
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) * x0) + t0),-0.4992818909487764;1.3429628299308793,-3.3930354173689385e-2
(Abs(((x0 + t0) + x0)) ^ x0),-5.196673889456873,-1.4111633105082062
((Abs(((t0 - x0) + t0)) ^ t0) + t0),0.393448750266634;-0.8632081215973705;0.11967181333701803;0.7129565009792442,-5.927707923444612e-2
((x0 * t0) * t0),0.7697792759489744;1.1740231493548112,-0.6386775021098043
(Abs(((x0 * t0) * t0)) ^ x0),-0.8373618286917572;-0.5388428660895159,-1.4184553070472041
(t0 - (t0 * Recip(x0))),0.97480762164295;0.33648866404725725,-Infinity
(Recip(((Abs(x0) ^ t0) + x0)) * x0),-8.935161561011213,-1.2700028552234717
(((x0 * t0) - x0) * t0),-6.641767463971017e-2;-0.8474528427269488,-0.6386775021098046
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip((Abs(Recip(Recip(x0))) ^ x0))) ^ x0),,-2.07026854696619
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
((x0 * ((t0 - x0) + x0)) + t0),2.453829446971343e-2;1.7580876445550617,-6.265251369818783e-2
Recip((t0 - x0)),-1490.7522097019869,-3.2982713522768683
t0,1.798011049723757,-6.301759103812452e-2
((t0 / x0) * t0),-0.7362218424531064;0.7350857838911846,-Infinity
(Abs((Abs(x0) ^ x0)) ^ ((x0 * t0) + t0)),-0.23572915345933632;0.8700593018219986,-0.3840558082738586
((Abs((x0 * x0)) ^ t0) * x0),0.9521127870594834,-78.2134955603026
(Abs((t0 + (x0 + x0))) ^ (t0 / x0)),0.382721639601995;0.8303733708745298,-2.367311879270153e-2
(Abs((Abs(t0) ^ x0)) ^ x0),-1.0917744060428376,-0.39196512098800396
(Abs(Recip(x0)) ^ (x0 + (x0 * t0))),-0.9543470912038003,-0.7711186690015195
(Recip((Abs(t0) ^ x0)) * t0),-0.9875838799866996;1.7617556479853016,-6.268341269094631e-2
Recip((t0 - (x0 + x0))),-9033.79250362488,-3.2962592575563576
Recip((Abs(((x0 * t0) * x0)) ^ t0)),0.5764748013873349;0.7769150148115798,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
((x0 + t0) * (x0 + t0)),-1.4246534533709079;-1.4246534533710224,-2.170097125590018
((x0 * (Abs(x0) ^ t0)) * (x0 * t0)),0.6137106414319862;-0.3772702111081925,-18.255706843253677
Recip((Abs((x0 * t0)) ^ t0)),33.18405482355544;-0.14950275950298667,-6.2202006128568445e-2
(Abs((Abs(x0) ^ t0)) ^ x0),0.22612464515498062,-0.46169247301457
(t0 / ((t0 - x0) / (Abs(t0) ^ x0))),-7.5625522605608815;-4.132483876559012;1.1975883324554077,-6.98885307171204e-2
((x0 * t0) + Recip((x0 + t0))),0.6804006835861937;0.475017539958709,-0.22510392141952354
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) - Recip(x0)) * t0),0.15887761066247874;0.7798180901786651,-Infinity
(((Abs(t0) ^ x0) * x0) * t0),-0.46810249875891985;4.321189343959336,-4.079229144599816e-2
(Abs(t0) ^ (x0 + t0)),-1.0591596833951267;8.487147002995625,-6.702690937938373e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip((Recip((x0 * t0)) + t0)),0.8189041845832454;0.372942406680528,-1.0397684087083259
t0,1.798011049723757,-6.301759103812452e-2
(Abs((x0 + (x0 * x0))) ^ (x0 + t0)),6.671627596239717e-5,-2092740.8843580137
(Abs(t0) ^ (x0 + x0)),-1.1431852694033635,-0.21775454514039752
(Abs(((x0 + x0) + x0)) ^ t0),0.3375754360396091,-0.14879462446377073
((x0 * t0) + (x0 * t0)),0.7153188165211013;0.18841987333570318,-0.6386775021098048
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip((t0 - x0))) ^ t0),-10.754414815954009;-0.23304745760331227,-6.248483868823089e-2
(Abs((x0 * t0)) ^ (x0 + t0)),0.4250473556673887;0.5487217102836585,-1.818496244417269
(((Abs((x0 * t0)) ^ t0) + t0) * t0),-0.7419337025773218;-0.8386686685689204;1.5742512100086925e-2;0.5937547228305655,-Infinity
(Abs(((Abs(x0) ^ t0) + x0)) ^ t0),1.562812133098802e-4;0.5516194132691538,-0.13971520646018742
((Abs(x0) ^ t0) * t0),5.96266432176931e-2;1.768825679822478,-5.093312902546077e-2
(t0 - ((x0 * t0) + t0)),0.6218585970984825;-2.453829446971367e-2;-1.136229047456579,-6.265251369818786e-2
(Abs(Recip((Abs(x0) ^ t0))) ^ t0),0.726483327178458;-0.8592377971765992,-0.45123191317181954
((Abs(x0) ^ t0) + t0),9.671273902010509e-2;0.7695408606074225,-4.985094562874721e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) + t0),0.5744920530131518;2.4538294470157863e-2;1.7439905893865786,-6.26525136981878e-2
(Abs((x0 + x0)) ^ (t0 / x0)),-0.5544257428181711,-Infinity
((x0 * t0) + (x0 * t0)),0.7153188165211013;0.18841987333570318,-0.6386775021098048
(Abs((Abs((Abs((x0 + t0)) ^ t0)) ^ t0)) ^ x0),17.165632366554846;-0.26110865056990046;-0.34312920957278614,-0.22474782695791098
Recip(Recip(Recip((t0 / x0)))),0.7587461962468156,-1.196901674234846
(Abs(Recip(x0)) ^ (x0 + t0)),0.9603348128731937,-Infinity
(Abs((t0 / x0)) ^ t0),-0.3830679302244877;-0.9042213062474167,-6.059386810479349
t0,1.798011049723757,-6.301759103812452e-2
(x0 * (t0 - x0)),3.137868117513108,-0.36738115144141187
(Recip((Abs(x0) ^ (Abs(t0) ^ (x0 * x0)))) * t0),-0.5500124383912366;-0.6753042119995851,-Infinity
((t0 - x0) / (Abs(t0) ^ x0)),4.462317504332967;1.3932366541152716,-1.0661109497677965
((x0 * ((Abs(x0) ^ t0) + x0)) * t0),9.109087051869826e-4;0.2495598461481031,-1.1337307434197976
(x0 + t0),0.17102734843103454,-0.6395738210321942
t0,1.798011049723757,-6.301759103812452e-2
(Abs(((Abs(t0) ^ x0) + t0)) ^ x0),0.5423823331795088;1.0629403234321368,-7.262992833326036e-2
((Abs((Abs(t0) ^ x0)) ^ x0) * t0),-0.9958834029985759;1.8222002283079861,-6.26287487482248e-2
(Recip(((x0 / (Abs(x0) ^ t0)) + x0)) * t0),-5.784156218974723e-2;0.8109275091096046,-Infinity
((x0 * t0) * (Abs(t0) ^ x0)),4.321189354848698;-0.46810249850554964,-4.079229144599815e-2
((x0 + t0) - (x0 * t0)),1.7580876445550615;0.9754617055302864,-6.265251369818785e-2
((t0 - x0) / (Abs(t0) ^ x0)),4.462317504332967;1.3932366541152716,-1.0661109497677965
t0,1.798011049723757,-6.301759103812452e-2
(t0 - Recip(((t0 + (x0 + x0)) + t0))),2.0408424536306864;0.6695188754374519;0.6024963312498826,-5.077127861143001e-2
(x0 * t0),0.9037386912116565,-0.6386775021098046
((Abs(x0) ^ x0) - ((t0 / x0) * t0)),-0.9778256853719995;-0.314577780482572,-Infinity
((x0 + t0) + ((x0 * t0) * x0)),1.1235434221688052;-0.29277666793528184,-4.5832947849252834e-2
(Abs((x0 + t0)) ^ t0),9.695911815775288;0.24035135834202004,-6.253983989761064e-2
(Abs((x0 + x0)) ^ (x0 + t0)),5.2536981220262105e-5,-11452.628026108749
((Abs(x0) ^ x0) + (x0 + (x0 * t0))),-4.550618292479953,-75.14336014941036
Recip((Abs((x0 * t0)) ^ Recip((t0 - x0)))),-6.407983188926358;-1.9577231201624417,-2.492539109513562e-2
(Abs((Abs(t0) ^ (x0 * t0))) ^ x0),1.3069163979343705;0.3280312125857755,-0.3919651209880037
Recip((Abs((t0 * (t0 - x0))) ^ t0)),-2.179470859099179e-3;-0.5071378681107528;0.1070658543654473,-8.210709463629579e-2
(t0 - (x0 * Recip(Recip((Abs(x0) ^ x0))))),16.28976223812817,-1119.0723854918508
(Recip(Recip(x0)) * x0),,-9.213170910613117
((Abs(t0) ^ (x0 + x0)) * (x0 * x0)),-0.7982599373243784,-0.828164098564827
(x0 * t0),0.9037386912116565,-0.6386775021098046
((Recip((Abs(x0) ^ t0)) * x0) + x0),-0.46534916378734037,-8.953783993188503
((Abs((t0 - x0)) ^ t0) + t0),-0.6031108091022976;0.11818330448053806;0.7072217914917178,-5.977886752600981e-2
(Recip(((t0 - x0) + t0)) + t0),-1.2559190469854336;-1.669343956327996e-2;2.1728750525010914,-5.743569778273726e-2
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
(Recip(((Abs(x0) ^ x0) + x0)) * t0),3.035070742281574,-1.4924754992807774
(Abs(Recip(x0)) ^ ((x0 * t0) + x0)),-0.3054659251897296,-1.563103267893404
t0,1.798011049723757,-6.301759103812452e-2
(Recip(((x0 + t0) + t0)) * x0),0.5500514203305812;-0.9302119670988472,-10.821500618250445
(((x0 + t0) / x0) + t0),0.2889318142408936;0.957725907665379,-Infinity
(t0 - ((x0 * t0) + t0)),0.6218585970984825;-2.453829446971367e-2;-1.136229047456579,-6.265251369818786e-2
(Abs((Abs(x0) ^ ((x0 + t0) * x0))) ^ x0),0.4310807246408119,-3.058247229681627e48
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(Recip((Abs(x0) ^ t0)) / x0),0.4085880090230401,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(t0 / ((t0 - x0) / (Abs(x0) ^ x0))),-0.2998395259023725;-0.12364108635270643,-2.03222720868146
Recip((t0 - (x0 + x0))),-9033.79250362488,-3.2962592575563576
((x0 + x0) + (t0 + (x0 + x0))),-4.709923756906004,-9.644985940458811
(((x0 + t0) * x0) + t0),-3.2333235394973463;3.805187832758634,-0.7564328590070165
t0,1.798011049723757,-6.301759103812452e-2
(Recip(((Abs(x0) ^ t0) + x0)) * x0),-8.935161561011213,-1.2700028552234717
(Abs(Recip(x0)) ^ ((x0 * t0) + t0)),-0.3195269859144496;0.7278528358545899,-Infinity
((x0 * t0) / (Abs(t0) ^ x0)),4.321189354415626;2.136284260544285,-4.0792291445998156e-2
(Abs(Recip((Abs(Recip(Recip(x0))) ^ t0))) ^ x0),-0.22612464515934172,-0.46169247301456984
(((Abs(x0) ^ t0) + t0) + x0),0.2515286883648482;0.12536707345141324,-1.9995137810680776
(((x0 * x0) * x0) + t0),-5.47047863726647,-67.1166279550727
((Abs(((Abs(t0) ^ x0) - x0)) ^ t0) + t0),0.6147173452679127;-6.0001525422236655e-2;0.7886671583512997,-5.827636919654431e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip((Abs(Recip(Recip(x0))) ^ x0))) ^ x0),,-2.07026854696619
((Abs(x0) ^ t0) + (x0 + (x0 * t0))),-0.30681205906262954;0.6319000117416249,-Infinity
(t0 - ((x0 * t0) + x0)),1.7580876445550615;-1.0245382944697137,-6.265251369818783e-2
(Abs(t0) ^ ((x0 + x0) + x0)),-1.0933127508362819,-0.21775454514039758
(Abs((t0 + (x0 + x0))) ^ (t0 / x0)),0.382721639601995;0.8303733708745298,-2.367311879270153e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((x0 + Recip(Recip((t0 / x0))))) ^ t0),-0.4547239071212963;-7.238985104526163e-2,-0.7005970685242868
(Abs(Recip((Abs(x0) ^ x0))) ^ t0),-0.22612464520535114,-0.4616924730145701
((Abs((Abs(t0) ^ (x0 * t0))) ^ x0) + t0),1.0362298734897988;-0.20874866484874424;0.8217057770366534,-6.263844793153002e-2
((x0 * ((t0 - x0) + t0)) + t0),1.4003333660016468;1.8820667624439567;-0.2890125436608145,-0.3518145550641813
(x0 * (Abs(((x0 * t0) * x0)) ^ t0)),8.583359242577301e-2;0.124521881726883,-0.8409686293057618
(t0 * (t0 - x0)),-0.1439570757818577;-10.612639209677727,-7.259724794298256e-2
t0,1.798011049723757,-6.301759103812452e-2
(x0 + (x0 + (x0 * t0))),-1.0962613084568857,-0.6386775021098045
((Abs(t0) ^ x0) + (x0 * t0)),-0.9999999999972006;0.4036496310978268,-0.1697548925874539
(Recip((x0 * t0)) * t0),0.9742212845862053;-0.458252809988571,-Infinity
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
(Abs(t0) ^ ((Abs(x0) ^ t0) + x0)),-1.2150248645938155;3.63287551483122e-4,-0.13605594733373833
(Abs(((Abs((x0 + t0)) ^ x0) + t0)) ^ x0),-2.5348519806806373;0.9023785704754068,-0.5082689472549421
(Recip((t0 - (x0 + t0))) * t0),-54.79613958413506;54.52185119771755;-199.47547435605674,-6.368892569808873e-2
((Abs(t0) ^ (x0 + x0)) * (x0 * t0)),0.684180169950046;4.321189148878834,-4.079229144600048e-2
((Abs(x0) ^ x0) * t0),7.4659674804368e-2,-2.556331495490981
(((Abs(t0) ^ (x0 * t0)) * x0) * t0),-0.41044180971527966;0.8523862944604695;4.32118935535807,-4.0792291445998156e-2
Recip(Recip(((t0 / (Abs(x0) ^ t0)) + x0))),-9.316500730885169e-2;-0.6507798397606483,-0.6662558119548054
(((x0 + t0) + t0) - (x0 * t0)),0.758178424241847;0.9999092147092663;0.9754617027256771,-6.265251369818779e-2
((x0 + t0) + ((x0 * x0) * x0)),-7.097462379934392,-79.0641463044855
(Recip((Abs(x0) ^ t0)) + t0),-9.671273906625986e-2;0.7695408605964142,-4.985094562874716e-2
((Abs(x0) ^ ((x0 * t0) * t0)) * x0),0.17477124303496186;-0.8032784777325712,-0.45545118600743684
(Recip(((Abs((x0 * t0)) ^ x0) + x0)) * t0),0.2002254218276296;2.2438933904457987,-0.7043171330704244
(Abs(Recip(x0)) ^ (x0 * t0)),-0.5171999612212075,-2.310525761776808
(t0 - Recip(((t0 + (x0 + x0)) + t0))),2.0408424536306864;0.6695188754374519;0.6024963312498826,-5.077127861143001e-2
((x0 + x0) + (x0 + t0)),-3.0829400552486184,-5.430557995742534
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(x0) ^ t0) * t0) * t0),5.962664321769322e-2;1.4625107719246468;1.2094445482235485,-5.093312902546077e-2
((Abs((x0 * x0)) ^ x0) + t0),-130.87528206266444,-345479.2930615489
(Recip((Abs((Abs(t0) ^ x0)) ^ x0)) * t0),-1.004133613450119;1.8222002286687853,-6.262874874822492e-2
(Abs(((Abs(x0) ^ x0) + t0)) ^ x0),-51.12849024151567,-4.746998738898661e7
t0,1.798011049723757,-6.301759103812452e-2
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
((Abs((x0 + x0)) ^ (x0 + t0)) + t0),-0.7277708289547762;0.15693425676612988,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
((t0 - x0) + x0),1.798011049723757,-6.301759103812452e-2
(Abs((t0 / x0)) ^ x0),-0.9442870745722809,-1.84803446591083
t0,1.798011049723757,-6.301759103812452e-2
((Abs(t0) ^ x0) * (t0 - x0)),7.183757435415883e-2;-0.7759365386908121,-3.646121678564638
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs((Abs(t0) ^ x0)) ^ Recip((t0 - x0)))),-1.9282712306596672;-0.12614852477190092,-4.074475325759113e-2
((x0 * (t0 - x0)) + t0),3.282400128436803;-0.2890125436485633,-0.35181455506418136
(Abs(Recip(x0)) ^ (x0 + t0)),0.9603348128731937,-Infinity
((((Abs(t0) ^ x0) - x0) - x0) + t0),-1.8284345581438466;2.07456516151516,-0.3432886799984011
((Abs((t0 - x0)) ^ t0) + t0),-0.6031108091022976;0.11818330448053806;0.7072217914917178,-5.977886752600981e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs(Recip((Abs(x0) ^ t0))) ^ t0) * t0),-0.4549860035305464;0.1310515988523042;1.768825679822445,-5.093312902546077e-2
((Abs((x0 * t0)) ^ t0) + (x0 * t0)),-0.9900297963159161;0.409821507958719;-0.41407928762007296,-1.737843938064316
(Recip((x0 + x0)) * t0),0.7478059051240777,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(Abs(x0) ^ (t0 / x0)),0.36002491686264904,-0.6831034072470459
(Abs((Abs(x0) ^ x0)) ^ ((x0 * t0) + t0)),-0.23572915345933632;0.8700593018219986,-0.3840558082738586
(Abs(((Abs(Recip((Abs(x0) ^ x0))) ^ x0) * t0)) ^ x0),-2.7321340704056083,-1.5672983237905047
(((x0 + x0) * t0) - x0),0.9518693449284021,-0.6386775021098049
t0,1.798011049723757,-6.301759103812452e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
Recip(((x0 + t0) * t0)),2.0657200883875704;0.1616677070200765,-0.2824591314834538
(Recip(Recip((Abs(x0) ^ t0))) * x0),0.26640323957914647,-1.2868920990561004
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip((Abs(t0) ^ (Abs(x0) ^ t0)))) ^ t0),-3.0941347184205674;8.426458314367224e-2;-0.5077298500130507,-5.116808534348026e-2
((Abs(x0) ^ t0) + ((x0 * t0) * x0)),2.5109363827077063e-4;0.14815680215804902,-0.3313814406151609
Recip((((x0 - (x0 * t0)) / x0) - x0)),-0.9300443941303285,-Infinity
(t0 - (x0 + t0)),1.7469001488884977;-1.6780946024927148,-0.6990852659514577
(Abs((x0 + t0)) ^ x0),-3.3542751269406597,-0.46543073016511166
(Recip((x0 * t0)) + x0),-0.5172207298814953,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(t0 - x0),3.4249947513812153,-0.6990852659514573
((x0 * t0) * (Abs(t0) ^ x0)),4.321189354848698;-0.46810249850554964,-4.079229144599815e-2
(Recip((Abs((t0 / x0)) ^ t0)) * t0),-0.6905471655247708;0.25975631465121163;0.8327763341145602,-0.6881085254063578
(t0 / (Abs(t0) ^ x0)),1.761755646379235;-0.9875838789552508,-6.268341269094624e-2
((x0 * ((x0 * t0) + t0)) + t0),-0.20581994956073096;0.6950712541545363;1.3367535853806978,-4.183288401986452e-2
t0,1.798011049723757,-6.301759103812452e-2
(x0 * (t0 - x0)),3.137868117513108,-0.36738115144141187
(Recip((Abs(x0) ^ ((x0 + x0) + x0))) * t0),0.8311908641169281,-2.4195308946030094
t0,1.798011049723757,-6.301759103812452e-2
(Recip((Abs((x0 + x0)) ^ x0)) * t0),2.3727789141858997,-2.053874625833203
(x0 + t0),0.17102734843103454,-0.6395738210321942
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs(Recip((Abs(x0) ^ t0))) ^ t0)),-0.6783888272235195;-0.9201536179267364,-0.45123191317181927
((x0 * (t0 + (x0 + x0))) + t0),-6.491185373464451;5.852288020962256,-2.433155590990666
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) * (t0 - x0)) * t0),-0.5426264181116266;-0.2756358958374515;-2.784838064712733,-2.3015667278206326e-2
((x0 * t0) * (Abs((Abs(x0) ^ x0)) ^ x0)),1.7115442391597185e-4,-21771.12534987582
(t0 * (t0 + t0)),-1.0484676014997238;-0.5775048138081145;-1.1373894253194365,-6.301759103812449e-2
(Abs(t0) ^ (t0 * (t0 - x0))),-0.9197990622582792;0.6244604317681546;-9.52906115106425,-6.606615117205804e-2
(Abs((Abs(t0) ^ (x0 + t0))) ^ x0),1.0171494974037336;12.278544971280207,-0.24683133139968208
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
((((Abs(t0) ^ x0) * t0) * t0) * t0),1.0125722181830932;1.2948459645855288;-1.1707697515245612;-1.1621336366435533,-6.268341269094635e-2
(Recip((Abs((Abs(t0) ^ x0)) ^ t0)) * t0),-0.9698283735376029;0.4078136758592819;1.7617556479757055,-6.268341269094638e-2
((Abs(t0) ^ (x0 + t0)) * (x0 * t0)),0.46810249710516505;-1.0855536995128698;1.8955738445094024,-4.079229144599816e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((x0 + x0)) ^ x0),,-11450.353255523976
t0,1.798011049723757,-6.301759103812452e-2
Recip(Recip(((Abs(x0) ^ t0) - x0))),1.579445847188126,-1.9237896143154125
t0,1.798011049723757,-6.301759103812452e-2
((Abs(x0) ^ (x0 + x0)) * (x0 * t0)),1.7388062585126308e-4,-3.1702165566598643
(t0 - ((x0 * t0) + x0)),1.7580876445550615;-1.0245382944697137,-6.265251369818783e-2
((((Abs(t0) ^ x0) - x0) - x0) + x0),1.7959497361065746,-0.8076953109747782
((Abs((t0 - x0)) ^ t0) + t0),-0.6031108091022976;0.11818330448053806;0.7072217914917178,-5.977886752600981e-2
((Abs(x0) ^ t0) + ((x0 * t0) * x0)),2.5109363827077063e-4;0.14815680215804902,-0.3313814406151609
t0,1.798011049723757,-6.301759103812452e-2
(t0 / x0),3.852583443268487e-2,-Infinity
(((x0 + t0) + t0) - (x0 * t0)),0.758178424241847;0.9999092147092663;0.9754617027256771,-6.265251369818779e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs(((Abs(t0) ^ x0) - x0)) ^ x0) + t0),1.5405645319692378;1.4275429824711976,-0.17587966127053578
(Abs((t0 + (x0 + x0))) ^ t0),15.95397319892514;0.19862892782917752,-6.24173127929832e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs((((Abs(x0) ^ x0) * t0) * x0)) ^ t0)),55.172984804832595;-9.418870489311973e-2,-0.14560176110389592
((Abs(Recip((Abs(x0) ^ x0))) ^ t0) * t0),1.2851421798614123e-2;1.8211473148312436,-6.236429307375867e-2
Recip(Recip(((t0 / x0) + x0))),0.24862896818334868,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 * t0) + t0) * (t0 - x0)),0.20582022522996085;-0.9767516608505137;-1.3685688056424892,-4.183288402030621e-2
(Recip((x0 * (t0 - x0))) * t0),-4.9357927879308594e-2;0.6010795170473917,-Infinity
(Abs((Abs(x0) ^ (t0 / x0))) ^ x0),1.1084540478708549e-2,-0.6928855809316149
(x0 * (Abs((x0 * t0)) ^ t0)),0.5470118498699401;-0.6239664012158612,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
((x0 * t0) / (Abs(t0) ^ x0)),4.321189354415626;2.136284260544285,-4.0792291445998156e-2
(Abs(((Abs(t0) ^ x0) * t0)) ^ x0),0.7970936907032741;-2.203376764670009,-6.16766560731417e-2
(Recip((Abs((t0 - x0)) ^ t0)) + x0),0.25196061153413246;0.2295570762711638,-1.1648164264208678
(Recip((Abs((t0 / x0)) ^ x0)) * t0),-0.9500736585126446;0.9173260067803513,-136.72244135734394
t0,1.798011049723757,-6.301759103812452e-2
(x0 + t0),0.17102734843103454,-0.6395738210321942
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
(Abs(((t0 / x0) * t0)) ^ t0),0.5970292182434278;-0.9662567691136117;-0.30798085871854175,-0.307258663099973
(t0 + ((x0 * t0) + t0)),1.1255050308186683;2.4538294469713576e-2;0.6325826137363934,-6.265251369818786e-2
(((x0 + x0) * t0) + t0),1.2269147234856835e-2;1.7580876445550615,-6.265251369818786e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
(Recip((Abs(x0) ^ t0)) + t0),-9.671273906625986e-2;0.7695408605964142,-4.985094562874716e-2
t0,1.798011049723757,-6.301759103812452e-2
(t0 - ((x0 + t0) - Recip((Abs(x0) ^ x0)))),1.8566680710001715;-0.9895577762771579,-1.6046885652073943
((Abs((Abs(x0) ^ x0)) ^ x0) * t0),8.366064778824044e-7,-3.2519889494201375
(((Abs(t0) ^ x0) + (x0 * t0)) * t0),0.9999999999876998;1.3957378393870548e-2;1.758087644544123,-6.26525136981878e-2
((Abs(x0) ^ t0) + (t0 * (t0 - x0))),5.192834745480974e-5;-0.3880733362825661;-0.20165778489587752,-0.15056385373397668
((Abs(x0) ^ ((x0 * t0) * t0)) * x0),0.17477124303496186;-0.8032784777325712,-0.45545118600743684
(x0 * t0),0.9037386912116565,-0.6386775021098046
(x0 / (Abs(t0) ^ x0)),-1.0921557887410092,-0.5522010747704225
(Abs(t0) ^ ((x0 * t0) + t0)),-2.6062080549195223;1.304300256067738e-2;0.5912026508339311,-6.268341269094642e-2
(Abs(((x0 + t0) + t0)) ^ (t0 / x0)),0.4263119703934144;6.5445485561054e-2;0.31761853916494087,-0.5127264065137936
(Abs(Recip(x0)) ^ Recip(((Abs(x0) ^ t0) + x0))),-0.7602135699617709,-0.9426924280771928
(Abs(((x0 + t0) + t0)) ^ x0),-2.300431872938279;-1.053843254002384,-0.4654307301651117
((x0 * t0) * (Abs(t0) ^ x0)),4.321189354848698;-0.46810249850554964,-4.079229144599815e-2
((x0 * t0) * t0),0.7697792759489744;1.1740231493548112,-0.6386775021098043
(Abs(Recip((x0 + t0))) ^ t0),9.90170167276894;-0.24007867622089238,-6.2492445168897015e-2
Recip((t0 / (x0 + t0))),-7.174982348139069;-14.567897472671914,-7.897369340778033e-2
(((x0 + t0) * t0) - x0),1.715980409744682;1.0245382950836373,-6.265251369818783e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
((Abs((Abs(t0) ^ (x0 + x0))) ^ t0) + t0),2.4328758079868273;1.153052808254161e-2;0.7639586372592788,-6.270298155836104e-2
((t0 / x0) * Recip((x0 * t0))),0.3342099485662924;-0.2788993948002678,-Infinity
(Recip(((t0 / x0) * (Abs(x0) ^ t0))) * x0),-1.703786423777598e-2;0.35975714515887547,-Infinity
(t0 * ((Abs(t0) ^ x0) - x0)),-0.9431499073320129;-0.7259916273219635,-1.5009449229351282
(Recip(Recip(x0)) + (x0 + (x0 * t0))),-1.0962613098942509,-0.6386775021098046
((Abs((t0 * (t0 - x0))) ^ x0) + t0),-0.21386267939970247;-0.6873166259629777;1.4029445382374806,-0.1166393480573109
((t0 - x0) + x0),1.798011049723757,-6.301759103812452e-2
Recip((Abs((Abs((x0 * x0)) ^ x0)) ^ t0)),-0.1130623225775691,-0.46169247301456984
(((t0 - x0) + x0) * t0),2.444383907481942;0.7355681913222708,-6.301759103812452e-2
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
((Recip((Abs(x0) ^ t0)) + t0) * t0),-7.918816661795626e-2;0.40033105028854865;1.2641934563725987,-4.9423365240679494e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(t0) ^ x0)) ^ (t0 + (x0 + x0))),1.0104874063847038;18.813140569824863,-0.2540878435343003
(t0 / (x0 + x0)),0.45068642791681746,-Infinity
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
((Abs((t0 - x0)) ^ (Abs(x0) ^ x0)) + t0),0.3364939950608065;0.42044601147009075,-5.892400890115806e72
((((Abs(t0) ^ x0) - x0) - x0) + t0),-1.8284345581438466;2.07456516151516,-0.3432886799984011
(Abs(Recip((Abs(Recip(Recip(x0))) ^ t0))) ^ x0),-0.22612464515934172,-0.46169247301456984
(Abs(Recip(Recip((t0 - (x0 + x0))))) ^ t0),-15.566415915646179;0.19976142395228327,-6.241993678539745e-2
(((Abs(t0) ^ x0) * (t0 - x0)) * t0),-0.5426264181116266;-0.2756358958374515;-2.784838064712733,-2.3015667278206326e-2
((x0 * ((x0 * t0) + x0)) + t0),-1.0076060527981525;1.8227564900002722,-6.261686949529223e-2
((((Abs(x0) ^ t0) - x0) + t0) * t0),1.014003859187022;-1.0706165152790026;-1.701873876401328,-6.233618573606873e-2
(Abs((Abs(t0) ^ x0)) ^ ((Abs(x0) ^ x0) + t0)),1.0050121711003852;15.963059362009417,-0.5404781432835406
((Abs((t0 - x0)) ^ x0) + t0),2.3213379824493883;1.1463690022575113,-0.30197289090237095
((Recip(x0) + t0) * t0),-0.7192312482035748;0.9668296691769287,-Infinity
(Abs((t0 * (t0 - x0))) ^ x0),0.13137202780977586;-7.050389982600007,-0.430105765380075
((Abs(((x0 * t0) * x0)) ^ x0) + t0),-9.643583085197638e-5;1.789272308052706,-9.208381018013383e-2
Recip((Abs(((x0 * t0) * x0)) ^ t0)),0.5764748013873349;0.7769150148115798,-Infinity
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
(Abs(((x0 + t0) + t0)) ^ t0),5.129229762375505;5.728047203432758;0.232436524500434,-6.248379288564623e-2
Recip((Abs((Abs(x0) ^ x0)) ^ t0)),-0.22612464554960263,-0.46169247301457006
(x0 * (t0 - Recip((x0 + t0)))),0.922187894975975;46.062043672240705,-0.6393642344299456
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs((((Abs(x0) ^ x0) * t0) * x0)) ^ t0)),55.172984804832595;-9.418870489311973e-2,-0.14560176110389592
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
(t0 - ((x0 + t0) * t0)),1.7194199829974088;1.575808838829114;-2.4538294539565436e-2,-6.265251369818774e-2
(((x0 + t0) + t0) + t0),0.7391365402096591;-0.2767155758254259;-0.2913936161102984,-0.6395738210321935
(Recip((Abs(x0) ^ t0)) + (Abs(t0) ^ x0)),-0.24075074662356583;0.8042449492083057,-4.3784459102937975e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
Recip((Abs((Abs((x0 * x0)) ^ x0)) ^ t0)),-0.1130623225775691,-0.46169247301456984
((x0 + t0) - (x0 * t0)),1.7580876445550615;0.9754617055302864,-6.265251369818785e-2
((Abs(t0) ^ (x0 + t0)) * (x0 * x0)),0.5866417113445991;-0.40879788516440013,-0.7266235885329897
(Abs(Recip(Recip((t0 - (x0 + t0))))) ^ t0),0.2090047163323957;-0.8306576997351391;-0.2784033235855842,-0.45922467027804886
(Abs(t0) ^ (t0 / x0)),0.3371889329940872;0.44408076538748137,-1.3070469506470632
t0,1.798011049723757,-6.301759103812452e-2
((((Abs(t0) ^ x0) * t0) * t0) * t0),1.0125722181830932;1.2948459645855288;-1.1707697515245612;-1.1621336366435533,-6.268341269094635e-2
(Abs((t0 + (x0 + x0))) ^ t0),15.95397319892514;0.19862892782917752,-6.24173127929832e-2
(Abs(t0) ^ ((x0 * t0) + t0)),-2.6062080549195223;1.304300256067738e-2;0.5912026508339311,-6.268341269094642e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((t0 + (x0 + x0))) ^ (Abs(t0) ^ x0)),0.8825945143570392;-0.6224249532177962,-1.624857507178115e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs(Recip(Recip((t0 - (x0 + x0))))) ^ t0),-15.566415915646179;0.19976142395228327,-6.241993678539745e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((Abs(x0) ^ (x0 + x0))) ^ t0) + t0),-1.163000231233942e-2;0.8207406488648419,-6.2376925284022326e-2
((x0 * Recip((x0 * x0))) + t0),0.7562236173673396,-Infinity
(Abs((Abs(x0) ^ (t0 / x0))) ^ t0),-0.7119559878616604;-0.5805618927394538,-0.6770051833005221
((((t0 - x0) + x0) * t0) + t0),-1.4697250115938179;-0.8860491475900949;0.49576245612377307,-6.301759103812475e-2
(t0 + ((x0 * t0) + t0)),1.1255050308186683;2.4538294469713576e-2;0.6325826137363934,-6.265251369818786e-2
(t0 - (Recip((Abs(t0) ^ x0)) + t0)),0.6479533931793394;7.115822279750431e11;-1.1565590089043611,-5.321162609763948e-2
((t0 * (t0 - x0)) * t0),0.4894636900429288;-11.075348001540453;-0.2883353016242283,-7.092290880665195e-2
(((x0 + t0) + t0) - x0),0.6837189160698263;1.1142921336539306,-6.301759103812452e-2
(Recip(((Abs(x0) ^ t0) + t0)) * t0),-5.799215155946922e-2;-0.893300495889471;5.9890326757824255e-2,-1.1698528003053272
Recip((Abs(x0) ^ t0)),-0.6242219344172318,-0.45123191317181915
((x0 * t0) * (x0 * t0)),0.4915003675349643;0.6735337785442097,-1.3768291878445853
((x0 * ((x0 * t0) + t0)) + t0),-0.20581994956073096;0.6950712541545363;1.3367535853806978,-4.183288401986452e-2
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
(Abs(Recip(Recip((x0 * t0)))) ^ t0),-0.8229711854031956;0.5483557083902995,-0.5872631072926838
(Abs((Abs(t0) ^ x0)) ^ t0),-1.5728729672421855;0.5909353980421592,-0.21775454514039772
(((Abs(t0) ^ x0) + t0) * t0),-1.0223116932642793;0.9216674065948359;0.9181204338369419,-6.270667963532624e-2
(Abs((Abs(t0) ^ ((t0 - x0) + x0))) ^ x0),2.9786597122264027;0.24520699715199168,-0.21775454514039763
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
(Abs((Abs(t0) ^ x0)) ^ (x0 + x0)),-1.0448800917086407,-0.39196512098800407
((Abs((x0 + t0)) ^ t0) * t0),0.7881631810595212;7.540387018614719e-2;1.6901666661899994,-6.008144296225659e-2
(((t0 - x0) + x0) * t0),2.444383907481942;0.7355681913222708,-6.301759103812452e-2
(Abs(((Abs(t0) ^ x0) * (x0 + x0))) ^ x0),0.5840545665124293,-0.27396822796649395
(Abs((Abs(t0) ^ x0)) ^ (x0 + t0)),-0.797093690702314;-3.4834660993000086,-6.167665607314168e-2
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
(Abs(t0) ^ ((t0 * (t0 - x0)) + t0)),-0.2143795861952863;8.112848515737145e-3;0.6121802408341154;-0.37269914893176503,-6.26834126909463e-2
Recip((Abs(Recip((t0 - x0))) ^ t0)),-10.718534684524473;0.23326560565962165,-6.248543813715846e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) * x0),19.65706186470428;4.075487845038543e-2,-0.7041413288571203
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
(t0 + ((x0 * t0) + t0)),1.1255050308186683;2.4538294469713576e-2;0.6325826137363934,-6.265251369818786e-2
((((Abs(x0) ^ x0) - x0) - x0) + t0),-0.6003931723776994,-82.60538969486167
(((t0 - x0) + t0) * t0),-4.539363969905433;-4.564318885336875;-0.16680959338498394,-7.498947607591876e-2
((Abs(t0) ^ (x0 + t0)) * (x0 * t0)),0.46810249710516505;-1.0855536995128698;1.8955738445094024,-4.079229144599816e-2
(t0 + ((x0 * t0) + t0)),1.1255050308186683;2.4538294469713576e-2;0.6325826137363934,-6.265251369818786e-2
t0,1.798011049723757,-6.301759103812452e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((x0 + t0)) ^ (x0 + (x0 * x0))),0.4405461874317758,-1.2996070467930186e16
(Abs(((Abs(t0) ^ x0) * t0)) ^ t0),-1.0176146235511678;-2.2066398695701848;0.715516909439031,-6.268341269094635e-2
(((x0 + x0) * t0) + x0),-4.81306550715978e-2,-0.6386775021098048
t0,1.798011049723757,-6.301759103812452e-2
(t0 + ((Abs((x0 * t0)) ^ x0) + t0)),1.239965208624877;0.2261913453027827;0.30358471092774786,-0.1121897009395629
(((x0 + x0) * t0) + t0),1.2269147234856835e-2;1.7580876445550615,-6.265251369818786e-2
((Abs(x0) ^ x0) * Recip((Abs(x0) ^ t0))),-0.9964956956027442,-1272.6107384376733
((x0 * (t0 - x0)) * t0),-23.352337529716948;-3.3623683526156266e-2,-0.6981581613113499
(Abs((t0 + (x0 + x0))) ^ (x0 * t0)),22.75737955744902;7.744147214418716e-2,-0.22762047059502
(((t0 - x0) + x0) * (Abs(x0) ^ x0)),7.465967480436807e-2,-2.556331495490981
t0,1.798011049723757,-6.301759103812452e-2
((x0 * t0) * (Abs((t0 - x0)) ^ x0)),1.9005863620239743e-2;1.1774098966984984e-8,-2.8152340465071046
t0,1.798011049723757,-6.301759103812452e-2
((Abs((Abs(t0) ^ x0)) ^ t0) - x0),-3.6962812567730943;0.44788631359108383,-0.8076953109747774
(Abs(Recip((Abs(Recip(Recip(x0))) ^ t0))) ^ t0),-0.7060309252272464;0.8841283170838814,-0.4512319131718196
((Abs(x0) ^ x0) + (t0 * (t0 - x0))),8.709306779146498;1.1844271735579208,-55.312379702901694
((x0 * t0) + (x0 + (x0 * t0))),3.773629424848743e-2;-0.1339976032866487,-0.6386775021098046
(Abs(t0) ^ (Abs((x0 * t0)) ^ t0)),0.3126228323310152;-0.30856192912314406;-0.576136932941083,-2.7226476742623493
((Abs((Abs(t0) ^ (x0 + x0))) ^ t0) + t0),2.4328758079868273;1.153052808254161e-2;0.7639586372592788,-6.270298155836104e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
((Abs(x0) ^ t0) * (x0 * t0)),-0.19579734443004915;0.45176627941360703,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) - x0) + t0),1.5431980751396825;1.2810848540833073,-0.12494679524332813
Recip(Recip((Abs((Abs(x0) ^ x0)) ^ t0))),0.22612464515498026,-0.46169247301457
Recip((Recip((Abs(t0) ^ (Abs(x0) ^ x0))) + t0)),0.9991362848651627;-0.44862978314211366,-6.232758763799662e-2
((Abs(Recip((Abs(t0) ^ x0))) ^ t0) * t0),0.33224026960924474;1.1338487671960192e-2;1.7617556479853045,-6.268341269094634e-2
(((x0 * t0) * x0) / (Abs(t0) ^ x0)),8.499777317918962;-4.205552528930474,-0.14828557194491604
(Abs((Abs(Recip(Recip(x0))) ^ t0)) ^ t0),0.7921233579557757;0.7880362668097027,-0.45123191317181977
Recip((Recip((Abs(t0) ^ (Abs(x0) ^ x0))) + x0)),-3.4094025986836685,-1.5619874555463793
((x0 + t0) - (x0 * t0)),1.7580876445550615;0.9754617055302864,-6.265251369818785e-2
(t0 + ((x0 + t0) + (x0 * t0))),1.2540154685242573;0.504072176030804;-0.9754617055302862,-6.265251369818783e-2
((Abs((Abs(x0) ^ (x0 + t0))) ^ t0) + t0),0.14829736477937625;1.5192946103534776e-6;0.8427416919384436,-5.6535291807738794e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
((x0 * t0) * t0),0.7697792759489744;1.1740231493548112,-0.6386775021098043
((Abs(Recip((Abs(t0) ^ x0))) ^ t0) * t0),0.33224026960924474;1.1338487671960192e-2;1.7617556479853045,-6.268341269094634e-2
t0,1.798011049723757,-6.301759103812452e-2
(t0 + ((t0 * Recip(x0)) + t0)),0.6417268477288056;-0.1288062481179133;-0.6327044378434494,-Infinity
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
(t0 * (t0 - x0)),-0.1439570757818577;-10.612639209677727,-7.259724794298256e-2
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) * (t0 - x0)) * x0),2.003649114237552e-3;0.6264081522963342,-3.293746164040194
((((Abs(t0) ^ x0) + x0) * x0) + t0),0.26950624432014575;-1.6333334701735311,-6.760177613533855
Recip((Abs((x0 * (t0 - x0))) ^ x0)),0.1400212566514091,-2.1172319834811835
(Recip((Abs(x0) ^ (x0 + x0))) * t0),1.2578745539490497,-2.0930892643525505
Recip((t0 * (t0 - x0))),-6.340948358297446e-2;-7.276443546605081,-9.94507617508807e-2
t0,1.798011049723757,-6.301759103812452e-2
(t0 - ((x0 + t0) * t0)),1.7194199829974088;1.575808838829114;-2.4538294539565436e-2,-6.265251369818774e-2
((x0 * t0) * t0),0.7697792759489744;1.1740231493548112,-0.6386775021098043
(Abs(t0) ^ ((t0 * (t0 - x0)) + x0)),0.5159885587945893;1.0188822692437076;-0.8400187392579053,-6.268341269094634e-2
((Abs((x0 + t0)) ^ t0) * (x0 + x0)),-0.5191924739104615;-0.35641772551754974,-2.5643136005968796
(Abs(t0) ^ x0),1.306872560852063,-0.21775454514039777
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
t0,1.798011049723757,-6.301759103812452e-2
(Recip(((x0 * t0) + x0)) * x0),-0.4028728101334953,-Infinity
(Recip(Recip(Recip(((x0 * t0) + x0)))) * t0),7.733269896384082e-2;0.7509941027954616,-Infinity
((((Abs(x0) ^ x0) - x0) + t0) * t0),97.13294103147786;1.7100803367861378e-2,-0.10351583230264058
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
((((t0 - x0) + x0) * t0) + t0),-1.4697250115938179;-0.8860491475900949;0.49576245612377307,-6.301759103812475e-2
(t0 - ((x0 + x0) * t0)),1.7580876445550613;-1.2269147234856885e-2,-6.265251369818786e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
(Abs(x0) ^ ((t0 * (t0 - x0)) + t0)),-3.876893058344887e-2;0.4960041761643524;0.5401938809993054,-0.4509939121797076
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip(Recip((Abs(x0) ^ x0))),,-116.15846460014518
t0,1.798011049723757,-6.301759103812452e-2
((x0 * (Abs(t0) ^ (x0 + t0))) + t0),-0.4515766852143692;-1.2284176614928768;0.7735408298528855,-1.7254051724878806e-2
((t0 - x0) + ((x0 * t0) + t0)),0.5557777986483726;1.0245382944700419;1.2023098459081167,-6.265251369818789e-2
(Abs((Abs(t0) ^ x0)) ^ (x0 + x0)),-1.0448800917086407,-0.39196512098800407
(Abs(Recip(Recip((Abs(t0) ^ x0)))) ^ t0),-0.11901301169858747;-0.12573836110665731,-0.2177545451403976
(((x0 + x0) * (x0 * t0)) + x0),-4.201731505746644e-2,-0.54516328199744
((x0 + x0) - (x0 * t0)),1.0962613101431955,-0.6386775021098049
(t0 + (((x0 * t0) * x0) + t0)),0.5127681637582459;-7.606052798152759e-3;1.3099883262420273,-6.261686949529222e-2
((Abs(t0) ^ x0) + x0),-0.3973940782566968,-0.43056286002919836
t0,1.798011049723757,-6.301759103812452e-2
(Abs(t0) ^ ((x0 * t0) + t0)),-2.6062080549195223;1.304300256067738e-2;0.5912026508339311,-6.268341269094642e-2
(((x0 + t0) + t0) * x0),-0.5572169681083823;-0.7731737554857583,-3.454871076351332
Recip((t0 + (x0 + x0))),-8.147240997078248e-2,-3.9952541518705065
(Abs((x0 * t0)) ^ x0),-0.45120644772622387,-1.4184553070472044
((x0 + t0) + ((x0 * x0) + t0)),-1.9835306715963688;-1.098829898250029,-11.622166450901672
(Abs(t0) ^ (((x0 * t0) * x0) / x0)),0.10366706824657657;0.35601006833927484,-Infinity
(Abs((t0 - x0)) ^ (x0 * t0)),-31.697449863825565;7.568392952071978e-2,-0.2210977041530177
(Recip(((Recip(x0) * x0) + x0)) * x0),,-Infinity
((((Abs(x0) ^ t0) - x0) + t0) * t0),1.014003859187022;-1.0706165152790026;-1.701873876401328,-6.233618573606873e-2
(((x0 + t0) + t0) + t0),0.7391365402096591;-0.2767155758254259;-0.2913936161102984,-0.6395738210321935
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs(x0) ^ ((x0 * t0) + t0))),-3.8768941362255886e-2;-0.5209643013109309,-0.45099391217970736
t0,1.798011049723757,-6.301759103812452e-2
(Recip((x0 + t0)) * t0),-4.3314835414693546e-2;0.17580328861134448,-2.996274093230168
(Abs((t0 / x0)) ^ t0),-0.3830679302244877;-0.9042213062474167,-6.059386810479349
(x0 * t0),0.9037386912116565,-0.6386775021098046
t0,1.798011049723757,-6.301759103812452e-2
(Abs(t0) ^ (Abs(t0) ^ x0)),1.7666194919961393;-1.0188266827541612,-6.272513210934934e-2
Recip((t0 / x0)),0.5102160352455845,-4.268127621918929
(((x0 + x0) * x0) + x0),,-76.59979272428797
((Abs(((t0 - x0) + x0)) ^ t0) * t0),6.48882433127566;-0.5226910700790081;4.778639634084371,-6.301759103812445e-2
(t0 + (((x0 + t0) + t0) - x0)),0.1512221943737346;1.328576647790303;0.31821220755971913,-6.301759103812449e-2
Recip(Recip((Abs((x0 * (t0 - x0))) ^ t0))),0.5267450689382007;-0.9417871885277689,-Infinity
(x0 - ((x0 * x0) + t0)),-3.42441526597901,-3.5103059345376173
((((Abs(t0) ^ x0) + x0) * t0) * t0),-0.7719360273492534;-1.0742175491843178;-0.6771872895199184,-0.28468048170207444
(Abs(((x0 + t0) + t0)) ^ (Abs(t0) ^ x0)),0.45996874081589806;0.8804094060371834;-0.7131470725536302,-3.4273766110724566e-2
(((x0 + x0) + x0) + t0),-3.082940055248626,-5.430557995742534
((Abs(((Abs(x0) ^ x0) / x0)) ^ x0) * t0),6.621637723603475e-5,-3.240872592565458
t0,1.798011049723757,-6.301759103812452e-2
((x0 * (t0 - x0)) * t0),-23.352337529716948;-3.3623683526156266e-2,-0.6981581613113499
(t0 + ((x0 * t0) + t0)),1.1255050308186683;2.4538294469713576e-2;0.6325826137363934,-6.265251369818786e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
((Abs(t0) ^ (x0 + t0)) * (x0 * x0)),0.5866417113445991;-0.40879788516440013,-0.7266235885329897
(((Abs((x0 * t0)) ^ x0) - x0) + t0),-0.4357326825598438;2.6042679682836214,-0.42366668865228563
(((t0 * (t0 - x0)) * t0) * t0),0.7120765250260725;-11.753227257677551;-0.3037231799442802;0.6110713121473064,-7.055683620204097e-2
(((Abs(x0) ^ x0) / x0) + t0),0.11759967344125949,-Infinity
(((Abs(t0) ^ x0) + t0) * (Abs(t0) ^ x0)),0.9999995222141064;0.7617555713780266;1.0125724574717896,-6.268341269099187e-2
((x0 * t0) * (Abs((t0 - x0)) ^ t0)),1.110036983416318;0.48487315797279473;-0.4638852778485844,-0.1628172038055726
((Abs((Abs(t0) ^ (x0 + t0))) ^ t0) + t0),0.9715565607030241;6.319812678896449;-0.6500706974762986;0.6365642783128318,-6.26985665792611e-2
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
((x0 + t0) * ((x0 * t0) * t0)),19.635973978910823;5.224099448993889e-2;0.7808894076527765,-0.7042060720486372
((t0 * (t0 - x0)) * t0),0.4894636900429288;-11.075348001540453;-0.2883353016242283,-7.092290880665195e-2
(((x0 + t0) * t0) + t0),0.5744920530131518;2.4538294470157863e-2;1.7439905893865786,-6.26525136981878e-2
((((x0 + t0) - x0) + x0) * x0),-1.3303907386701823,-3.4548710763513295
(Abs((Abs(x0) ^ ((t0 - x0) + x0))) ^ x0),0.22612464567160942,-0.46169247301457
t0,1.798011049723757,-6.301759103812452e-2
(Abs(((Abs(x0) ^ x0) * (x0 + x0))) ^ x0),,-3.8849727133275656e16
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
((Abs(t0) ^ (Abs(x0) ^ t0)) - Recip((x0 + t0))),-2.201856719406331;1.769748891160098e-4;1.2084888176525042,-5.5199552084052445e-2
Recip((Abs((x0 * (t0 - x0))) ^ t0)),-41.532894321366285;-0.13528114052179802,-6.272497579324612e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
((((Abs(x0) ^ x0) + t0) + t0) * t0),63.08055608166372;63.53771296656918;1.3183252906405474e-2,-9.02608696254599e-2
(Abs(((Abs(x0) ^ t0) + x0)) ^ (x0 + x0)),-6.25260053991272,-364000.97028766375
((Abs(((x0 + t0) + x0)) ^ t0) * t0),-0.6962844936551329;3.737626138478196e-2;1.756041049479938,-5.748867833923977e-2
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
(t0 + ((x0 + t0) + (x0 * t0))),1.2540154685242573;0.504072176030804;-0.9754617055302862,-6.265251369818783e-2
((t0 / (x0 + t0)) * t0),8.079248075447387;34.888830607386794;8.119799371934741,-6.623456354832379e-2
t0,1.798011049723757,-6.301759103812452e-2
((x0 * t0) * x0),0.33104209970169257,-1.376829187844585
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(Recip(Recip(x0))) ^ (x0 + x0))) ^ t0),0.11306232257748823,-0.46169247301457006
(Abs(t0) ^ (Abs(t0) ^ x0)),1.7666194919961393;-1.0188266827541612,-6.272513210934934e-2
(Abs(((x0 + t0) + t0)) ^ (t0 - x0)),-0.4041857140355694;-0.5193709123246274;0.7021070118647378,-0.7428516078397228
(t0 + (((Abs(x0) ^ x0) / x0) - x0)),0.4000949397120021,-Infinity
((Recip((Abs(t0) ^ x0)) * x0) * t0),2.1362842609535444;4.321189356264188,-4.0792291445998136e-2
(t0 - ((x0 + x0) * t0)),1.7580876445550613;-1.2269147234856885e-2,-6.265251369818786e-2
(((Abs(x0) ^ x0) / (x0 * t0)) * t0),0.2263104945854011;0.22740459396568463,-Infinity
((Abs(t0) ^ x0) * t0),1.0125722181830505;1.761755647985372,-6.268341269094635e-2
((Abs((t0 - x0)) ^ t0) * (Abs(t0) ^ x0)),1.0820647958085416;-0.1936613509166043;-1.297185972661277,-5.8040850885341846e-2
((Abs(((x0 * x0) * x0)) ^ x0) + t0),-6209.74770007052,-1.487193383348834e9
(x0 + t0),0.17102734843103454,-0.6395738210321942
(((Abs(t0) ^ x0) * x0) * t0),-0.46810249875891985;4.321189343959336,-4.079229144599816e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) * t0),12.118555748967752;0.29612295131102256;0.43465436890127335,-7.006204666957283e-2
(t0 + (((Abs(x0) ^ t0) - x0) + t0)),0.6533373981283083;0.9769982518002375;1.167488764004529,-6.237074394948763e-2
Recip((Abs(((t0 - x0) + x0)) ^ t0)),1.8620095692800573;-0.9437386294039113,-6.301759103812445e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((x0 + t0)) ^ x0) * x0),-2.937644505678532,-0.7202754954988974
(Abs((Abs(t0) ^ ((Abs(t0) ^ x0) + x0))) ^ x0),-1.077737469441632;-0.8464451842911817,-0.3388674126467564
(((x0 + t0) + t0) + t0),0.7391365402096591;-0.2767155758254259;-0.2913936161102984,-0.6395738210321935
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
(x0 - ((x0 + x0) * t0)),4.813065507159782e-2,-0.6386775021098048
Recip((Abs(x0) ^ t0)),-0.6242219344172318,-0.45123191317181915
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs(t0) ^ x0)),-0.7651855509626917,-0.2177545451403976
t0,1.798011049723757,-6.301759103812452e-2
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
((Abs(t0) ^ x0) * t0),1.0125722181830505;1.761755647985372,-6.268341269094635e-2
(((x0 + x0) * x0) + t0),-4.708764786101662,-27.980405316644053
(Abs(t0) ^ ((x0 + t0) * t0)),0.8094240668973198;11.929730772159328;-0.2037392215433242,-6.468774909187429e-2
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
((((Abs(x0) ^ x0) - x0) + t0) * t0),97.13294103147786;1.7100803367861378e-2,-0.10351583230264058
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
(((x0 * t0) * x0) * t0),-0.39487397690891785;-0.8383487372941344,-1.3768291878445842
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) + t0) * (Abs(t0) ^ x0)),0.9999995222141064;0.7617555713780266;1.0125724574717896,-6.268341269099187e-2
(x0 * x0),,-9.213170910613117
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
(t0 - ((Abs(t0) ^ x0) * (x0 + x0))),1.816146600285897;-7.7576320894571105e-3,-5.435282463917011e-2
Recip((Abs(((Abs(x0) ^ x0) * (t0 - x0))) ^ t0)),-59.35500498301432;-0.10416162429823653,-0.12422941530409028
((x0 * t0) * (Abs(t0) ^ (Abs(x0) ^ t0))),0.2055363810678737;0.9464388558411918;-0.687577289160366,-2.2608606476752193
((Abs((t0 / x0)) ^ t0) + t0),-4.942202664854989e-2;-0.19689381748484336;0.9437022433314495,-1.2454650489038024
(Abs((Abs(t0) ^ x0)) ^ t0),-1.5728729672421855;0.5909353980421592,-0.21775454514039772
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
((t0 - x0) + (Abs((x0 + t0)) ^ t0)),1.7541300414676615;5.9415237752706636e-2;0.9847398613211729,-6.260058529582802e-2
Recip((Recip((Abs(t0) ^ (Abs(x0) ^ x0))) + x0)),-3.4094025986836685,-1.5619874555463793
((Abs((x0 * (t0 - x0))) ^ x0) + t0),2.946767817371382;-0.5194684103347375,-1.2954796334973548
((((Abs(x0) ^ x0) - x0) + t0) * x0),-9.142306865996394,-810.1823737229139
((((Abs(t0) ^ x0) - x0) + t0) * t0),-9.568499797418817e-5;-3.9663163590759387;-0.27839120043635757,-0.1579170851042055
((Abs((Abs(x0) ^ (x0 + t0))) ^ x0) + t0),-3.1893517187496476;1.0234057874912064,-0.8619317063108858
(((x0 + x0) + (Abs(t0) ^ x0)) + t0),0.48882933369744724;-1.819429012000764,-1.8914233802102496
(((x0 + t0) * (x0 * t0)) + x0),-1.783950377318306;-0.3619237985678706,-0.261096625344663
(t0 / x0),3.852583443268487e-2,-Infinity
(Abs((Abs((t0 - x0)) ^ t0)) ^ x0),1.0221374103271164;-0.26426852333087203,-0.5147784933868756
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((x0 * (t0 - x0))) ^ t0) + t0),-0.9261122959169459;5.253493520784758e-2;0.7367563235283989,-5.135933182220122e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
Recip((Abs((x0 * t0)) ^ t0)),33.18405482355544;-0.14950275950298667,-6.2202006128568445e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((Abs(t0) ^ x0)) ^ x0) + x0),0.5882729070311367,-0.33068674839537787
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip(((x0 * t0) + t0)),14.406357441450607;-2.604182740694209,-3.162103768101955
(Abs(t0) ^ (Abs(((x0 * t0) * x0)) ^ x0)),2.69389756038872;8.560297179222902e-2,-0.5458210458183077
(Abs((t0 - (t0 - x0))) ^ x0),-1.3484011667973728;2.0058739601556073,-0.46543073016511155
(((x0 + t0) * (Abs(t0) ^ x0)) + t0),0.5751008101505806;-0.6129681625926373;0.8915620354588614,-3.881027380237322e-2
((((x0 * t0) + t0) * t0) + t0),-2.7311954093298136e-2;-1.2528063292911358;-0.898445212334924;0.6325097961286279,-6.26525136981878e-2
(Abs((Abs(((x0 + t0) + t0)) ^ t0)) ^ t0),5.429615780227277;5.347842208150895;-0.3265641549381391;-0.7132427004750953,-6.248443417803695e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((t0 - (Abs(x0) ^ t0))) ^ t0),-0.6652130922566402;8.245520904003907e-2;1.1161321567533522,-4.956319071027417e-2
t0,1.798011049723757,-6.301759103812452e-2
(t0 + ((x0 * (t0 - x0)) + t0)),-0.11735378562597774;3.28240012826231;-0.17165875768539351,-0.35181455506418136
(((Abs(t0) ^ x0) + t0) * (Abs(x0) ^ x0)),0.6389661049039383;-0.1745323060640299,-1.2094623063889864
(Abs(t0) ^ Recip((x0 + t0))),181.1470219853311;7.586954745962879,-7.833581822060659e-2
(Abs(((x0 + t0) + t0)) ^ (Abs(x0) ^ x0)),-0.12349571514837066;-0.6852002297152742,-1.0747946686102063e62
(Abs(t0) ^ ((t0 * (t0 - x0)) + x0)),0.5159885587945893;1.0188822692437076;-0.8400187392579053,-6.268341269094634e-2
((((t0 - x0) + x0) + t0) * t0),-1.3238703431514915;-0.21049863479015718;-1.1718244278737848,-6.301759103812446e-2
(((x0 + x0) + x0) + t0),-3.082940055248626,-5.430557995742534
(Abs((Abs((t0 - x0)) ^ t0)) ^ (Abs(t0) ^ x0)),-0.867177796931665;2.209049013805939;0.5098912833285385,-1.4368120586022335e-2
(Recip(((Abs(x0) ^ t0) + x0)) * t0),-1.0244042951244199;4.380855519814956,-3.161262494577112e-2
((x0 * (x0 * (t0 - x0))) * t0),-21.814390245602375;-1.3388766959273627e-2,-1.431287499469636
t0,1.798011049723757,-6.301759103812452e-2
((Abs((Abs(x0) ^ (x0 + t0))) ^ t0) + t0),0.14829736477937625;1.5192946103534776e-6;0.8427416919384436,-5.6535291807738794e-2
(Abs(x0) ^ (t0 / (t0 / x0))),-0.42280390510312715;0.35139339217774346,-1.8722232881755865
((x0 + t0) / x0),0.45266001877942075,-Infinity
((Abs((x0 + t0)) ^ t0) + t0),-0.11671293202302067;0.12565557513655606;0.7690761044936143,-5.15880196078145e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
((((Abs(x0) ^ x0) - x0) + t0) * t0),97.13294103147786;1.7100803367861378e-2,-0.10351583230264058
(t0 + ((t0 - x0) + t0)),1.7155863004688456;0.8163050689401757;0.893103381972194,-0.6990852659514574
t0,1.798011049723757,-6.301759103812452e-2
((Abs(x0) ^ ((x0 + t0) * t0)) * x0),-0.988859920507354;0.6227734568576948,-Infinity
((Abs((Abs(x0) ^ x0)) ^ x0) * x0),,-7.451727129465831e11
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(((x0 * t0) + t0)) ^ t0)) ^ x0),-0.1775241621915949;0.14801025587431627;-0.1892584725519603,-3.231484965933878e-2
((t0 + ((t0 - x0) + t0)) * t0),-3.786922014211574;-4.480151734323853;-3.4171699072988284;-0.13257714574143767,-7.083495643624438e-2
(Abs((Abs(((x0 + t0) + t0)) ^ x0)) ^ t0),15.574534946610365;16.703387835602623;7.532796668116819e-2,-0.22102531361159325
((Recip(Recip(x0)) + t0) * t0),12.039585602633105;0.12918923561502316,-7.03449181778604e-2
t0,1.798011049723757,-6.301759103812452e-2
((x0 * t0) - x0),1.903738689856804,-0.6386775021098049
Recip((Abs(((Abs(t0) ^ x0) * Recip(x0))) ^ x0)),1.3160162072195312,-0.6923329513726918
((t0 / (x0 + t0)) * t0),8.079248075447387;34.888830607386794;8.119799371934741,-6.623456354832379e-2
(((Abs(x0) ^ x0) * t0) - x0),0.18388852447312987,-7.943328308324929
((t0 - x0) + (Abs((x0 + t0)) ^ t0)),1.7541300414676615;5.9415237752706636e-2;0.9847398613211729,-6.260058529582802e-2
(t0 + (((Abs(x0) ^ x0) - x0) + t0)),-1.0897209139989852;-1.137655956845649,-91.34756747132295
((Abs(x0) ^ x0) * t0),7.4659674804368e-2,-2.556331495490981
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
(t0 - ((x0 + x0) * t0)),1.7580876445550613;-1.2269147234856885e-2,-6.265251369818786e-2
((((x0 * t0) + x0) * t0) + t0),-0.7799767199737222;0.11152590065486515;1.7580876445547298,-6.265251369818785e-2
((((Abs(x0) ^ x0) - x0) + t0) * x0),-9.142306865996394,-810.1823737229139
((Abs(((x0 * t0) * t0)) ^ x0) + x0),0.35518633621726614;-0.3552310649952003,-0.5642672455098404
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
(x0 + t0),0.17102734843103454,-0.6395738210321942
t0,1.798011049723757,-6.301759103812452e-2
Recip(Recip(((x0 * t0) + t0))),2.453829988322076e-2;1.7580876394069584,-6.265251369818775e-2
(Recip((x0 * t0)) + t0),0.230353352518748;0.5707800444849305,-Infinity
((Abs(t0) ^ x0) * t0),1.0125722181830505;1.761755647985372,-6.268341269094635e-2
(Abs(t0) ^ ((x0 + t0) * t0)),0.8094240668973198;11.929730772159328;-0.2037392215433242,-6.468774909187429e-2
(((x0 + t0) + t0) + t0),0.7391365402096591;-0.2767155758254259;-0.2913936161102984,-0.6395738210321935
((Abs(t0) ^ (Abs(t0) ^ x0)) * t0),0.19720107268179576;3.619711244489416e-3;1.8587314154101775,-2.2919449736523417e-2
(t0 + (((Abs(x0) ^ t0) - x0) + t0)),0.6533373981283083;0.9769982518002375;1.167488764004529,-6.237074394948763e-2
(Abs(((x0 + t0) + t0)) ^ t0),5.129229762375505;5.728047203432758;0.232436524500434,-6.248379288564623e-2
(((Abs(x0) ^ x0) * t0) + t0),-2.558295451522172e-3;1.8124714863433726,-6.235836506420086e-2
(x0 * t0),0.9037386912116565,-0.6386775021098046
(Recip(((Abs(x0) ^ t0) - x0)) * t0),-4.852592131707381e-3;7.93296854279078e-4,-3.293851802674855
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(((t0 / x0) * (x0 * t0)) * t0),0.6282675666510371;-0.7229152293427943;-0.8512265803460288,-Infinity
Recip((Abs(t0) ^ (x0 * x0))),-0.9159401370739539,-0.39196512098800407
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs((t0 + (x0 + x0))) ^ t0)) ^ t0),9.906963382750222;0.6753811648313344;0.3372819320178401,-6.272625360286174e-2
((x0 * (Abs(x0) ^ x0)) * t0),1.9005863531328368e-2,-2.8152340465071037
(((Abs(t0) ^ x0) + t0) * (Abs(t0) ^ x0)),0.9999995222141064;0.7617555713780266;1.0125724574717896,-6.268341269099187e-2
((Abs((t0 - x0)) ^ t0) * x0),0.329838600038123;-0.43907764056696125,-0.2870471323211122
(Abs(t0) ^ ((x0 * t0) + x0)),-1.1617636888919285;0.784968813609187,-0.2177545451403977
((Abs(x0) ^ (x0 + t0)) * (x0 + t0)),-7.446467270560486e-2;0.6237598713657966,-Infinity
(Abs((Abs(Recip((x0 + t0))) ^ t0)) ^ x0),30.02459408584744;-7.405189082140101e-2,-0.22230971017555343
(Abs(t0) ^ (Abs((x0 * x0)) ^ x0)),-1.0001522085345984,-0.6794258463720395
t0,1.798011049723757,-6.301759103812452e-2
((t0 - (x0 + t0)) * t0),-5.431148467930839;4.440787758032232;-0.1557620787087582,-7.314083490462876e-2
(((x0 * t0) * (Abs(t0) ^ x0)) + t0),2.6554304165753146;-0.45157659559318325;0.773538753054935,-1.7254051725107748e-2
((Recip((Abs(t0) ^ x0)) * x0) * x0),-1.5693193620335284,-0.8281640985648273
(Abs(t0) ^ (Abs(((x0 * x0) * x0)) ^ x0)),-0.329626275236345,-2.843413476730519
t0,1.798011049723757,-6.301759103812452e-2
((Abs(t0) ^ x0) * t0),1.0125722181830505;1.761755647985372,-6.268341269094635e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) * t0),12.118555748967752;0.29612295131102256;0.43465436890127335,-7.006204666957283e-2
((x0 + x0) * t0),0.4518693449284022,-0.6386775021098048
((x0 + t0) + t0),7.57052222947202e-2;9.532212577157805e-2,-0.6395738210321935
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + t0)),-0.31446634204107615;0.19603018467206132;-0.6828645027446469,-6.167665607314173e-2
((Abs(((x0 + t0) + x0)) ^ t0) * x0),-1.8463716176995815;-0.2900340160992619,-0.30013292859032187
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(t0) ^ x0)) ^ ((x0 * x0) + t0)),-1.0055949211611404;30.72462381580692,-0.29063274399044325
(Abs((Abs(t0) ^ (x0 + t0))) ^ t0),-1.262987349289267;10.923628042954707;0.19622316096198472,-6.538162383519636e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
(((x0 + t0) * t0) + t0),0.5744920530131518;2.4538294470157863e-2;1.7439905893865786,-6.26525136981878e-2
((x0 * (x0 * (t0 - x0))) + t0),3.028402000497075;-0.7860657422858516,-2.544476973786719
(x0 - ((Abs(x0) ^ t0) + x0)),0.8713898218157436,-11.433257623593011
Recip((Abs(((Abs(t0) ^ x0) * x0)) ^ t0)),10.285996313455362;-9.517646465459051e-2,-0.2483098461416962
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
(Abs(t0) ^ ((x0 + t0) * t0)),0.8094240668973198;11.929730772159328;-0.2037392215433242,-6.468774909187429e-2
((Abs((t0 + (t0 / x0))) ^ t0) + t0),0.7813983370113182;0.3524236782049717;-0.3635347512682534;0.6915311920207834,-6.120153515103759e-2
(((Abs((x0 + t0)) ^ x0) * t0) * t0),-2.1007121064197864e-3;0.4755683893468496;0.15732069072581553,-2.5563310613264867
t0,1.798011049723757,-6.301759103812452e-2
((((x0 + t0) / x0) * x0) + t0),-0.8347851603203693;0.20275562588724227,-Infinity
(Abs((Abs((t0 - x0)) ^ t0)) ^ (x0 + t0)),-6.701781842221295;2.9388712797271038e-2;7.170358492638378,-8.003915935762917e-2
((x0 * t0) * t0),0.7697792759489744;1.1740231493548112,-0.6386775021098043
((x0 * t0) / (Abs(t0) ^ (Abs(t0) ^ x0))),0.24211968928508526;-3.382025135040797e-2;-0.6241654684506122,-9.336311380769706e-3
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
((Abs((x0 * (t0 - x0))) ^ t0) + t0),-0.9261122959169459;5.253493520784758e-2;0.7367563235283989,-5.135933182220122e-2
(Abs((t0 - x0)) ^ t0),-10.680699973907453;0.23349818478672396,-6.248619136800156e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((Abs(t0) ^ (x0 + t0))) ^ x0) + t0),-0.9775057824621388;-1.0999727747499188;0.8308683804552891,-6.156709498192851e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
(((Abs(t0) ^ x0) * (Abs(x0) ^ t0)) + t0),2.512756622013909;1.581447461506018e-5;0.6266726926558291,-39.84278253977618
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
(Abs(t0) ^ (Abs(t0) ^ x0)),1.7666194919961393;-1.0188266827541612,-6.272513210934934e-2
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) + x0),-1.8023133387087484;-0.9754617057575627,-6.265251369818785e-2
(((x0 * t0) * (x0 * t0)) * t0),-0.9410570163869283;-0.38790753487203067;0.906857554636118,-1.3768291878445853
(((Abs(t0) ^ x0) * (x0 * x0)) + t0),0.2689043225054898;1.5531354469290648,-4.210984787700131e-2
(((x0 + x0) * t0) * (x0 * t0)),-0.9114982847843848;-0.1815922779438783,-1.3768291878445849
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip((Abs(((Abs(t0) ^ x0) * x0)) ^ x0)),-0.6391552674945711,-0.14305209051810508
Recip((Abs(t0) ^ (((x0 + t0) + t0) * t0))),2.086263317757441;5.086966249452414;3.5839607254084838;-7.534261431201748e-2,-6.721330446775645e-2
((Recip((Abs(t0) ^ x0)) * t0) * x0),-2.136284255027078;4.321189329492687,-4.079229144599815e-2
((Abs((t0 - x0)) ^ t0) * t0),-4.8932572127502114e-2;6.801371590110794e-2;1.7414375426854916,-5.428824691688455e-2
(Abs(((x0 + t0) * t0)) ^ t0),-0.5971442157838005;4.3631909220240154e-4;-7.394223430334827e-2,-8.10688967195875e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((x0 * (t0 - x0))) ^ t0) + t0),-0.9261122959169459;5.253493520784758e-2;0.7367563235283989,-5.135933182220122e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
Recip((Abs(t0) ^ x0)),-0.7651855509626917,-0.2177545451403976
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(t0) ^ (x0 + t0))) ^ t0),-1.262987349289267;10.923628042954707;0.19622316096198472,-6.538162383519636e-2
t0,1.798011049723757,-6.301759103812452e-2
((((Abs(t0) ^ x0) + x0) * t0) + x0),-0.292990087310271;-3.723573173827152e-2,-0.6621838754385507
((t0 * (t0 - x0)) - x0),-1.024538294575995;-1.7159804115296469,-6.265251369818782e-2
Recip((Abs(t0) ^ x0)),-0.7651855509626917,-0.2177545451403976
(Abs((t0 - x0)) ^ ((x0 * t0) * t0)),-24.143962609223156;1.609294086828694;5.0503707665535975e-2,-0.22239484592235018
(Abs(t0) ^ (x0 + t0)),-1.0591596833951267;8.487147002995625,-6.702690937938373e-2
(Abs(((Abs(t0) ^ x0) + x0)) ^ t0),1.1920553449793498;0.48906530945119564,-0.13573339294256326
((t0 - x0) + (Abs(x0) ^ t0)),1.8208261621390385;0.9769982517913737,-6.237074394948775e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(t0) ^ x0)) ^ (x0 + (x0 * x0))),-1.0204999532480503,-0.47238234439614096
(Abs((Abs((t0 - x0)) ^ t0)) ^ (t0 - x0)),-6.030669821485674;-3.347454386996331e-2;-6.316511055383862,-8.46053368857972e-2
(Abs((Abs(((x0 * t0) + t0)) ^ t0)) ^ t0),-0.5571081130801886;-7.681398604764325;-0.5364111900983061;-0.5087519056829352,-6.252770978067605e-2
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) * Recip(x0)) * t0),0.9128650549891455;0.9890352489569807,-Infinity
((x0 * t0) / (Abs(t0) ^ (Abs(x0) ^ x0))),1.544083373438478;-1.0850574710357361,-0.38301806955197343
((Abs(((x0 + t0) + t0)) ^ x0) + t0),-0.6657985239936055;-1.6555394579961182;1.146369002581696,-0.30197289090237084
((Abs((x0 + t0)) ^ t0) * x0),-0.562483295985504;-0.42036052029190696,-0.1895787644234543
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(((x0 * t0) + t0)) ^ t0)) ^ x0),-0.1775241621915949;0.14801025587431627;-0.1892584725519603,-3.231484965933878e-2
((Abs(t0) ^ (Abs(t0) ^ x0)) + t0),2.040624284418135e-2;-2.4912554654208585e-3;0.8483734996533299,-2.33794478727829e-2
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
(Abs(((x0 * t0) * (Abs(t0) ^ x0))) ^ x0),3.3429583957590854;0.46409996325548636,-0.1798781474570657
t0,1.798011049723757,-6.301759103812452e-2
(Abs(t0) ^ (Abs(t0) ^ ((x0 * t0) + t0))),-2.9483962012935367;0.5078083147411779;-2.7523974144101463e-2;0.9472187158590598,-6.272513210934937e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
((x0 * x0) / (Abs(t0) ^ (Abs(t0) ^ x0))),1.060713099276682;-3.2767181650211303,-0.6766528948116939
((t0 - x0) + (x0 * (t0 - x0))),-0.2890125435236616;4.28240012840377,-0.3518145550641812
((((x0 + t0) * t0) + x0) + t0),-0.4039990310072336;-0.9754617064030747;1.3640020626317415,-6.265251369818782e-2
(Abs(x0) ^ t0),0.6242219337896673,-0.45123191317181843
((Abs((x0 * (t0 - x0))) ^ t0) + t0),-0.9261122959169459;5.253493520784758e-2;0.7367563235283989,-5.135933182220122e-2
(Abs((x0 * t0)) ^ ((x0 * t0) + t0)),0.31863301051141146;0.8776940318471793;-0.2056357683950707,-Infinity
(((x0 * t0) * (Abs(t0) ^ x0)) + x0),9.324510681274452;-8.270195597854559e-2,-0.3013082318173606
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(Recip((x0 + t0))) ^ t0)) ^ t0),9.903363312961064;0.6726922719822538;-0.3568745335004874,-6.249241334939562e-2
Recip((Abs(t0) ^ ((Abs(t0) ^ x0) * x0))),-0.21354618701983658;0.44452991698970734,-1.884429746002135e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) + t0),0.5744920530131518;2.4538294470157863e-2;1.7439905893865786,-6.26525136981878e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs(t0) ^ x0),1.306872560852063,-0.21775454514039777
((Abs(t0) ^ (Abs(t0) ^ x0)) * (t0 - x0)),1.0148814181886894;4.212417918784524;3.3870780567653203,-0.5716892464153882
(t0 + (x0 + x0)),-1.4559563337099108,-2.4287539559336637
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
(Abs((Abs((t0 + (x0 + x0))) ^ t0)) ^ x0),18.60734115394863;8.400998821241651e-2,-0.2289603093409531
(((t0 / x0) * t0) * t0),-0.8548956688238036;-0.44041441591372377;0.4015619755125189,-Infinity
((Abs(((x0 + t0) * t0)) ^ t0) + t0),-2.9310247172547377e-2;1.7394532423668695e-2;0.11151059245445642;1.1755904285092005,-5.660947068321126e-2
((Recip((Abs(t0) ^ x0)) * x0) * x0),-1.5693193620335284,-0.8281640985648273
t0,1.798011049723757,-6.301759103812452e-2
(t0 + (((Abs(x0) ^ t0) - x0) + t0)),0.6533373981283083;0.9769982518002375;1.167488764004529,-6.237074394948763e-2
(Abs((Abs(x0) ^ x0)) ^ ((x0 * t0) * t0)),-0.43059683939884774;-0.1615284370149139,-0.5223945926682985
(Abs(t0) ^ x0),1.306872560852063,-0.21775454514039777
t0,1.798011049723757,-6.301759103812452e-2
((Recip((x0 * x0)) * t0) + x0),0.5304735554555351,-Infinity
(((x0 * t0) * t0) + x0),-0.5547238074176831;0.17353015836409974,-0.6386775021098047
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(t0) ^ x0)) ^ ((x0 * t0) + x0)),-0.6329056530985839;-1.1919496241803453,-0.3919651209880044
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
(Abs((Abs(((x0 + t0) + t0)) ^ t0)) ^ t0),5.429615780227277;5.347842208150895;-0.3265641549381391;-0.7132427004750953,-6.248443417803695e-2
((t0 / (x0 + t0)) * t0),8.079248075447387;34.888830607386794;8.119799371934741,-6.623456354832379e-2
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
(Abs(t0) ^ (Abs((t0 - x0)) ^ x0)),1.0550916857803947;1.1052606936281297,-0.6241055455929799
t0,1.798011049723757,-6.301759103812452e-2
(((Abs(t0) ^ x0) * t0) * t0),-1.0125722181826824;10.796923399740821;0.16317200583537717,-6.268341269094639e-2
((Abs((x0 * (t0 - x0))) ^ t0) + t0),-0.9261122959169459;5.253493520784758e-2;0.7367563235283989,-5.135933182220122e-2
(((x0 * t0) * t0) * t0),-1.0438632308889109;1.0853897269421013;-0.7976522016350513,-0.6386775021098048
(t0 + ((t0 - x0) + t0)),1.7155863004688456;0.8163050689401757;0.893103381972194,-0.6990852659514574
(Abs(t0) ^ ((x0 + t0) * t0)),0.8094240668973198;11.929730772159328;-0.2037392215433242,-6.468774909187429e-2
((Abs((x0 * (t0 - x0))) ^ t0) + t0),-0.9261122959169459;5.253493520784758e-2;0.7367563235283989,-5.135933182220122e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs(x0) ^ (Abs(t0) ^ (x0 + t0))) * t0),-6.686938225953369e-2;0.18804670895526923;1.8572454831126208,-2.3727792891901203e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip(((Abs(x0) ^ t0) - (t0 - x0))),-1.0933190599447802;1.6127566892958374,-0.39482223400066746
((Abs((t0 + (t0 / x0))) ^ t0) + x0),-0.7101402329197684;0.475319457559809;0.20898655276250994,-Infinity
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) + (x0 + x0)),-0.8899629082323315;-1.9754617055304244,-6.26525136981878e-2
((Abs((x0 + t0)) ^ t0) + t0),-0.11671293202302067;0.12565557513655606;0.7690761044936143,-5.15880196078145e-2
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
(t0 + Recip(((x0 * t0) + t0))),2.0457645421565576;-2.5859883788085045;-0.886603106278792,-4.464895680422913e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs((t0 + (t0 / x0))) ^ t0) + t0),0.7813983370113182;0.3524236782049717;-0.3635347512682534;0.6915311920207834,-6.120153515103759e-2
((((Abs(t0) ^ x0) + x0) * t0) + x0),-0.292990087310271;-3.723573173827152e-2,-0.6621838754385507
(Abs(t0) ^ ((x0 + t0) * t0)),0.8094240668973198;11.929730772159328;-0.2037392215433242,-6.468774909187429e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs(t0) ^ Recip((x0 * x0))),0.9999995024840452,-0.7006683827961868
Recip((Abs(((Abs(t0) ^ x0) * x0)) ^ (t0 / x0))),-0.5314391800590152;-0.17788951222725347,-0.8794249797550069
((((x0 + t0) * t0) + t0) * t0),-0.5145483558849431;2.0057661796599232e-2;1.4473860676387778;1.2233873384661371,-6.265251369818783e-2
(Abs(((Abs((x0 + t0)) ^ t0) + x0)) ^ t0),-1.3049333482100385;-0.32914180231498114;0.5067306125645031,-8.556846477760185e-2
(Abs(t0) ^ x0),1.306872560852063,-0.21775454514039777
t0,1.798011049723757,-6.301759103812452e-2
((Abs(x0) ^ (Abs(x0) ^ (x0 + t0))) * t0),-7.809476748336039e13;104.5358144006459,-7927.220764684332
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 + t0) * t0) + x0),-1.8023133387087484;-0.9754617057575627,-6.265251369818785e-2
(Abs(x0) ^ t0),0.6242219337896673,-0.45123191317181843
((x0 * t0) + t0),2.4538294469713593e-2;1.7580876445550615,-6.265251369818786e-2
((Recip(x0) + t0) + t0),-0.20094552809517574;0.9453894881634701,-Infinity
(t0 - Recip(Recip(x0))),3.424994751381215,-0.6990852659514575
t0,1.798011049723757,-6.301759103812452e-2
((Abs(t0) ^ x0) - x0),1.7959497344464985,-0.8076953109747774
((Abs(((x0 * t0) * t0)) ^ x0) + t0),-0.3153645206785231;-0.7172377692200346;1.5435499195528888,-0.11218970093956292
((Abs((x0 + t0)) ^ t0) + t0),-0.11671293202302067;0.12565557513655606;0.7690761044936143,-5.15880196078145e-2
t0,1.798011049723757,-6.301759103812452e-2
Recip(((Abs(t0) ^ x0) * x0)),-0.6466198511728602,-Infinity
(t0 + (x0 + x0)),-1.4559563337099108,-2.4287539559336637
((Abs(t0) ^ (Abs(t0) ^ x0)) + t0),2.040624284418135e-2;-2.4912554654208585e-3;0.8483734996533299,-2.33794478727829e-2
t0,1.798011049723757,-6.301759103812452e-2
((((Abs(x0) ^ x0) + x0) * t0) + x0),-2.9710607020081464e-2,-0.523254629769329
t0,1.798011049723757,-6.301759103812452e-2
Recip((x0 + t0)),0.30018947418515163,-1.6725629776198683
(((x0 + t0) - x0) + (Abs(x0) ^ t0)),0.7695408606073437;9.671273902006891e-2,-4.985094562874716e-2
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((x0 + t0)) ^ (x0 * t0)),25.73606343020392;7.998090656725262e-2,-0.2220525378362415
((x0 + t0) * x0),-1.330390737799499,-3.4548710763513313
t0,1.798011049723757,-6.301759103812452e-2
(((x0 * t0) * (x0 * x0)) + t0),-3.931338377523831e-3;1.8265859421768589,-6.198933408302831e-2
(Abs((Abs(((x0 * t0) + t0)) ^ t0)) ^ t0),-0.5571081130801886;-7.681398604764325;-0.5364111900983061;-0.5087519056829352,-6.252770978067605e-2
(Abs((Abs((x0 + (x0 * x0))) ^ t0)) ^ t0),0.4924239550270831;0.6156147571606113,-0.26458792792798946
((Abs(t0) ^ (Abs(t0) ^ x0)) + t0),2.040624284418135e-2;-2.4912554654208585e-3;0.8483734996533299,-2.33794478727829e-2
(Abs(x0) ^ (x0 + (x0 * (t0 - x0)))),-0.5270792191773335,-1.9624433351105364
t0,1.798011049723757,-6.301759103812452e-2
(t0 + Recip(((x0 * t0) + x0))),0.8113865457973144;0.6688339408408865,-Infinity
(Abs(t0) ^ ((x0 + t0) * t0)),0.8094240668973198;11.929730772159328;-0.2037392215433242,-6.468774909187429e-2
(Abs((Abs(((Abs(t0) ^ x0) * x0)) ^ x0)) ^ x0),0.7141117713258331,-0.822019525074207
(Abs((Abs(t0) ^ x0)) ^ (x0 + t0)),-0.797093690702314;-3.4834660993000086,-6.167665607314168e-2
((((x0 + t0) * x0) + x0) + t0),-4.233323539497371;3.805187832758677,-0.7564328590070166
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
(Abs((Abs(((x0 * t0) + t0)) ^ t0)) ^ t0),-0.5571081130801886;-7.681398604764325;-0.5364111900983061;-0.5087519056829352,-6.252770978067605e-2
((Abs((x0 * x0)) ^ t0) + t0),4.835636950887423e-2;0.7695408606099705,-4.985094562874714e-2
(x0 + Recip(Recip((t0 / x0)))),-6.659161192711371e-2,-Infinity
Recip((Abs(t0) ^ ((Abs(t0) ^ x0) * x0))),-0.21354618701983658;0.44452991698970734,-1.884429746002135e-2
(t0 + ((x0 * t0) + t0)),1.1255050308186683;2.4538294469713576e-2;0.6325826137363934,-6.265251369818786e-2
(Recip((x0 + t0)) * (x0 / (Abs(t0) ^ x0))),-0.4908536782521638;38.296159279993184,-3.4254783503191164
(Abs((Abs(((x0 * t0) + t0)) ^ x0)) ^ x0),0.14147620170984868;-1.4642148431168651,-0.2024944083288685
t0,1.798011049723757,-6.301759103812452e-2
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
(Abs((Abs((t0 - x0)) ^ t0)) ^ t0),-8.992260576554434;-0.4960290180698358;-0.4968692715563823,-6.25917184926245e-2
((Abs(((t0 / x0) + x0)) ^ t0) + t0),-0.7506872922084895;-7.529165423668038e-2;0.11268453087685759,-0.5146622887976949
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs(((x0 + t0) + x0)) ^ t0)) ^ t0),15.25414117033395;-0.8084938700824464;-0.2482959632949968,-6.242436305066427e-2
(Abs((Abs((t0 + (x0 + x0))) ^ t0)) ^ x0),18.60734115394863;8.400998821241651e-2,-0.2289603093409531
t0,1.798011049723757,-6.301759103812452e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
t0,1.798011049723757,-6.301759103812452e-2
(((x0 * t0) * (Abs(t0) ^ x0)) + x0),9.324510681274452;-8.270195597854559e-2,-0.3013082318173606
t0,1.798011049723757,-6.301759103812452e-2
(t0 + (((Abs(x0) ^ t0) - x0) + x0)),0.7695408606175317;9.671273903215724e-2,-4.985094562874718e-2
t0,1.798011049723757,-6.301759103812452e-2
((Abs(((x0 + t0) * t0)) ^ x0) + t0),-0.21063508877733347;-0.2148278995331433;1.6121399294335697,-0.10587569716984863
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
(((x0 + t0) + t0) + t0),0.7391365402096591;-0.2767155758254259;-0.2913936161102984,-0.6395738210321935
t0,1.798011049723757,-6.301759103812452e-2
((t0 * (t0 - x0)) - x0),-1.024538294575995;-1.7159804115296469,-6.265251369818782e-2
(((x0 + t0) * t0) * t0),12.118555748967752;0.29612295131102256;0.43465436890127335,-7.006204666957283e-2
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
Recip((Abs(t0) ^ (((x0 + t0) + t0) * t0))),2.086263317757441;5.086966249452414;3.5839607254084838;-7.534261431201748e-2,-6.721330446775645e-2
((((x0 + t0) * t0) + x0) + t0),-0.4039990310072336;-0.9754617064030747;1.3640020626317415,-6.265251369818782e-2
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
(((Abs(t0) ^ x0) * (x0 * x0)) + t0),0.2689043225054898;1.5531354469290648,-4.210984787700131e-2
(Abs(t0) ^ (Abs(t0) ^ ((x0 * t0) + x0))),-1.766619488116324;0.5644947016997125;-1.032617809721424,-6.272513210934935e-2
t0,1.798011049723757,-6.301759103812452e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs((Abs((t0 + (x0 + x0))) ^ t0)) ^ t0),9.906963382750222;0.6753811648313344;0.3372819320178401,-6.272625360286174e-2
((Abs((x0 * t0)) ^ t0) + t0),-0.38970768842105175;0.10147823403414215;0.8514609401196096,-5.031244382553329e-2
(t0 + (((x0 * t0) - x0) + t0)),0.511105551684561;1.024538294469559;1.2469820928694462,-6.265251369818786e-2
((Abs((x0 * (t0 - x0))) ^ t0) + x0),-3.8572845495227985e-2;2.586755617426082e-4,-1.3283174499414112
((Abs(((x0 * t0) * x0)) ^ t0) + t0),4.830348695799827;4.617540190517071e-2;0.6909451285653168,-4.9649241916396414e-2
Recip((t0 - (t0 - x0))),-4.366532913755858e-2;-0.3438548033236743,-1.672562977619867
((((Abs(t0) ^ x0) + x0) * t0) + t0),0.343815074247209;-1.7509490345387742e-2;1.8312341558727552,-6.294425080199902e-2
(((x0 * t0) * t0) + t0),-2.2790622962242667e-2;-1.0766838039606896;1.7580876443297981,-6.26525136981878e-2
(((x0 + t0) * (x0 * t0)) + t0),-0.1112036982926486;-8.273897501527318e-3;1.8232464211875308,-6.256305435076341e-2
(Abs(((x0 + t0) * t0)) ^ Recip(x0)),0.5531395067193488;-1.2816188800590629,-1.5970480459275828e-2
((Abs(x0) ^ (Abs(t0) ^ (x0 + x0))) * t0),-0.12526074176572383;1.8586543095185415,-2.5163128985135185e-2
(Abs((Abs(((x0 * t0) + x0)) ^ t0)) ^ x0),29.09812060432872;5.649872688176577e-2,-0.2710771398335667
((((x0 + t0) * x0) + x0) + t0),-4.233323539497371;3.805187832758677,-0.7564328590070166
(x0 * t0),0.9037386912116565,-0.6386775021098046
((Abs((x0 * t0)) ^ t0) + t0),-0.38970768842105175;0.10147823403414215;0.8514609401196096,-5.031244382553329e-2
((Abs(((x0 * t0) * t0)) ^ t0) + t0),-2.6074694082142678;-2.510164954214294;8.699042138443204e-2;0.5908815189081645,-4.9474461820326575e-2
t0,1.798011049723757,-6.301759103812452e-2
(Abs(t0) ^ (x0 + (x0 * t0))),1.16011311152372;0.802056361905146,-0.2177545451403976
(Abs(t0) ^ x0),1.306872560852063,-0.21775454514039777
(Abs((Abs(((x0 * t0) + t0)) ^ t0)) ^ t0),-0.5571081130801886;-7.681398604764325;-0.5364111900983061;-0.5087519056829352,-6.252770978067605e-2