fx92.py

Created by schraf

Created on January 04, 2024

4.17 KB


import turtle
t = turtle

#data = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,10912,43688,43688,174762,164522,131242,524330,524330,524298,10,2,524290,2228224,8945664,35397632,4063232,142542848,184526848,369087488,452963328,469756928,1056947712,788511232,738191872,805304832,1006628352,721398272,536871424,2818574976,1979725568,494984192,1533242624,652456448,400815104,434359296,98816000,375600128,157501440,94556160,107163648,56844288,27443200,135339942140,965333951363,5438047488,551366433536,827318100481,962878096899,1032269005831,1065663343624,1083136968720,541249785856,961317675392,240509910528,64156071936,8566333440,134215680,4187136,34360770694,253952,68719603712,63488,1030792183552,15418,1030792158720,1921,532575945211,7,239444426767,15,128849018911,127263,98784247839,249119,1099511627743,0,0,0,0,0,0,0,0,0,0,1048576,0,1048576,2148532736,3670016,808982528,137442099208,103853647920,52614399072,164939549896,83216567696,40596380960,87782071376,43922700449,572173859139,870217314983,984857240910,423699991180,91586925905,836062751367,1036504945950,532711219324,133211111920,553783401987,1030793199647,68186279904,1097456239614,1090925363455,1032206963743,11275340416,91301643600,180591026344,361784965204,691356581386,283336261381,16932740992,171311009736,67746351072,617133108194,133621903856,681560251122,120661749872,71806499344,206630842392,140659128840,137967693832,3103865344,275381284868,5255805184,876894208,10255436928,2716797440,37127866912,2751482368,2751482368,7046449920,11274308224,11274291840,11274291840,28454161024,148713245328,11274291842,11274291840,11542731392,11408517760,11408517632,2684357248,2818583168,671098880,2818582656,2281710208,671099392,2147493888,2281711744,134225920,10752,134225920,8192,10240,2048,10240,8192,0,8192,0,0,0,0,0,0,0]

data = [137438953471,137438953471,137438953471,137371846655,137371846655,133160755231,133160755231,133160755231,124554051335,124554051335,124554051335,124554051559,124554051559,16645095392,16645095392,16645095392,12885162232,12885162232,12885162232,253976,253976,63736,63736,63736,469827576,469827576,469827576,4278198240,4278198240,469762048,469762048,469762048,120259084288,120259084288,120259084288,120259084295,120259084295,133143986183,133143986183,133143986183,136902082591,136902082591,136902082591,137422178303,137422178303,137438953471,137438953471,137438953471,137438953471,137438953471,137438953471,133630523647,133630523647,124487139359,124487139359,124487139359,133158920447,133158920447,133158920447,120324153599,120324153599,4294762751,4294762751,4294762751,120275605535,120275605535,120275605535,120261116135,120261116135,196615,196615,196615,0,0,0,4227858463,4227858463,65267487,65267487,65267487,120326193151,120326193151,120326193151,133158928383,133158928383,3758161919,3758161919,3758161919,124017442815,124017442815,124017442815,50391039,50391039,124551954687,124551954687,124551954687,136968931327,136968931327,136968931327,137373679847,137373679847,120261115935,120261115935,120261115935,136969183239,136969183239,136969183239,133160755231,133160755231,120259084519,120259084519,120259084519,469763871,469763871,469763871,536807423,536807423,120261181439,120261181439,120261181439,12884967423,12884967423,12884967423,124017182719,124017182719,14682111,14682111,14682111,3825139967,3825139967,3825139967,4294959135,4294959135,137438945311,137438945311,137438945311,136918794471,136918794471,136918794471,133680595199,133680595199,120259092479,120259092479,120259092479,137386786815,137386786815,137386786815,137438953471,137438953471,137371846655,137371846655,137371846655,133160755231,133160755231,133160755231,124554051335,124554051335,124554051559,124554051559,124554051559,16645095392,16645095392,16645095392,12885162232,12885162232,253976,253976,253976,63736,63736,63736,469827576,469827576,4278198240,4278198240,4278198240,469762048,469762048,469762048,120259084288,120259084288,120259084295,120259084295,120259084295,133143986183,133143986183,133143986183,136902082591,136902082591,137422178303,137422178303,137422178303]
t.speed(0)
t.penup()
t.hideturtle()
b = -90
t.setheading(-90)
for v in data:
  t.goto(b,22)
  b += 1
  for _ in range(40):
      v = v / 2.
      if v == int(v):
        t.pendown()
        t.fd(0)
      t.penup()
      t.fd(1)
      v = int(v)