SM_Ivy_Preset_06.fbx 2.4 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. ; FBX 7.5.0 project file
  2. ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
  3. ; All rights reserved.
  4. ; ----------------------------------------------------
  5. FBXHeaderExtension: {
  6. FBXHeaderVersion: 1003
  7. FBXVersion: 7500
  8. CreationTimeStamp: {
  9. Version: 1000
  10. Year: 2021
  11. Month: 4
  12. Day: 5
  13. Hour: 13
  14. Minute: 30
  15. Second: 41
  16. Millisecond: 240
  17. }
  18. Creator: "FBX SDK/FBX Plugins version 2016.1.2"
  19. SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
  20. Type: "UserData"
  21. Version: 100
  22. MetaData: {
  23. Version: 100
  24. Title: ""
  25. Subject: ""
  26. Author: ""
  27. Keywords: ""
  28. Revision: ""
  29. Comment: ""
  30. }
  31. Properties70: {
  32. P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Ivy_Preset_06.fbx"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Ivy_Preset_06.fbx"
  34. P: "Original", "Compound", "", ""
  35. P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
  36. P: "Original|ApplicationName", "KString", "", "", "Maya LT"
  37. P: "Original|ApplicationVersion", "KString", "", "", "2016"
  38. P: "Original|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:30:41.239"
  39. P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Ivy_Preset_06.fbx"
  40. P: "LastSaved", "Compound", "", ""
  41. P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
  42. P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
  43. P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
  44. P: "LastSaved|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:30:41.239"
  45. P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel"
  46. P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_10_Unity_EXPORT.mlt"
  47. }
  48. }
  49. }
  50. GlobalSettings: {
  51. Version: 1000
  52. Properties70: {
  53. P: "UpAxis", "int", "Integer", "",1
  54. P: "UpAxisSign", "int", "Integer", "",1
  55. P: "FrontAxis", "int", "Integer", "",2
  56. P: "FrontAxisSign", "int", "Integer", "",1
  57. P: "CoordAxis", "int", "Integer", "",0
  58. P: "CoordAxisSign", "int", "Integer", "",1
  59. P: "OriginalUpAxis", "int", "Integer", "",1
  60. P: "OriginalUpAxisSign", "int", "Integer", "",1
  61. P: "UnitScaleFactor", "double", "Number", "",1
  62. P: "OriginalUnitScaleFactor", "double", "Number", "",1
  63. P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
  64. P: "DefaultCamera", "KString", "", "", "Producer Perspective"
  65. P: "TimeMode", "enum", "", "",6
  66. P: "TimeProtocol", "enum", "", "",2
  67. P: "SnapOnFrameMode", "enum", "", "",0
  68. P: "TimeSpanStart", "KTime", "Time", "",1539538600
  69. P: "TimeSpanStop", "KTime", "Time", "",92372316000
  70. P: "CustomFrameRate", "double", "Number", "",-1
  71. P: "TimeMarker", "Compound", "", ""
  72. P: "CurrentTimeMarker", "int", "Integer", "",-1
  73. }
  74. }
  75. ; Documents Description
  76. ;------------------------------------------------------------------
  77. Documents: {
  78. Count: 1
  79. Document: 2266844791728, "", "Scene" {
  80. Properties70: {
  81. P: "SourceObject", "object", "", ""
  82. P: "ActiveAnimStackName", "KString", "", "", "Take 001"
  83. }
  84. RootNode: 0
  85. }
  86. }
  87. ; Document References
  88. ;------------------------------------------------------------------
  89. References: {
  90. }
  91. ; Object definitions
  92. ;------------------------------------------------------------------
  93. Definitions: {
  94. Version: 100
  95. Count: 23
  96. ObjectType: "GlobalSettings" {
  97. Count: 1
  98. }
  99. ObjectType: "AnimationStack" {
  100. Count: 1
  101. PropertyTemplate: "FbxAnimStack" {
  102. Properties70: {
  103. P: "Description", "KString", "", "", ""
  104. P: "LocalStart", "KTime", "Time", "",0
  105. P: "LocalStop", "KTime", "Time", "",0
  106. P: "ReferenceStart", "KTime", "Time", "",0
  107. P: "ReferenceStop", "KTime", "Time", "",0
  108. }
  109. }
  110. }
  111. ObjectType: "AnimationLayer" {
  112. Count: 1
  113. PropertyTemplate: "FbxAnimLayer" {
  114. Properties70: {
  115. P: "Weight", "Number", "", "A",100
  116. P: "Mute", "bool", "", "",0
  117. P: "Solo", "bool", "", "",0
  118. P: "Lock", "bool", "", "",0
  119. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  120. P: "BlendMode", "enum", "", "",0
  121. P: "RotationAccumulationMode", "enum", "", "",0
  122. P: "ScaleAccumulationMode", "enum", "", "",0
  123. P: "BlendModeBypass", "ULongLong", "", "",0
  124. }
  125. }
  126. }
  127. ObjectType: "NodeAttribute" {
  128. Count: 2
  129. PropertyTemplate: "FbxNull" {
  130. Properties70: {
  131. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  132. P: "Size", "double", "Number", "",100
  133. P: "Look", "enum", "", "",1
  134. }
  135. }
  136. }
  137. ObjectType: "Model" {
  138. Count: 5
  139. PropertyTemplate: "FbxNode" {
  140. Properties70: {
  141. P: "QuaternionInterpolate", "enum", "", "",0
  142. P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
  143. P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
  144. P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
  145. P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
  146. P: "TranslationActive", "bool", "", "",0
  147. P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
  148. P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
  149. P: "TranslationMinX", "bool", "", "",0
  150. P: "TranslationMinY", "bool", "", "",0
  151. P: "TranslationMinZ", "bool", "", "",0
  152. P: "TranslationMaxX", "bool", "", "",0
  153. P: "TranslationMaxY", "bool", "", "",0
  154. P: "TranslationMaxZ", "bool", "", "",0
  155. P: "RotationOrder", "enum", "", "",0
  156. P: "RotationSpaceForLimitOnly", "bool", "", "",0
  157. P: "RotationStiffnessX", "double", "Number", "",0
  158. P: "RotationStiffnessY", "double", "Number", "",0
  159. P: "RotationStiffnessZ", "double", "Number", "",0
  160. P: "AxisLen", "double", "Number", "",10
  161. P: "PreRotation", "Vector3D", "Vector", "",0,0,0
  162. P: "PostRotation", "Vector3D", "Vector", "",0,0,0
  163. P: "RotationActive", "bool", "", "",0
  164. P: "RotationMin", "Vector3D", "Vector", "",0,0,0
  165. P: "RotationMax", "Vector3D", "Vector", "",0,0,0
  166. P: "RotationMinX", "bool", "", "",0
  167. P: "RotationMinY", "bool", "", "",0
  168. P: "RotationMinZ", "bool", "", "",0
  169. P: "RotationMaxX", "bool", "", "",0
  170. P: "RotationMaxY", "bool", "", "",0
  171. P: "RotationMaxZ", "bool", "", "",0
  172. P: "InheritType", "enum", "", "",0
  173. P: "ScalingActive", "bool", "", "",0
  174. P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
  175. P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
  176. P: "ScalingMinX", "bool", "", "",0
  177. P: "ScalingMinY", "bool", "", "",0
  178. P: "ScalingMinZ", "bool", "", "",0
  179. P: "ScalingMaxX", "bool", "", "",0
  180. P: "ScalingMaxY", "bool", "", "",0
  181. P: "ScalingMaxZ", "bool", "", "",0
  182. P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
  183. P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
  184. P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
  185. P: "MinDampRangeX", "double", "Number", "",0
  186. P: "MinDampRangeY", "double", "Number", "",0
  187. P: "MinDampRangeZ", "double", "Number", "",0
  188. P: "MaxDampRangeX", "double", "Number", "",0
  189. P: "MaxDampRangeY", "double", "Number", "",0
  190. P: "MaxDampRangeZ", "double", "Number", "",0
  191. P: "MinDampStrengthX", "double", "Number", "",0
  192. P: "MinDampStrengthY", "double", "Number", "",0
  193. P: "MinDampStrengthZ", "double", "Number", "",0
  194. P: "MaxDampStrengthX", "double", "Number", "",0
  195. P: "MaxDampStrengthY", "double", "Number", "",0
  196. P: "MaxDampStrengthZ", "double", "Number", "",0
  197. P: "PreferedAngleX", "double", "Number", "",0
  198. P: "PreferedAngleY", "double", "Number", "",0
  199. P: "PreferedAngleZ", "double", "Number", "",0
  200. P: "LookAtProperty", "object", "", ""
  201. P: "UpVectorProperty", "object", "", ""
  202. P: "Show", "bool", "", "",1
  203. P: "NegativePercentShapeSupport", "bool", "", "",1
  204. P: "DefaultAttributeIndex", "int", "Integer", "",-1
  205. P: "Freeze", "bool", "", "",0
  206. P: "LODBox", "bool", "", "",0
  207. P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
  208. P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
  209. P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
  210. P: "Visibility", "Visibility", "", "A",1
  211. P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
  212. }
  213. }
  214. }
  215. ObjectType: "Geometry" {
  216. Count: 3
  217. PropertyTemplate: "FbxMesh" {
  218. Properties70: {
  219. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  220. P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
  221. P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
  222. P: "Primary Visibility", "bool", "", "",1
  223. P: "Casts Shadows", "bool", "", "",1
  224. P: "Receive Shadows", "bool", "", "",1
  225. }
  226. }
  227. }
  228. ObjectType: "Material" {
  229. Count: 2
  230. PropertyTemplate: "FbxSurfacePhong" {
  231. Properties70: {
  232. P: "ShadingModel", "KString", "", "", "Phong"
  233. P: "MultiLayer", "bool", "", "",0
  234. P: "EmissiveColor", "Color", "", "A",0,0,0
  235. P: "EmissiveFactor", "Number", "", "A",1
  236. P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
  237. P: "AmbientFactor", "Number", "", "A",1
  238. P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
  239. P: "DiffuseFactor", "Number", "", "A",1
  240. P: "Bump", "Vector3D", "Vector", "",0,0,0
  241. P: "NormalMap", "Vector3D", "Vector", "",0,0,0
  242. P: "BumpFactor", "double", "Number", "",1
  243. P: "TransparentColor", "Color", "", "A",0,0,0
  244. P: "TransparencyFactor", "Number", "", "A",0
  245. P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
  246. P: "DisplacementFactor", "double", "Number", "",1
  247. P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
  248. P: "VectorDisplacementFactor", "double", "Number", "",1
  249. P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
  250. P: "SpecularFactor", "Number", "", "A",1
  251. P: "ShininessExponent", "Number", "", "A",20
  252. P: "ReflectionColor", "Color", "", "A",0,0,0
  253. P: "ReflectionFactor", "Number", "", "A",1
  254. }
  255. }
  256. }
  257. ObjectType: "Texture" {
  258. Count: 4
  259. PropertyTemplate: "FbxFileTexture" {
  260. Properties70: {
  261. P: "TextureTypeUse", "enum", "", "",0
  262. P: "Texture alpha", "Number", "", "A",1
  263. P: "CurrentMappingType", "enum", "", "",0
  264. P: "WrapModeU", "enum", "", "",0
  265. P: "WrapModeV", "enum", "", "",0
  266. P: "UVSwap", "bool", "", "",0
  267. P: "PremultiplyAlpha", "bool", "", "",1
  268. P: "Translation", "Vector", "", "A",0,0,0
  269. P: "Rotation", "Vector", "", "A",0,0,0
  270. P: "Scaling", "Vector", "", "A",1,1,1
  271. P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
  272. P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
  273. P: "CurrentTextureBlendMode", "enum", "", "",1
  274. P: "UVSet", "KString", "", "", "default"
  275. P: "UseMaterial", "bool", "", "",0
  276. P: "UseMipMap", "bool", "", "",0
  277. }
  278. }
  279. }
  280. ObjectType: "Video" {
  281. Count: 4
  282. PropertyTemplate: "FbxVideo" {
  283. Properties70: {
  284. P: "ImageSequence", "bool", "", "",0
  285. P: "ImageSequenceOffset", "int", "Integer", "",0
  286. P: "FrameRate", "double", "Number", "",0
  287. P: "LastFrame", "int", "Integer", "",0
  288. P: "Width", "int", "Integer", "",0
  289. P: "Height", "int", "Integer", "",0
  290. P: "Path", "KString", "XRefUrl", "", ""
  291. P: "StartFrame", "int", "Integer", "",0
  292. P: "StopFrame", "int", "Integer", "",0
  293. P: "PlaySpeed", "double", "Number", "",0
  294. P: "Offset", "KTime", "Time", "",0
  295. P: "InterlaceMode", "enum", "", "",0
  296. P: "FreeRunning", "bool", "", "",0
  297. P: "Loop", "bool", "", "",0
  298. P: "AccessMode", "enum", "", "",0
  299. }
  300. }
  301. }
  302. }
  303. ; Object properties
  304. ;------------------------------------------------------------------
  305. Objects: {
  306. NodeAttribute: 2270628000656, "NodeAttribute::", "Null" {
  307. Properties70: {
  308. P: "Look", "enum", "", "",0
  309. }
  310. TypeFlags: "Null"
  311. }
  312. NodeAttribute: 2268467037120, "NodeAttribute::", "LodGroup" {
  313. Properties70: {
  314. P: "WorldSpace", "bool", "", "",1
  315. P: "Thresholds|Level0", "Distance", "", "",100, "cm"
  316. P: "Thresholds|Level1", "Distance", "", "",100, "cm"
  317. P: "DisplayLevels|Level0", "enum", "", "",1
  318. P: "DisplayLevels|Level1", "enum", "", "",1
  319. P: "DisplayLevels|Level2", "enum", "", "",1
  320. }
  321. }
  322. Geometry: 2267733796512, "Geometry::", "Mesh" {
  323. Vertices: *3858 {
  324. a: -17.037109375,338.297546386719,99.8131713867188,-9.671875,316.774047851563,84.0201416015625,-14.9150390625,310.434234619141,98.8639221191406,-15.552734375,332.213134765625,75.319580078125,-13.44140625,294.093963623047,92.8488464355469,-12.546875,305.582855224609,51.1687927246094,-6.7802734375,292.441253662109,58.5076599121094,-8.4296875,266.651092529297,22.4430847167969,-7.3671875,288.376312255859,79.6819763183594,-7.0556640625,275.09716796875,95.86669921875,-13.044921875,276.29052734375,115.07373046875,-10.001953125,251.544128417969,86.6759643554688,-4.2900390625,251.694519042969,71.7003784179688,-6.3330078125,212.566802978516,68.7074279785156,-5.9697265625,250.19677734375,51.66357421875,-3.34765625,259.01220703125,36.26806640625,-1.5185546875,202.321594238281,30.9094848632813,0.3662109375,220.447647094727,16.5042877197266,-4.232421875,222.621520996094,0.88519287109375,2.681640625,189.035934448242,17.2644500732422,-1.234375,182.530212402344,0.84368896484375,-0.8330078125,162.028503417969,27.7423706054688,2.951171875,176.799591064453,32.6023254394531,2.46484375,175.740997314453,46.0564270019531,-1.625,158.371398925781,53.0715942382813,-0.51171875,208.619964599609,58.3934020996094,0.337890625,182.86003112793,59.9840545654297,-4.138671875,179.897811889648,74.5862884521484,-23.3515625,284.81689453125,-187.94091796875,-15.986328125,258.145965576172,-186.777862548828,-21.2294921875,262.496459960938,-171.234985351563,-21.8671875,264.737243652344,-203.229553222656,-19.755859375,245.989379882813,-165.694213867188,-18.861328125,228.851501464844,-205.387756347656,-13.095703125,223.199478149414,-191.436264038086,-14.7451171875,180.509613037109,-203.410308837891,-13.681640625,233.286926269531,-172.382019042969,-13.3701171875,233.066680908203,-151.446014404297,-19.359375,246.022399902344,-137.217834472656,-16.31640625,208.946701049805,-143.866775512695,-10.60546875,199.687133789063,-155.639038085938,-12.6484375,167.303909301758,-133.474411010742,-12.28515625,185.974975585938,-170.322875976563,-9.662109375,183.208557128906,-187.848083496094,
  325. -7.8349609375,135.650146484375,-156.532470703125,-5.9501953125,140.764373779297,-179.113555908203,-10.548828125,132.680145263672,-192.653839111328,-3.634765625,116.747451782227,-158.853134155273,-7.55078125,101.39372253418,-167.58381652832,-7.150390625,102.24870300293,-133.77473449707,-3.365234375,116.809585571289,-139.232406616211,-3.8515625,124.407684326172,-128.078643798828,-7.94140625,115.255966186523,-111.734268188477,-6.8271484375,157.769134521484,-139.045318603516,-5.978515625,138.678695678711,-121.676773071289,-10.455078125,145.511260986328,-108.436004638672,-13.9453125,233.799057006836,-80.4411773681641,-5.6201171875,209.904663085938,-91.6959228515625,-10.7275390625,206.399230957031,-75.8966674804688,-12.03125,223.08740234375,-103.26220703125,-8.5673828125,189.26806640625,-78.58154296875,-7.796875,192.374572753906,-121.707458496094,-1.5791015625,181.170852661133,-111.928756713867,-1.9345703125,148.755767822266,-142.221771240234,-2.171875,181.323013305664,-90.3693695068359,-1.4677734375,171.504180908203,-71.8883972167969,-7.6494140625,176.206008911133,-53.2920379638672,-3.41796875,146.506378173828,-76.2729187011719,2.400390625,143.940612792969,-90.9861450195313,1.9140625,104.937316894531,-86.2306518554688,0.9384765625,138.471725463867,-110.336868286133,3.3349609375,144.189361572266,-127.166107177734,7.421875,87.6695098876953,-121.277755737305,8.708984375,102.674209594727,-138.963485717773,4.1513671875,101.55322265625,-154.70654296875,12.2451171875,72.1413726806641,-132.045150756836,8.7158203125,62.3867340087891,-146.867172241211,9.7080078125,47.5990142822266,-116.464462280273,12.873046875,63.1760406494141,-114.601303100586,12.3232421875,64.7615356445313,-101.202331542969,8.861328125,48.9586334228516,-90.9105072021484,7.9658203125,99.2775726318359,-95.5671539306641,9.8095703125,74.3862762451172,-88.9457550048828,5.3388671875,74.1730194091797,-74.0457305908203,-17.37890625,73.9957885742188,184.072952270508,-10.0126953125,55.5417327880859,164.781967163086,-15.255859375,46.7206268310547,178.299728393555,-15.8935546875,72.2570343017578,158.895706176758,
  326. -13.7822265625,31.6731109619141,169.539321899414,-12.8876953125,50.2251434326172,130.486862182617,-7.1220703125,36.0087432861328,135.432571411133,-8.7705078125,16.8729705810547,95.4374237060547,-7.7080078125,28.3287811279297,155.57878112793,-7.396484375,12.4407348632813,169.213195800781,-13.3857421875,10.2808380126953,188.334548950195,-10.3427734375,-9.15840148925781,156.071090698242,-4.630859375,-6.40968322753906,141.348129272461,-6.673828125,-44.4232635498047,131.607009887695,-6.310546875,-4.40553283691406,121.357162475586,-3.6884765625,6.94960021972656,107.725967407227,-1.859375,-47.9493560791016,92.6043548583984,0.025390625,-27.5972137451172,81.5658721923828,-4.5732421875,-22.7440948486328,66.5605926513672,2.3408203125,-58.6637115478516,76.8597259521484,-1.5751953125,-62.2191925048828,59.5581512451172,-1.173828125,-87.0802459716797,82.4881134033203,2.6103515625,-73.3776092529297,89.8401641845703,2.1240234375,-76.7563629150391,102.905746459961,-1.9658203125,-95.0801544189453,106.797775268555,-0.8525390625,-46.5192413330078,120.764938354492,-0.0029296875,-72.1639556884766,117.857528686523,-4.4794921875,-77.6167449951172,131.724075317383,-1.4267578125,-21.2458648681641,67.3781585693359,-7.029296875,-63.4850921630859,72.7697906494141,-7.029296875,-28.6278228759766,102.094833374023,-7.029296875,24.6635894775391,64.7612457275391,-1.4267578125,-54.5111236572266,60.9810638427734,-7.0283203125,-76.8973846435547,12.0987091064453,-1.4267578125,12.9608917236328,44.5556182861328,-7.0283203125,54.5232696533203,-2.89958190917969,-1.42578125,-54.1176605224609,6.30616760253906,-7.0283203125,-51.6646270751953,-44.9898223876953,-4.3232421875,-18.4732818603516,5.15367126464844,-1.42578125,-40.2656707763672,-37.9668426513672,-7.0283203125,-1.43095397949219,-59.6125946044922,-1.42578125,38.3267211914063,-9.95062255859375,-1.42578125,6.49497985839844,-42.5294342041016,-1.42578125,78.1684112548828,-46.2476043701172,-7.0283203125,94.2287750244141,-47.2975921630859,-4.3232421875,38.2367706298828,-50.0444793701172,-1.42578125,85.3848419189453,-64.7665252685547,
  327. -7.0283203125,117.883941650391,-88.3445739746094,-7.0283203125,72.8841552734375,-97.9332275390625,-1.42578125,39.0110931396484,-70.8648834228516,-7.0283203125,31.2627410888672,-97.9599151611328,-1.42578125,62.9413299560547,-76.3125762939453,2.5302734375,48.3122863769531,79.4636535644531,-3.0712890625,20.8654174804688,46.9083862304688,-3.0712890625,15.1450042724609,92.1000823974609,-3.0712890625,75.4201202392578,116.608596801758,2.53125,35.6361236572266,48.0511627197266,-3.0712890625,64.5510101318359,2.72288513183594,2.5302734375,86.0434722900391,95.8149566650391,-3.0712890625,148.456588745117,104.978073120117,2.53125,81.7774200439453,18.7149200439453,-3.0712890625,126.19702911377,-7.05785369873047,-0.3662109375,102.085311889648,48.0306243896484,2.53125,126.481979370117,6.32767486572266,-3.0712890625,165.735656738281,27.2053833007813,2.53125,145.592102050781,87.5471801757813,2.53125,155.686370849609,43.1316833496094,2.53125,197.698913574219,101.320007324219,-3.0712890625,207.295104980469,114.241394042969,-0.3662109375,179.222198486328,65.7163391113281,2.53125,217.170288085938,97.3343505859375,-3.0712890625,254.609375,111.83984375,-3.0712890625,238.247619628906,68.8374481201172,2.53125,197.131469726563,55.0699462890625,-3.0712890625,215.686935424805,33.8607635498047,2.53125,214.690979003906,72.2163696289063,-1.8740234375,-13.4093170166016,-117.377090454102,-7.4765625,-52.4727630615234,-134.326278686523,-7.4765625,-37.4939117431641,-91.3064117431641,-7.4765625,27.3914184570313,-96.1681518554688,-1.8740234375,-38.7357025146484,-139.873397827148,-7.4755859375,-33.0014801025391,-193.331558227539,-1.8740234375,27.6564331054688,-119.516418457031,-7.4755859375,87.6312255859375,-139.071899414063,-1.873046875,-10.4598236083984,-186.671737670898,-7.4755859375,17.8594055175781,-229.512664794922,-4.7705078125,20.7687225341797,-169.44807434082,-1.873046875,24.0690002441406,-217.650726318359,-7.4755859375,68.5116119384766,-216.413192749023,-1.873046875,77.3119506835938,-153.408752441406,-1.873046875,66.5958404541016,-197.678573608398,
  328. -1.873046875,130.106292724609,-164.253082275391,-7.4755859375,144.448303222656,-156.949157714844,-4.7705078125,97.7213287353516,-187.920272827148,-1.873046875,145.772094726563,-176.484741210938,-7.4755859375,185.755874633789,-180.145492553711,-7.4755859375,151.973587036133,-211.381881713867,-1.873046875,109.025482177734,-205.421783447266,-7.4755859375,116.209579467773,-232.672256469727,-1.873046875,132.378997802734,-197.875885009766,-27.0146484375,243.174285888672,126.014129638672,-25.4169921875,283.274353027344,88.8602905273438,-16.2431640625,243.735504150391,59.1222076416016,-4.4501953125,212.976318359375,65.052490234375,-5.185546875,209.781494140625,44.506103515625,-2.2998046875,206.345153808594,60.8002319335938,-11.73046875,227.474334716797,47.4313659667969,2.3623046875,213.949645996094,34.9887084960938,-16.9404296875,266.241943359375,58.882568359375,-1.171875,236.221435546875,33.390380859375,-11.732421875,272.497833251953,51.4626770019531,-33.3291015625,227.049926757813,-107.953002929688,-31.7314453125,235.055572509766,-162.030364990234,-22.55859375,185.606307983398,-160.463027954102,-10.765625,165.334930419922,-136.580108642578,-11.501953125,149.979827880859,-150.600250244141,-8.615234375,157.502624511719,-135.743469238281,-18.0458984375,165.607528686523,-159.397354125977,-3.953125,147.270538330078,-160.631805419922,-23.2548828125,203.005676269531,-174.741394042969,-7.48828125,163.636520385742,-175.822463989258,-18.0478515625,203.238098144531,-184.443542480469,-20.3984375,145.352340698242,-36.0578155517578,-20.0791015625,177.406707763672,-80.3667297363281,-9.1328125,133.196044921875,-101.755126953125,3.8076171875,104.695938110352,-89.8948822021484,3.3583984375,97.5018005371094,-109.412261962891,6.2490234375,97.4502716064453,-92.7596893310547,-3.8955078125,115.149169921875,-110.020751953125,10.8134765625,100.017517089844,-119.563537597656,-10.7080078125,155.171188354492,-106.411819458008,6.421875,121.382759094238,-125.506889343262,-5.69140625,160.050933837891,-114.916839599609,-27.35546875,-24.2319488525391,193.357894897461,
  329. -25.7578125,21.7105255126953,163.732009887695,-16.583984375,-12.0637054443359,127.579849243164,-4.791015625,-43.3853302001953,128.079513549805,-5.5263671875,-42.9638214111328,107.290084838867,-2.640625,-49.1775360107422,122.741409301758,-12.0712890625,-26.0478363037109,113.244155883789,2.021484375,-37.2062225341797,98.6404571533203,-17.28125,10.1423797607422,131.252731323242,-1.5126953125,-14.9953765869141,100.934310913086,-12.0732421875,17.5916290283203,125.03205871582,-12.720703125,111.19010925293,-36.6048126220703,-14.9853515625,106.07405090332,-73.9650115966797,-12.7451171875,82.2799530029297,-69.1360626220703,-13.4541015625,57.2930450439453,-10.4022674560547,-7.3935546875,75.5377044677734,-1.83045959472656,-3.9296875,30.1917266845703,-3.89323425292969,-3.681640625,38.2913665771484,8.58921813964844,-7.291015625,-72.1888580322266,57.6783294677734,-0.037109375,-55.6662139892578,46.1638641357422,-7.0263671875,-52.6903533935547,15.4873809814453,-15.2685546875,-81.2807769775391,36.9594573974609,-8.923828125,-92.9013214111328,46.6162567138672,-19.359375,-80.7388458251953,-6.60896301269531,-17.7705078125,-94.8048858642578,13.2419891357422,-8.763671875,207.515808105469,134.290222167969,-11.029296875,236.122375488281,109.721969604492,-8.7890625,219.156066894531,92.3542938232422,-9.498046875,156.262145996094,103.233810424805,-3.4365234375,158.960845947266,123.210845947266,0.02734375,136.089691162109,84.0008239746094,0.275390625,129.999649047852,97.5767974853516,-3.333984375,28.8188018798828,31.4096221923828,3.919921875,47.4562072753906,39.0401916503906,-3.0693359375,74.8392181396484,24.8958587646484,-11.310546875,41.2901916503906,12.5294494628906,-4.9658203125,26.8726959228516,8.00843811035156,-15.40234375,78.1818237304688,-10.6550903320313,-13.8134765625,53.8738250732422,-11.6994171142578,-13.16796875,153.564392089844,-139.089904785156,-15.43359375,168.256408691406,-173.819763183594,-13.1923828125,145.335815429688,-181.826293945313,-13.90234375,93.8460235595703,-144.10612487793,-7.8408203125,105.149047851563,-127.415405273438,
  330. -4.376953125,67.2238006591797,-152.35920715332,-4.12890625,67.8084106445313,-137.491394042969,-7.73828125,-52.2438201904297,-151.74479675293,-0.484375,-32.1572723388672,-153.200241088867,-7.4736328125,-13.9244537353516,-178.049453735352,-15.7158203125,-49.4721527099609,-174.200668334961,-9.3701171875,-64.3958282470703,-171.83821105957,-19.806640625,-26.7441558837891,-211.375991821289,-18.2177734375,-48.9792327880859,-201.497787475586,-19.21484375,46.8557434082031,-49.4216003417969,-35.978515625,49.2160034179688,-69.0154418945313,-31.9599609375,44.8043823242188,-68.0901489257813,-23.59765625,53.9391326904297,-49.0530548095703,-35.0263671875,55.0915222167969,-68.8401184082031,-23.140625,63.3706817626953,-47.1869354248047,-8.697265625,50.53662109375,-21.51806640625,-11.3837890625,41.1750183105469,-31.0124816894531,-9.685546875,33.4373779296875,-41.2803955078125,-3.7900390625,35.6525726318359,-10.0739898681641,-1.1669921875,25.2231903076172,-19.7240753173828,-15.2578125,183.375610351563,73.2945556640625,-32.0224609375,201.114318847656,64.6465301513672,-28.00390625,197.943634033203,61.4426422119141,-19.6416015625,186.908477783203,79.4455871582031,-31.0703125,204.154846191406,69.6763305664063,-19.1845703125,190.458374023438,88.3812103271484,-4.7412109375,161.933670043945,91.5274200439453,-7.4267578125,164.829544067383,78.5111846923828,-5.728515625,169.255966186523,66.4415130615234,0.1669921875,144.244552612305,85.2347869873047,2.7900390625,146.692108154297,71.2370300292969,-19.662109375,104.811965942383,-182.981002807617,-36.42578125,116.85221862793,-198.61750793457,-32.408203125,112.587326049805,-200.075759887695,-24.0458984375,110.711990356445,-179.043869018555,-35.4736328125,121.813117980957,-195.464233398438,-23.5888671875,117.865798950195,-172.621505737305,-9.14453125,93.7181549072266,-157.113876342773,-11.8310546875,90.5222930908203,-170.05973815918,-10.1328125,89.1174163818359,-182.838638305664,-4.2373046875,75.0761566162109,-154.881851196289,-1.6142578125,71.0421447753906,-168.506683349609,-0.8896484375,-48.4781036376953,111.826583862305,
  331. -11.9130859375,-39.9557037353516,99.6526947021484,-3.8642578125,-56.4472198486328,87.3418426513672,-6.32421875,-29.4669036865234,115.756729125977,-11.0400390625,-41.5349273681641,77.7590179443359,-15.318359375,-16.8816375732422,94.8947296142578,-2.1328125,-36.4053497314453,81.2382049560547,-9.5166015625,-43.6855316162109,62.6601715087891,-2.1337890625,-59.3155670166016,58.8631439208984,-8.5595703125,-26.6579437255859,63.0061187744141,-7.82421875,-50.0605926513672,43.3319854736328,-10.4609375,-35.0632171630859,46.5901031494141,-5.044921875,3.08213806152344,73.4561614990234,-14.7216796875,8.78640747070313,55.3869934082031,-11.029296875,-2.83366394042969,42.5569610595703,-10.1494140625,22.2581787109375,64.7972412109375,-15.3857421875,14.3061981201172,35.7358856201172,-14.6083984375,25.0143127441406,47.0133361816406,-16.697265625,105.829986572266,-89.3653259277344,-9.7109375,159.384063720703,-67.4069519042969,-11.021484375,140.898712158203,-108.741912841797,-4.7666015625,85.8017425537109,-56.5439605712891,-11.3623046875,114.631576538086,-141.215103149414,-14.15625,74.8451080322266,-76.8736419677734,-0.36328125,43.5441436767578,-23.3269500732422,-5.275390625,61.6923980712891,-89.7343597412109,-5.5751953125,35.8148040771484,-52.1314849853516,-13.294921875,16.681396484375,-56.305908203125,-1.810546875,0.965957641601563,-35.3680267333984,-14.119140625,64.7175750732422,-92.1369171142578,-3.9296875,-9.26106262207031,-45.9700469970703,-19.890625,25.4957275390625,-90.2239990234375,-21.3291015625,52.9633483886719,-127.306182861328,-19.2880859375,30.3726959228516,-118.363632202148,-11.3408203125,36.0572967529297,39.5699920654297,-14.41796875,18.3425750732422,28.6248016357422,-3.0791015625,-1.36802673339844,45.9503326416016,-19.787109375,74.6313629150391,8.75636291503906,-1.6025390625,-7.87124633789063,32.6463317871094,-17.814453125,36.4514465332031,-1.90597534179688,-19.4931640625,73.7922821044922,-29.0084991455078,-14.25390625,50.0863494873047,-26.7534942626953,-19.3076171875,-8.75941467285156,-42.5387115478516,-8.16015625,39.8384857177734,-17.9867095947266,
  332. -12.68359375,25.7109222412109,-58.5410308837891,-7.5703125,-31.0859222412109,-13.6161956787109,-16.3271484375,3.436767578125,-91.341552734375,-18.2197265625,-39.2881317138672,-33.2158660888672,-4.3720703125,-74.0771026611328,14.3955535888672,-11.2734375,-51.2477874755859,-46.9235687255859,-9.943359375,-48.2633514404297,30.9807891845703,-15.1875,-68.5850982666016,29.3709564208984,-3.787109375,-79.5483856201172,53.1840362548828,-18.3271484375,-26.8239898681641,-13.5017242431641,-3.9296875,-91.4102935791016,44.1981048583984,-19.9560546875,-65.7359466552734,-5.85313415527344,-21.3779296875,-44.4257049560547,-46.7870330810547,-17.62890625,-65.0400848388672,-34.3164520263672,-16.97265625,-10.8646087646484,70.1705474853516,-18.8369140625,23.2328491210938,117.425231933594,-14.564453125,29.4472503662109,72.7577972412109,-3.888671875,-52.7420806884766,90.8819427490234,-8.966796875,24.4595489501953,31.6685333251953,-11.2861328125,-43.4738922119141,64.9889984130859,0.9990234375,-66.5379486083984,67.5333404541016,0.20703125,-47.1119232177734,48.4994049072266,-4.51171875,-53.8740081787109,64.3222808837891,-11.83203125,-70.2296295166016,55.9051361083984,-4.3427734375,-83.5787811279297,61.9798126220703,-11.8125,-57.8508148193359,45.9714508056641,-10.810546875,-86.2883148193359,45.7976226806641,-13.8876953125,-73.6616973876953,39.3920135498047,-2.0576171875,12.9669494628906,-27.7635192871094,-12.6630859375,16.8826751708984,-40.6183013916016,-2.5283203125,0.989700317382813,-48.5337371826172,-9.72265625,29.9701690673828,-27.8501434326172,-10.583984375,11.6374359130859,-60.1438140869141,-18.5830078125,36.2433013916016,-49.2879486083984,-4.4287109375,46.4796600341797,24.1124725341797,-12.45703125,36.6761932373047,7.16056823730469,-4.419921875,21.2038726806641,4.72340393066406,-12.5322265625,53.5586090087891,5.45606994628906,-11.59375,28.1610565185547,-11.2637481689453,-14.923828125,43.1986846923828,-9.61381530761719,-4.396484375,58.5216217041016,-42.9734954833984,-12.06640625,48.2860260009766,-55.9747161865234,-4.44921875,35.2618865966797,-57.5506134033203,
  333. -13.2978515625,62.5899353027344,-58.7420959472656,-12.328125,39.4989318847656,-71.1123962402344,-15.9560546875,52.3333587646484,-70.5855865478516,-5.8251953125,-19.4045562744141,46.5622406005859,-14.8125,-23.1743927001953,29.3304901123047,-7.0615234375,-35.3694305419922,21.4323272705078,-15.6904296875,-7.84246826171875,33.3401489257813,-15.76171875,-24.6974029541016,10.4129486083984,-19.216796875,-12.2893524169922,17.0495147705078,-6.134765625,11.8868865966797,3.37809753417969,-13.166015625,11.2560424804688,-15.1170043945313,-2.8359375,2.88925170898438,-24.8363342285156,-17.07421875,24.7086944580078,-7.65653991699219,-12.611328125,14.4862823486328,-33.8350067138672,-18.68359375,24.0669555664063,-24.8197631835938,-1.5009765625,-26.2088775634766,77.8624114990234,-15.9677734375,-34.3357696533203,66.8302459716797,-3.1650390625,-53.5613555908203,72.5509490966797,-12.7138671875,-13.1411590576172,64.6410675048828,-15.4892578125,-55.4432525634766,56.1602630615234,-26.6748046875,-26.9665985107422,44.7365264892578,-2.458984375,-65.2242889404297,91.8421173095703,-11.7724609375,-60.6819000244141,78.2028656005859,-6.2490234375,-66.3741302490234,66.3661041259766,-11.5791015625,-50.9150238037109,87.8545074462891,-14.2197265625,-53.6747589111328,63.5322723388672,-16.142578125,-47.2506256103516,74.1243743896484,-1.6083984375,-6.89175415039063,5.24105834960938,-13.365234375,-14.7549285888672,-6.57719421386719,-3.0419921875,-32.4099273681641,1.56468200683594,-9.5166015625,4.63597106933594,-9.17652893066406,-11.8779296875,-34.8403778076172,-15.1362762451172,-19.630859375,-8.98725891113281,-28.7089385986328,-5.54296875,194.690948486328,40.3491516113281,2.021484375,176.663177490234,12.4795837402344,-8.0615234375,177.102813720703,35.4035949707031,-13.240234375,197.645477294922,83.4511413574219,3.3955078125,164.238494873047,16.1877136230469,-11.748046875,173.372650146484,70.0503845214844,-12.9140625,172.799591064453,105.317169189453,-8.1142578125,160.229278564453,88.7243957519531,2.615234375,207.73046875,36.8759765625,-8.900390625,215.695678710938,29.2669677734375,
  334. 0.740234375,208.262512207031,14.6375122070313,-5.7392578125,220.200805664063,45.6031494140625,-8.794921875,221.23844909668,11.1769256591797,-16.794921875,234.373718261719,32.2887420654297,2.9609375,171.135681152344,36.8895874023438,-3.986328125,173.475494384766,18.4344787597656,6.015625,166.034072875977,7.59754943847656,-7.287109375,185.959075927734,27.7471618652344,-3.140625,179.296661376953,0.303497314453125,-8.8125,187.828582763672,10.6117858886719,-2.83984375,264.203247070313,54.9786376953125,-11.06640625,266.994079589844,40.1093139648438,-3.6640625,261.330810546875,29.232177734375,-12.978515625,277.253051757813,49.1485595703125,-12.6171875,272.962432861328,24.7729797363281,-16.3828125,279.696594238281,34.7405395507813,1.6513671875,172.736358642578,41.5283508300781,-6.095703125,186.92301940918,35.5880584716797,2.0947265625,193.241409301758,25.6798858642578,-9.017578125,184.541809082031,48.8699340820313,-7.3623046875,203.132843017578,32.6123352050781,-11.953125,198.134750366211,43.2324066162109,2.7421875,187.006500244141,62.3258361816406,-7.30859375,195.775543212891,61.1222229003906,0.2470703125,197.776092529297,47.1676940917969,-4.0224609375,191.325653076172,74.5111999511719,-8.015625,208.141235351563,51.1519622802734,-13.978515625,207.110900878906,72.2534790039063,-11.859375,135.609832763672,-144.394073486328,-4.294921875,104.104354858398,-154.838027954102,-14.3779296875,118.799728393555,-137.238357543945,-19.5556640625,164.900726318359,-112.635406494141,-2.9208984375,96.7376556396484,-144.166641235352,-18.0634765625,137.583801269531,-107.887878417969,-19.2294921875,159.217727661133,-80.0293426513672,-14.4306640625,139.027130126953,-85.0978698730469,-3.701171875,143.603363037109,-155.265777587891,-15.2158203125,145.049713134766,-166.186614990234,-5.5751953125,130.094299316406,-172.938903808594,-12.0556640625,158.791107177734,-156.268463134766,-15.1103515625,138.045974731445,-183.761642456055,-23.1103515625,161.506072998047,-175.524200439453,-3.35546875,115.077407836914,-132.343490600586,-10.3037109375,105.346878051758,-148.199020385742,
  335. -0.30078125,92.7597351074219,-151.989288330078,-13.603515625,120.91178894043,-148.75325012207,-9.45703125,98.5343780517578,-165.980270385742,-15.12890625,111.641525268555,-163.284255981445,-9.1552734375,198.971618652344,-176.508850097656,-17.3818359375,191.838150024414,-189.849349975586,-9.9794921875,180.611785888672,-194.786651611328,-19.2939453125,205.497009277344,-189.224670410156,-18.9326171875,186.889907836914,-205.544662475586,-22.697265625,198.380859375,-201.990234375,-4.6650390625,119.229873657227,-129.728134155273,-12.412109375,126.572692871094,-143.243713378906,-4.2216796875,125.295501708984,-154.925201416016,-15.3330078125,133.031768798828,-131.395965576172,-13.677734375,137.348876953125,-155.711669921875,-18.26953125,140.101257324219,-144.302062988281,-3.57421875,143.378280639648,-122.445938110352,-13.625,149.462158203125,-128.875732421875,-6.0693359375,142.285064697266,-141.008880615234,-10.3388671875,154.375869750977,-115.648544311523,-14.33203125,152.862060546875,-144.391845703125,-20.2939453125,165.269805908203,-127.293670654297,3.0673828125,-3.80000305175781,80.7058563232422,-7.955078125,11.0505828857422,81.2585906982422,0.0927734375,12.4433441162109,60.7265472412109,-2.3671875,3.21321105957031,98.8089141845703,-7.0830078125,28.5838012695313,68.0535278320313,-11.361328125,27.5665588378906,98.0597229003906,1.8251953125,28.4441223144531,74.2507629394531,-5.5595703125,40.1000366210938,58.0551147460938,1.8232421875,34.8088226318359,42.8654632568359,-4.6025390625,49.0487670898438,72.5448608398438,-3.8662109375,52.8766479492188,42.2125854492188,-6.50390625,58.2769165039063,56.5776977539063,-1.0869140625,56.4066009521484,103.197616577148,-10.7646484375,74.6798706054688,98.1847534179688,-7.072265625,79.1522064208984,81.4627532958984,-6.1923828125,74.0849304199219,114.607391357422,-11.4287109375,94.1815338134766,92.1590728759766,-10.6513671875,90.5183258056641,107.273208618164,-12.740234375,248.926239013672,101.160614013672,-5.75390625,259.53955078125,158.06103515625,-7.0654296875,284.230712890625,120.104736328125,
  336. -0.8095703125,210.489501953125,102.145751953125,-7.40625,297.255340576172,80.4213562011719,-10.19921875,221.621490478516,81.9115295410156,3.59375,159.658798217773,84.6714935302734,-1.318359375,225.287811279297,63.8844909667969,-1.619140625,179.661056518555,62.5497283935547,-9.337890625,172.78532409668,44.2140350341797,2.146484375,146.671325683594,42.3724975585938,-10.1630859375,228.947174072266,65.1219787597656,0.02734375,150.027099609375,28.030029296875,-15.9345703125,206.058685302734,33.2139587402344,-17.3720703125,252.112426757813,36.1661224365234,-15.3310546875,232.342407226563,22.0426025390625,-7.3837890625,102.762878417969,112.510925292969,-10.4609375,102.345108032227,91.6917877197266,0.8779296875,77.0974273681641,84.5349273681641,-15.830078125,149.575622558594,128.193786621094,2.35546875,84.7439422607422,71.8533172607422,-13.857421875,137.816665649414,90.3371734619141,-15.5361328125,180.843933105469,106.997253417969,-10.2978515625,166.087112426758,88.3087921142578,-15.3505859375,147.417938232422,30.3124694824219,-4.203125,153.161895751953,84.4568176269531,-8.7265625,179.562408447266,50.5858459472656,-3.61328125,111.008407592773,27.2515716552734,-12.3701171875,195.02961730957,14.0784454345703,-14.2626953125,123.02131652832,9.72736358642578,-0.4150390625,64.1519012451172,6.33744812011719,-7.31640625,128.046905517578,-7.75582885742188,-5.986328125,64.2266693115234,37.0206146240234,-11.23046875,54.5527191162109,19.0771331787109,0.169921875,28.6014251708984,22.7879486083984,-14.3701171875,113.22526550293,30.8932342529297,0.02734375,29.7131805419922,7.94853210449219,-15.9990234375,85.6871490478516,2.35707092285156,-17.4208984375,131.633911132813,-1.9520263671875,-13.671875,109.973403930664,-12.5012054443359,-13.015625,51.5988922119141,89.7004547119141,-14.8798828125,30.4068908691406,143.980133056641,-10.607421875,71.2985992431641,124.964614868164,0.068359375,11.4798126220703,65.7600860595703,-5.009765625,103.106887817383,98.4818878173828,-7.328125,38.2581634521484,59.4964447021484,4.95703125,23.6072845458984,41.5027923583984,
  337. 4.1640625,50.1365509033203,47.4929962158203,-0.5546875,33.1758575439453,50.3985137939453,-7.875,31.3713836669922,32.0930633544922,-0.3857421875,19.0262603759766,24.1746978759766,-7.8544921875,46.4323577880859,37.1003265380859,-6.853515625,31.1487731933594,13.1194763183594,-9.9306640625,43.3808441162109,20.2490081787109,1.8994140625,146.794662475586,56.5798187255859,-8.7060546875,159.716979980469,52.8947143554688,1.4287109375,157.743637084961,35.2494964599609,-5.765625,156.093414306641,70.8150939941406,-6.626953125,173.272155761719,37.8942260742188,-14.6259765625,177.504455566406,64.4536743164063,-0.4716796875,121.402236938477,112.877822875977,-8.5,130.3232421875,95.4453125,-0.462890625,123.974700927734,81.1260681152344,-8.5751953125,140.914749145508,108.700881958008,-7.63671875,141.179122924805,78.2963104248047,-10.966796875,147.951721191406,91.8228149414063,-0.439453125,184.289001464844,86.5926971435547,-8.109375,189.655456542969,70.9415893554688,-0.4921875,183.912948608398,59.1453704833984,-9.3408203125,199.741271972656,81.4551239013672,-8.37109375,197.603378295898,55.3465423583984,-11.9990234375,204.125152587891,66.4132385253906,-1.8681640625,66.7966766357422,69.7156219482422,-10.85546875,79.2259216308594,57.2005310058594,-3.1044921875,79.2430114746094,42.6707458496094,-11.7333984375,84.1769104003906,72.2540588378906,-11.8046875,94.2900390625,45.65625,-15.2587890625,95.4481201171875,59.6795654296875,-2.177734375,120.049606323242,72.5701065063477,-9.208984375,135.243438720703,62.0051574707031,1.12109375,138.867553710938,49.7034912109375,-13.1171875,136.275634765625,77.352783203125,-8.654296875,152.718841552734,54.5625915527344,-14.7265625,150.344650268555,67.5009002685547,2.4560546875,36.8128967285156,80.9837951660156,-12.009765625,41.6699371337891,68.1709136962891,0.7919921875,26.4331359863281,55.1264953613281,-8.7568359375,55.0094604492188,84.7858276367188,-11.5322265625,39.1800079345703,44.6516876220703,-22.7177734375,64.2274475097656,62.3729553222656,1.498046875,3.90040588378906,55.7959136962891,-7.8154296875,17.8221130371094,52.2107849121094,
  338. -2.2919921875,24.6761779785156,41.0072326660156,-7.62109375,15.0137634277344,65.6524353027344,-10.2626953125,33.9475402832031,50.1369934082031,-12.185546875,28.5355377197266,61.2806549072266,2.3486328125,108.295532226563,57.8062744140625,-9.408203125,113.956970214844,44.7890014648438,0.9150390625,97.5384063720703,34.3762969970703,-5.560546875,126.661422729492,59.6672744750977,-7.9208984375,110.24836730957,23.2737579345703,-15.673828125,135.677062988281,37.6253051757813,3.625,81.8865814208984,-110.523574829102,12.107421875,59.0536956787109,-134.304702758789,1.8349609375,63.5836791992188,-111.915344238281,-4.51953125,92.9384613037109,-68.8418121337891,13.9375,47.6639556884766,-128.227645874023,-1.9736328125,66.5859069824219,-77.2109680175781,-3.3935546875,72.9035186767578,-42.5183563232422,2.0244140625,57.5212249755859,-56.3176422119141,11.2939453125,94.3053436279297,-116.49055480957,-0.4638671875,100.155090332031,-125.516784667969,9.57421875,90.3845977783203,-138.40055847168,2.3896484375,107.903121948242,-110.383987426758,-0.43359375,102.037368774414,-144.342514038086,-9.1064453125,118.732727050781,-126.224304199219,13.0712890625,58.4693145751953,-109.285568237305,6.181640625,56.8601837158203,-127.84001159668,16.552734375,47.8408660888672,-137.002883911133,2.322265625,70.7877197265625,-121.162475585938,6.9423828125,59.0366973876953,-146.761154174805,0.8603515625,69.193603515625,-138.329833984375,3.4912109375,152.969863891602,-109.838729858398,-4.720703125,152.455841064453,-124.967010498047,2.982421875,145.066802978516,-134.519134521484,-7.1044921875,164.205520629883,-118.120651245117,-6.3837890625,155.229614257813,-141.176635742188,-10.4873046875,163.63410949707,-132.72819519043,11.6630859375,60.8961944580078,-105.051071166992,3.4140625,73.3194427490234,-113.663955688477,11.4287109375,77.8907012939453,-124.621017456055,0.4833984375,73.4781646728516,-100.173202514648,1.5380859375,88.5655212402344,-119.767486572266,-2.9375,85.5712127685547,-108.372146606445,12.03125,79.0045623779297,-87.4641876220703,1.6552734375,86.9582214355469,-90.3669738769531,
  339. 9.236328125,86.4793853759766,-104.443466186523,5.0078125,85.3591918945313,-76.3644409179688,0.54296875,97.0870208740234,-102.573135375977,-5.5400390625,99.9832916259766,-81.6817474365234,-1.3369140625,-59.5297393798828,-93.0844268798828,-12.3603515625,-45.9831695556641,-99.1941070556641,-4.3115234375,-53.8690338134766,-118.203018188477,-6.771484375,-45.1963043212891,-79.9912261962891,-11.4873046875,-36.1540679931641,-118.821060180664,-15.765625,-23.7177886962891,-91.4941558837891,-2.580078125,-33.5226898193359,-113.209213256836,-9.9638671875,-30.2876739501953,-132.898025512695,-2.5810546875,-41.7830963134766,-144.149307250977,-9.0068359375,-15.8272857666016,-123.901504516602,-8.2705078125,-25.8916168212891,-152.770523071289,-10.908203125,-14.6648406982422,-142.306442260742,-5.4921875,4.39720153808594,-99.7219390869141,-15.1689453125,18.5334320068359,-112.338638305664,-11.4765625,15.1005554199219,-129.305694580078,-10.5966796875,25.3054656982422,-97.3664093017578,-15.8330078125,33.3191680908203,-126.41032409668,-15.0556640625,36.7613067626953,-111.245529174805,-17.14453125,175.915725708008,-187.181930541992,-10.158203125,210.73112487793,-140.94270324707,-11.46875,215.96174621582,-185.91911315918,-5.2138671875,141.928924560547,-169.202911376953,-11.8095703125,209.974868774414,-227.254623413086,-14.603515625,142.898422241211,-192.276382446289,-0.810546875,88.6315155029297,-162.24153137207,-5.72265625,138.163635253906,-210.051208496094,-6.0234375,96.7057342529297,-190.95246887207,-13.7421875,82.3912353515625,-204.316772460938,-2.2578125,58.1841583251953,-194.349044799805,-14.56640625,141.991607666016,-210.570892333984,-4.376953125,54.8097839355469,-208.686309814453,-20.337890625,107.298858642578,-228.967742919922,-21.7763671875,149.858505249023,-246.809463500977,-19.7353515625,125.869674682617,-250.665481567383,-11.7880859375,50.057373046875,-112.001220703125,-14.865234375,40.4224853515625,-130.461303710938,-3.5263671875,14.6267700195313,-125.639831542969,-20.234375,98.9600982666016,-118.777206420898,-2.0498046875,15.8343353271484,-140.398086547852,
  340. -18.26171875,71.5891418457031,-147.451873779297,-19.9404296875,117.536148071289,-151.669906616211,-14.7021484375,96.0062408447266,-161.844345092773,-19.7548828125,53.48828125,-205.482421875,-8.607421875,82.7171630859375,-159.543579101563,-13.130859375,91.2952575683594,-201.623687744141,-8.017578125,19.5176239013672,-192.028274536133,-16.7744140625,88.9086761474609,-241.200698852539,-18.6669921875,22.4815521240234,-213.066299438477,-4.8193359375,-31.7508087158203,-189.91584777832,-11.720703125,19.2053985595703,-230.96061706543,-10.390625,-18.0357208251953,-162.469314575195,-15.634765625,-34.6816558837891,-174.237319946289,-4.234375,-56.2732391357422,-159.368942260742,-18.7744140625,23.1230163574219,-189.751983642578,-4.376953125,-61.8784027099609,-173.153793334961,-20.4033203125,-14.2339630126953,-203.060134887695,-21.8251953125,24.9999542236328,-227.357467651367,-18.076171875,0.907699584960938,-227.170425415039,-17.419921875,-5.91275024414063,-109.671539306641,-19.2841796875,-0.747543334960938,-51.6303558349609,-15.01171875,27.4174957275391,-86.8500823974609,-4.3359375,-52.4930877685547,-113.266525268555,-9.4140625,44.1250915527344,-124.718658447266,-11.7333984375,-31.2959747314453,-130.788162231445,0.5517578125,-52.4215240478516,-140.386367797852,-0.240234375,-25.9969024658203,-146.82209777832,-4.958984375,-39.8948822021484,-136.676132202148,-12.279296875,-49.6535797119141,-152.268814086914,-4.7900390625,-64.2320709228516,-153.867813110352,-12.259765625,-33.9369354248047,-154.482833862305,-11.2578125,-58.2928619384766,-169.162002563477,-14.3349609375,-44.1657562255859,-168.216537475586,-2.5048828125,64.6142730712891,-181.679672241211,-13.1103515625,74.5484161376953,-190.728927612305,-2.9755859375,64.9319610595703,-205.65397644043,-10.169921875,79.274658203125,-173.066162109375,-11.03125,80.0163421630859,-210.192642211914,-19.0302734375,95.6208038330078,-188.288375854492,-4.876953125,66.9147338867188,-119.963195800781,-12.904296875,67.1499328613281,-139.543426513672,-4.8671875,55.0948486328125,-149.544799804688,-12.9794921875,82.5327301025391,-132.383285522461,
  341. -12.041015625,69.2443542480469,-159.732208251953,-15.37109375,81.3272094726563,-150.629821777344,-4.84375,111.545196533203,-171.477264404297,-12.513671875,109.389373779297,-187.883087158203,-4.896484375,98.9993438720703,-195.89225769043,-13.7451171875,123.099113464355,-182.95166015625,-12.775390625,109.570861816406,-205.384216308594,-16.4033203125,120.33447265625,-198.37451171875,-6.2724609375,-1.19032287597656,-134.329971313477,-15.259765625,4.3740234375,-151.068359375,-7.5087890625,-2.07342529296875,-164.088073730469,-16.1376953125,15.5046539306641,-139.788314819336,-16.208984375,12.73095703125,-168.10693359375,-19.6640625,20.0060424804688,-156.063293457031,-6.58203125,47.7734375,-155.4619140625,-13.61328125,56.6817169189453,-171.682540893555,-3.283203125,54.4556427001953,-184.312911987305,-17.521484375,64.4334106445313,-158.395690917969,-13.05859375,69.0224761962891,-186.122055053711,-19.130859375,72.6516876220703,-173.47721862793,-1.9482421875,-23.0324859619141,-110.901626586914,-16.4150390625,-24.3815765380859,-124.535873413086,-3.6123046875,-43.8308563232422,-129.442184448242,-13.1611328125,-5.04367065429688,-115.588592529297,-15.9365234375,-37.0735626220703,-144.49348449707,-27.1220703125,-6.75761413574219,-139.763473510742,-2.90625,-63.7134552001953,-118.818923950195,-12.2197265625,-52.8395843505859,-128.222396850586,-6.6962890625,-51.6845855712891,-141.305679321289,-12.0263671875,-49.3758697509766,-114.935440063477,-14.6669921875,-39.3199615478516,-137.253555297852,-16.58984375,-39.2101593017578,-124.865432739258,-2.0556640625,30.6793365478516,-163.455429077148,-13.8125,29.9592437744141,-177.632553100586,-3.4892578125,10.6227569580078,-179.655563354492,-9.9638671875,47.9556884765625,-169.959350585938,-12.3251953125,17.0671234130859,-195.253189086914,-20.078125,46.2257080078125,-193.709838867188,-5.8837890625,-57.1030731201172,100.575637817383,1.6806640625,-70.0177154541016,69.9998626708984,-8.40234375,-73.5653533935547,92.6514434814453,-13.5810546875,-61.6782379150391,143.536605834961,3.0546875,-82.8974456787109,71.4931793212891,
  342. -12.0888671875,-83.2552032470703,126.12370300293,-13.2548828125,-89.9435882568359,160.755630493164,-8.455078125,-99.4415740966797,142.23127746582,2.2744140625,-43.6587677001953,99.4203338623047,-9.2412109375,-34.4931182861328,93.3086395263672,0.3994140625,-39.2730560302734,77.6117095947266,-6.080078125,-32.8933258056641,110.179916381836,-9.1357421875,-25.8934173583984,76.4571685791016,-17.1357421875,-16.6237030029297,99.5286407470703,2.6201171875,-79.6999359130859,93.0793609619141,-4.3271484375,-74.1909332275391,75.3090667724609,5.6748046875,-79.6375579833984,63.3458404541016,-7.6279296875,-63.5141754150391,86.6498870849609,-3.4814453125,-65.3098602294922,58.4655303955078,-9.1533203125,-58.6976776123047,70.0991973876953,-3.1806640625,8.81254577636719,127.053756713867,-11.4072265625,14.1429901123047,112.895919799805,-4.0048828125,10.4546356201172,101.198776245117,-13.3193359375,22.6764678955078,123.577835083008,-12.9580078125,22.6837768554688,98.8283081054688,-16.7236328125,27.5849914550781,109.812530517578,1.310546875,-78.9290924072266,97.9244232177734,-6.4365234375,-63.9264373779297,94.5384063720703,1.75390625,-55.9834442138672,85.8778839111328,-9.3583984375,-68.5778350830078,107.205368041992,-7.703125,-47.4461212158203,94.4230194091797,-12.2939453125,-54.2125091552734,104.014053344727,2.4013671875,-68.4871978759766,120.884872436523,-7.6494140625,-59.6422882080078,121.221969604492,-0.09375,-55.2490081787109,107.826187133789,-4.36328125,-66.3497161865234,133.635635375977,-8.3564453125,-45.7332611083984,113.550918579102,-14.3193359375,-50.4119720458984,134.151504516602,-12.5078125,-55.8848724365234,39.2811431884766,-5.154296875,-71.5539398193359,52.9431304931641,-5.326171875,-59.4207305908203,60.7882537841797,-12.7431640625,-65.3289031982422,30.3976593017578,-7.6904296875,-45.8591461181641,47.1096038818359,-14.0673828125,-53.2398223876953,17.0931854248047,-16.974609375,-45.4615020751953,16.3353729248047,-14.623046875,-36.1329498291016,16.6404876708984,-27.552734375,-52.4403533935547,-7.71476745605469,-28.58984375,-42.0001678466797,-10.1066131591797,
  343. -30.6708984375,-47.5238189697266,-9.31776428222656,4.6728515625,10.8634338378906,28.3702697753906,-10.1474609375,18.058837890625,14.927978515625,-6.5458984375,-4.85319519042969,21.6126251220703,-10.208984375,-6.80720520019531,12.6468963623047,-9.134765625,33.3415985107422,-2.66133117675781,-18.7470703125,18.6148681640625,-11.8636474609375,-21.7529296875,33.2031707763672,-6.35054016113281,-28.3955078125,57.7330780029297,-16.1487579345703,-33.7900390625,48.1353759765625,-23.4417724609375,-33.3154296875,52.9617004394531,-18.5754089355469,-0.63671875,4.25135803222656,57.2630767822266,-10.146484375,-16.7298126220703,100.36100769043,-0.63671875,25.924072265625,88.322509765625,-0.63671875,-30.0140533447266,49.6548919677734,-0.6376953125,13.3276519775391,134.774917602539,-0.63671875,-68.5799713134766,101.341903686523,-0.6376953125,-49.5636138916016,152.697128295898,-0.63671875,-39.8169708251953,62.0619354248047,-11.6826171875,15.7164306640625,66.0914306640625,-0.63671875,-15.6666717529297,25.2854766845703,-0.63671875,-33.2315216064453,102.299728393555,-0.63671875,39.8628234863281,18.8413391113281,-0.6376953125,39.1401824951172,121.589401245117,-0.63671875,86.3296051025391,78.9370269775391,-0.63671875,46.7556304931641,62.3054351806641,-11.6826171875,50.7653961181641,6.76930236816406,-0.63671875,9.9696044921875,38.1678466796875,-0.63671875,86.9838409423828,55.7104034423828,-0.63671875,3.4979248046875,-17.3663330078125,-0.63671875,106.252319335938,-16.6793212890625,-0.63671875,63.5817108154297,-63.8382110595703,-2.248046875,59.4158477783203,-39.6154022216797,-10.0693359375,98.8227233886719,-40.7378234863281,-2.248046875,73.8063201904297,-67.2434844970703,-2.248046875,66.9161834716797,-11.7420196533203,-2.248046875,112.471572875977,-75.7413177490234,-2.248046875,119.285415649414,-3.30833435058594,-2.248046875,149.481048583984,-36.7279357910156,-0.63671875,15.4443054199219,-26.6269836425781,-12.5615234375,28.5587768554688,-85.2908325195313,-0.63671875,-20.0054168701172,-58.2495574951172,-0.63671875,59.4569549560547,-27.2715606689453,
  344. -0.6357421875,-18.0800933837891,-118.577163696289,-0.6357421875,91.5437164306641,-101.514877319336,-0.6357421875,53.4593505859375,-158.674438476563,-0.63671875,-48.6118011474609,3.68702697753906,-12.5625,-35.5043182373047,-54.9877166748047,-0.63671875,-84.0655975341797,-27.9415740966797,-0.63671875,-4.60252380371094,3.03614807128906,-0.63671875,-82.1495208740234,-88.2764739990234,-0.63671875,27.482421875,-71.205078125,-0.6357421875,-10.5936126708984,-128.357284545898,-0.63671875,-22.2704620361328,-32.1571807861328,-12.5625,-64.0246734619141,11.0983734130859,-0.63671875,-8.48719787597656,13.3067474365234,-0.63671875,-60.1736602783203,-54.5261993408203,-0.63671875,-41.5516510009766,63.8028411865234,-0.63671875,-126.237899780273,-7.86680603027344,-0.63671875,-123.50666809082,60.7589569091797,-0.6376953125,-74.4296417236328,126.627975463867,-11.6826171875,-61.7949981689453,72.4003143310547,-0.63671875,-106.985549926758,97.0457000732422,-0.6376953125,-33.6606597900391,126.403793334961,-0.63671875,-104.702041625977,41.1876068115234,-0.63671875,-3.318115234375,57.916259765625,-0.63671875,-38.0989227294922,4.66572570800781,-18.1455078125,305.093444824219,52.1276245117188,-29.298828125,329.847412109375,67.193115234375,-26.888671875,333.420806884766,62.2606506347656,-26.046875,325.482635498047,70.9992370605469,-15.4609375,309.633239746094,42.9496459960938,-15.107421875,300.024475097656,59.1416625976563,-14.716796875,277.421112060547,48.7873229980469,-9.814453125,274.958068847656,34.8692016601563,-14.5107421875,280.913238525391,62.6153869628906,-5.0224609375,255.216094970703,40.9426422119141,-4.4736328125,256.247406005859,56.7913513183594,-6.806640625,286.179138183594,46.3178100585938,-5.8486328125,265.781097412109,53.6844177246094,-12.25390625,285.90087890625,67.02001953125,-3.80078125,261.751831054688,63.1951904296875,-15.689453125,310.154022216797,89.0924987792969,-14.1181640625,291.597595214844,95.7421264648438,-20.0341796875,302.727691650391,97.4220275878906,-28.6943359375,314.041961669922,127.208953857422,-26.763671875,299.815887451172,123.821746826172,
  345. -30.4599609375,307.009887695313,127.029418945313,-21.572265625,330.732727050781,83.1194458007813,-29.6865234375,360.133056640625,90.284423828125,-31.810546875,360.029907226563,84.0885009765625,-28.3486328125,358.451080322266,78.6454162597656,-19.4169921875,329.240417480469,93.3761596679688,-18.138671875,330.380615234375,74.621826171875,-18.3701171875,305.865783691406,70.4673461914063,-14.2822265625,295.848388671875,80.799560546875,-17.3623046875,316.513092041016,61.0306701660156,-9.16796875,282.779846191406,64.9048461914063,-7.7041015625,292.516815185547,52.4308776855469,-3.818359375,255.413635253906,50.9370574951172,-9.16015625,220.506988525391,19.0694885253906,-1.6953125,220.476226806641,62.5445709228516,-3.8076171875,272.048614501953,21.1101379394531,2.3037109375,180.809234619141,37.9400939941406,1.091796875,234.770797729492,-29.1627960205078,4.91015625,181.718780517578,-25.6581726074219,1.154296875,212.793533325195,8.43122863769531,-8.1259765625,189.80680847168,49.0353240966797,-1.6201171875,232.407440185547,39.5343780517578,3.982421875,179.916900634766,-0.411224365234375,-2.423828125,218.073272705078,84.1396636962891,4.91015625,140.172760009766,48.1708068847656,1.5751953125,156.273178100586,98.8776702880859,-3.771484375,252.914764404297,54.2711944580078,-11.4404296875,215.360809326172,82.4486999511719,-5.7080078125,258.327056884766,90.6952209472656,-0.8935546875,226.418121337891,32.9015197753906,-4.8642578125,227.294372558594,125.788513183594,2.083984375,170.559783935547,61.3742370605469,0.28125,164.883941650391,114.345855712891,-1.5986328125,228.130218505859,46.6341094970703,-13.470703125,271.468688964844,31.0077514648438,-0.5625,234.670867919922,10.3642272949219,-4.1708984375,246.346160888672,75.4301452636719,-2.6171875,275.267730712891,-12.9324645996094,-8.421875,308.324157714844,66.3729858398438,-8.0556640625,330.650451660156,17.9785766601563,-24.4599609375,229.070739746094,-204.333557128906,-35.61328125,257.8046875,-208.0849609375,-33.203125,257.502777099609,-214.168121337891,-32.361328125,256.784088134766,-202.383880615234,
  346. -21.7763671875,226.863494873047,-214.331817626953,-21.421875,229.509201049805,-195.690017700195,-21.03125,205.401351928711,-189.612319946289,-16.12890625,194.766815185547,-198.922637939453,-20.8251953125,216.782272338867,-181.016555786133,-11.3369140625,183.175430297852,-181.827499389648,-10.7890625,193.902923583984,-170.114654541016,-13.1220703125,210.684143066406,-197.020935058594,-12.1640625,199.391510009766,-178.505950927734,-18.568359375,223.428665161133,-180.705123901367,-10.1162109375,202.20475769043,-168.56672668457,-22.00390625,256.160522460938,-178.677368164063,-20.4326171875,245.854400634766,-161.875091552734,-26.3486328125,255.584594726563,-167.534545898438,-35.0078125,283.056427001953,-151.392791748047,-33.078125,269.842681884766,-145.127044677734,-36.7744140625,277.461181640625,-147.128662109375,-27.8857421875,268.466461181641,-196.221038818359,-36,295.876800537109,-209.042144775391,-38.125,291.917877197266,-213.807708740234,-34.6630859375,287.2783203125,-217.0634765625,-25.7314453125,273.724578857422,-187.288116455078,-24.453125,262.87158203125,-202.62646484375,-24.6845703125,241.155456542969,-190.516418457031,-20.5966796875,239.813293457031,-176.188659667969,-23.6767578125,243.548431396484,-204.542388916016,-15.482421875,219.671401977539,-180.398910522461,-14.0185546875,219.453216552734,-196.222564697266,-10.1337890625,189.587738037109,-174.156402587891,-15.4755859375,142.416625976563,-177.150756835938,-8.0107421875,169.612869262695,-143.231857299805,-10.123046875,183.883666992188,-207.829223632813,-4.0126953125,123.27806854248,-137.581298828125,-5.2236328125,123.340065002441,-223.689239501953,-1.4072265625,84.167724609375,-187.741455078125,-5.162109375,129.742279052734,-180.615142822266,-14.44140625,137.240463256836,-134.563247680664,-7.935546875,164.509094238281,-168.643249511719,-2.333984375,98.5701751708984,-166.926895141602,-8.7392578125,181.260101318359,-124.888336181641,-1.40625,97.9974822998047,-104.160720825195,-4.7412109375,142.299468994141,-74.7034606933594,-10.0869140625,189.726684570313,-169.992065429688,
  347. -17.755859375,178.085998535156,-124.508728027344,-12.0224609375,216.752105712891,-144.979339599609,-7.208984375,155.686126708984,-170.065826416016,-11.1796875,214.526000976563,-98.1878662109375,-4.232421875,129.957946777344,-112.891662597656,-6.03515625,158.698364257813,-68.0330810546875,-7.9140625,165.618835449219,-160.430969238281,-19.7861328125,189.628540039063,-199.749389648438,-6.8779296875,148.010452270508,-192.806930541992,-10.486328125,197.852111816406,-149.382263183594,-8.9326171875,165.07958984375,-236.38916015625,-14.736328125,240.508544921875,-195.248291015625,-14.3701171875,227.617218017578,-246.961883544922,-8.55078125,53.1186981201172,35.1216278076172,-1.197265625,33.1407318115234,29.3731536865234,-1.369140625,33.1349029541016,43.8214263916016,-8.7861328125,55.4575042724609,22.3696136474609,-3.7333984375,51.9827728271484,47.7923431396484,-10.1103515625,73.1927947998047,25.3050994873047,-13.017578125,78.0490570068359,31.4279632568359,-10.666015625,82.8544006347656,39.4286193847656,-23.595703125,94.46484375,12.515625,-24.6328125,102.137878417969,19.9884643554688,-26.7138671875,98.4786682128906,15.7765197753906,8.6298828125,98.5009918212891,85.2705230712891,-6.189453125,113.696807861328,84.0210266113281,-2.5888671875,95.6501007080078,68.4010772705078,-6.251953125,102.121459960938,61.8958740234375,-5.177734375,136.763793945313,87.3145751953125,-14.7900390625,136.502563476563,69.9517822265625,-17.7958984375,139.78759765625,85.19775390625,-24.4384765625,161.327606201172,100.485794067383,-29.8330078125,162.245620727539,88.4663238525391,-29.359375,160.777267456055,95.1610565185547,3.3203125,70.6441192626953,95.3921661376953,-6.1884765625,23.0568695068359,101.153549194336,3.3203125,56.312744140625,130.451416015625,3.3203125,58.4422149658203,62.4822540283203,3.3203125,10.4589233398438,145.074157714844,3.3203125,-5.89976501464844,58.1314849853516,3.3203125,-38.7202911376953,101.970138549805,3.3203125,42.7015838623047,60.9799041748047,-7.7255859375,69.4481811523438,109.814392089844,3.3203125,86.6979217529297,61.3112030029297,
  348. 3.3203125,12.4752044677734,88.3433685302734,3.3203125,122.239776611328,104.460472106934,3.3203125,35.5394287109375,159.602905273438,3.3203125,96.9716796875,176.099609375,3.3203125,89.4703826904297,133.83268737793,-7.7255859375,138.295989990234,107.067474365234,3.3203125,89.7862548828125,89.8360595703125,3.3203125,116.836883544922,164.046844482422,3.3203125,132.923355102539,54.2671051025391,3.3203125,188.099670410156,140.954162597656,3.3203125,204.559967041016,79.5238342285156,1.708984375,181.952423095703,89.1672668457031,-6.1123046875,204.277679443359,121.659515380859,1.708984375,212.968231201172,86.2631530761719,1.708984375,162.609130859375,110.589599609375,1.708984375,241.085968017578,114.131866455078,1.708984375,183.939697265625,159.156494140625,1.7080078125,228.3955078125,166.387680053711,3.3203125,147.183837890625,59.278564453125,-8.60546875,203.577423095703,38.4641418457031,3.3203125,154.512176513672,12.3422546386719,3.3203125,171.606353759766,95.8983459472656,3.3203125,206.232360839844,-18.7734985351563,3.3203125,251.380279541016,82.5687561035156,3.3203125,278.730834960938,19.5628662109375,3.3203125,86.9643707275391,21.9194488525391,-8.60546875,143.362548828125,1.093017578125,3.3203125,94.2956085205078,-25.0237274169922,3.3203125,111.389999389648,58.5335540771484,3.3203125,146.016311645508,-56.1516571044922,3.3203125,191.161758422852,45.2017974853516,3.3203125,218.510208129883,-17.7925262451172,3.3203125,131.365661621094,24.5961303710938,-8.60546875,72.3759155273438,12.9931030273438,3.3203125,100.655227661133,60.8427276611328,3.3203125,129.590087890625,-19.378662109375,3.3203125,40.2975921630859,60.4675140380859,3.3203125,54.5510864257813,-49.5563354492188,3.3203125,-1.61259460449219,-10.0266571044922,3.3203125,-30.3143157958984,66.9376373291016,-7.7255859375,22.0924682617188,48.1276245117188,3.3203125,-23.1296844482422,23.5402374267578,3.3203125,-8.00471496582031,101.06169128418,3.3203125,25.0304412841797,-4.84944152832031,3.3203125,65.9875030517578,89.3898468017578,3.3203125,91.8463897705078,31.2799835205078,
  349. -13.3798828125,191.860076904297,-120.671173095703,-25.6103515625,218.625274658203,-110.764373779297,-23.3037109375,221.253723144531,-116.302917480469,-22.2197265625,215.226165771484,-106.175201416016,-10.802734375,194.612365722656,-130.562438964844,-10.2001953125,188.39241027832,-112.79801940918,-8.84375,164.229705810547,-118.508575439453,-3.740234375,159.279144287109,-131.671051025391,-8.8837890625,170.374786376953,-105.635955810547,1.7734375,141.321411132813,-121.835815429688,2.15625,145.46614074707,-106.49870300293,-1.263671875,172.640808105469,-122.650207519531,0.43359375,154.141479492188,-111.419067382813,-6.8583984375,176.216156005859,-102.297515869141,2.5625,152.143417358398,-101.300918579102,-11.4130859375,204.175079345703,-85.4206237792969,-9.1689453125,187.363494873047,-75.2546691894531,-15.529296875,198.361572265625,-75.795654296875,-24.859375,214.950164794922,-48.8135070800781,-22.3466796875,200.424392700195,-49.3392791748047,-26.3466796875,207.955078125,-47.6064453125,-18.0498046875,222.928527832031,-95.3234252929688,-27.36328125,252.815612792969,-94.0759887695313,-29.43359375,251.413299560547,-100.129669189453,-25.8701171875,248.935546875,-105.1572265625,-15.9189453125,223.566650390625,-84.972412109375,-14.5380859375,221.051849365234,-103.584869384766,-13.77734375,196.209289550781,-102.840515136719,-9.3818359375,188.587158203125,-90.740966796875,-13.11328125,204.827438354492,-114.186233520508,-3.6357421875,172.866424560547,-103.757598876953,-2.4560546875,180.014556884766,-117.902435302734,2.8896484375,143.52587890625,-112.07373046875,-0.83203125,102.855880737305,-136.460525512695,6.2861328125,111.661209106445,-93.8270721435547,2.4833984375,153.966491699219,-144.589172363281,12.02734375,68.1267242431641,-110.156478881836,9.232421875,107.767791748047,-186.556427001953,15.0947265625,56.6325225830078,-172.693649291992,9.8583984375,93.6216583251953,-145.375411987305,1.16796875,78.7043914794922,-101.045608520508,6.076171875,118.834701538086,-118.734634399414,14.041015625,59.7881622314453,-147.583908081055,
  350. 5.4833984375,113.518753051758,-72.1804656982422,16.1416015625,30.4275665283203,-92.1388397216797,11.78125,56.0259399414063,-45.5853881835938,3.0078125,141.734268188477,-108.314559936523,-3.40625,110.169296264648,-73.3062896728516,0.5751953125,154.112335205078,-73.6640319824219,7.087890625,111.693344116211,-124.060562133789,2.357421875,130.634063720703,-33.1569519042969,12.025390625,62.6781921386719,-85.1655578613281,10.0302734375,67.4480133056641,-32.1105804443359,6.208984375,116.039215087891,-110.932464599609,-7.2265625,154.956390380859,-134.770172119141,7.2724609375,115.366104125977,-147.780380249023,2.7001953125,139.437957763672,-86.2768859863281,3.814453125,150.482696533203,-178.600311279297,-3.9013671875,198.210693359375,-107.339111328125,-4.029296875,210.595184326172,-159.176300048828,-12.955078125,-28.8285980224609,-159.228988647461,-5.6015625,-49.2785797119141,-155.491470336914,-5.7734375,-42.8570404052734,-142.547470092773,-13.1904296875,-32.4069976806641,-171.691177368164,-8.1376953125,-24.2104644775391,-147.376480102539,-14.5146484375,-15.2169647216797,-176.95133972168,-17.421875,-8.1439208984375,-173.627319335938,-15.0703125,-0.280960083007813,-168.598342895508,-28,-1.85391235351563,-197.867584228516,-29.037109375,8.34213256835938,-194.586578369141,-31.1181640625,3.19120788574219,-196.732620239258,4.2255859375,34.1235656738281,-134.501434326172,-10.5947265625,47.1774139404297,-142.38020324707,-6.9931640625,24.0666961669922,-148.341506958008,-10.65625,26.9684600830078,-157.047164916992,-9.58203125,69.3018798828125,-149.690307617188,-19.1943359375,61.344482421875,-165.125244140625,-22.2001953125,71.0679321289063,-152.932067871094,-28.8427734375,97.1603240966797,-148.82112121582,-34.2373046875,92.6363372802734,-159.994522094727,-33.763671875,94.2989044189453,-153.345626831055,-1.083984375,13.6769714355469,-113.044708251953,-10.59375,-26.3806304931641,-86.7175445556641,-1.083984375,16.4359893798828,-75.2710418701172,-1.083984375,-11.8905181884766,-137.091690063477,-1.0849609375,-18.1270294189453,-41.7774200439453,
  351. -1.083984375,-71.4518585205078,-112.367874145508,-1.0849609375,-81.3463897705078,-58.5065460205078,-1.083984375,-26.6565704345703,-131.43684387207,-12.1298828125,19.0207824707031,-99.5964050292969,-1.083984375,12.8948974609375,-150.709594726563,-1.083984375,-41.5558013916016,-93.4835357666016,-1.083984375,63.9202880859375,-127.874633789063,-1.0849609375,10.7982330322266,-39.9214935302734,-1.0849609375,73.1561737060547,-52.4737091064453,-1.083984375,47.6369018554688,-86.9910278320313,-12.1298828125,79.4606170654297,-132.68098449707,-1.083984375,28.34912109375,-126.53564453125,-1.083984375,85.5865173339844,-72.1048889160156,-1.083984375,51.1621398925781,-177.580047607422,-1.083984375,139.138854980469,-124.485168457031,-1.083984375,126.555503845215,-186.826324462891,-2.6953125,110.597427368164,-168.133041381836,-10.5166015625,145.045547485352,-148.963241577148,-2.6953125,137.084594726563,-184.529663085938,-2.6953125,102.802780151367,-140.340774536133,-2.6953125,174.663528442383,-172.076705932617,-2.6962890625,143.510009765625,-106.332763671875,-2.6962890625,186.542282104492,-119.630569458008,-1.083984375,66.1628875732422,-179.436721801758,-13.0087890625,107.411514282227,-223.162704467773,-1.083984375,51.848388671875,-224.732666015625,-1.083984375,104.325729370117,-157.502395629883,-1.0830078125,84.3290710449219,-275.606475830078,-1.083984375,169.843231201172,-204.926300048828,-1.0830078125,166.313034057617,-273.520935058594,-1.083984375,-4.38902282714844,-186.109725952148,-13.0087890625,36.8587341308594,-229.847320556641,-1.083984375,-18.7039031982422,-231.412887573242,-1.083984375,33.7739410400391,-164.181137084961,-1.0830078125,13.7721862792969,-282.298126220703,-1.083984375,99.2891845703125,-211.605346679688,-1.0830078125,95.7620391845703,-280.188171386719,-1.083984375,36.5690155029297,-203.46125793457,-13.009765625,-21.4249420166016,-187.613418579102,-1.083984375,25.1869201660156,-157.337493896484,-1.083984375,15.4174346923828,-242.057174682617,-1.083984375,-29.0374908447266,-130.826553344727,-1.083984375,-65.2124633789063,-235.705642700195,
  352. -1.083984375,-97.9302978515625,-175.318954467773,-1.083984375,-89.4007720947266,-93.6214752197266,-12.1298828125,-50.8313751220703,-133.77961730957,-1.083984375,-102.270278930664,-135.685317993164,-1.0849609375,-54.2408905029297,-72.9821014404297,-1.083984375,-71.7655181884766,-182.534072875977,-1.083984375,6.83598327636719,-116.349563598633,-1.083984375,4.14775085449219,-179.896194458008,-18.486328125,49.5765075683594,131.347015380859,-29.6396484375,71.3384399414063,150.481018066406,-27.2294921875,75.7140350341797,146.24430847168,-26.3876953125,66.3791046142578,153.471878051758,-15.802734375,55.6412811279297,123.09538269043,-15.4482421875,43.3667297363281,137.374542236328,-15.0576171875,22.9048309326172,123.250534057617,-10.1552734375,22.8960113525391,109.116714477539,-14.8515625,23.9426727294922,137.475875854492,-5.36328125,2.3994140625,111.669921875,-4.814453125,0.662857055664063,127.456802368164,-7.1474609375,31.9586486816406,122.339508056641,-6.189453125,10.5912322998047,126.053146362305,-12.5947265625,28.0897979736328,142.678665161133,-4.1416015625,4.97154235839844,134.720565795898,-16.0302734375,48.1413421630859,168.628646850586,-14.458984375,28.7122039794922,171.955368041992,-20.375,39.3815765380859,175.541732788086,-29.03515625,45.3515777587891,206.840835571289,-27.1044921875,31.9298858642578,201.034378051758,-30.80078125,38.4574127197266,205.443740844727,-21.9130859375,69.4447326660156,166.319732666016,-30.02734375,97.154296875,178.480453491211,-32.15234375,98.12841796875,172.36279296875,-28.6904296875,97.5188598632813,166.72688293457,-19.7587890625,66.1940460205078,176.160842895508,-18.4794921875,70.5735168457031,157.890899658203,-18.7109375,47.1525115966797,149.54216003418,-14.623046875,35.4931793212891,157.977554321289,-17.703125,59.2769317626953,142.096267700195,-9.5087890625,25.3832855224609,140.055160522461,-8.044921875,37.1385040283203,129.46076965332,-4.1591796875,0.858230590820313,121.54768371582,-9.5009765625,-27.9841461181641,84.1017913818359,-2.0361328125,-35.5639190673828,126.911666870117,-4.1484375,22.4199676513672,95.0625457763672,
  353. 1.962890625,-70.3557586669922,95.7926788330078,0.751953125,-5.56159973144531,39.0790252685547,4.5693359375,-58.4162139892578,33.3181610107422,0.8134765625,-33.7333526611328,72.2871551513672,-8.4658203125,-63.4214935302734,108.282608032227,-1.9609375,-19.8182525634766,106.322372436523,3.642578125,-64.5749053955078,57.8694305419922,-2.7646484375,-41.6803741455078,147.762008666992,4.5693359375,-112.151382446289,98.8115081787109,1.234375,-105.100723266602,151.543807983398,-4.11328125,-2.18161010742188,124.397491455078,-11.78125,-44.0578155517578,145.624801635742,-6.048828125,-3.17648315429688,161.208282470703,-1.234375,-24.5647735595703,98.7496795654297,-5.205078125,-39.8313751220703,190.37760925293,1.7431640625,-84.5186920166016,117.090682983398,-0.0595703125,-99.3068084716797,168.27229309082,-1.939453125,-25.2632598876953,112.571701049805,-13.8115234375,20.130126953125,104.709228515625,-0.9033203125,-12.5238800048828,77.9878387451172,-4.51171875,-12.3244781494141,144.093490600586,-2.9580078125,31.5015716552734,62.0953216552734,-8.7626953125,50.2845611572266,145.936904907227,-8.396484375,80.67529296875,102.15380859375
  354. }
  355. PolygonVertexIndex: *3783 {
  356. a: 0,1,-3,3,1,-1,1,4,-3,3,5,-2,6,1,-6,5,7,-7,4,1,-9,6,8,-2,8,9,-5,10,4,-10,9,11,-11,11,9,-13,9,8,-13,12,13,-12,6,14,-9,12,8,-15,15,14,-7,15,6,-8,14,16,-13,14,15,-17,7,17,-16,16,15,-18,17,7,-19,18,19,-18,19,16,-18,19,18,-21,20,21,-20,22,16,-20,21,22,-20,21,23,-23,23,16,-23,23,21,-25,12,16,-26,23,25,-17,13,12,-26,24,26,-24,25,23,-27,25,26,-14,26,24,-28,27,13,-27,28,29,-31,31,29,-29,29,32,-31,31,33,-30,34,29,-34,33,35,-35,32,29,-37,34,36,-30,36,37,-33,38,32,-38,37,39,-39,39,37,-41,37,36,-41,40,41,-40,34,42,-37,40,36,-43,43,42,-35,43,34,-36,42,44,-41,42,43,-45,35,45,-44,44,43,-46,45,35,-47,46,47,-46,47,44,-46,47,46,-49,48,49,-48,50,44,-48,49,50,-48,49,51,-51,51,44,-51,51,49,-53,40,44,-54,51,53,-45,41,40,-54,52,54,-52,53,51,-55,53,54,-42,54,52,-56,55,41,-55,56,57,-59,59,57,-57,57,60,-59,59,61,-58,62,57,-62,61,63,-63,60,57,-65,62,64,-58,64,65,-61,66,60,-66,65,67,-67,67,65,-69,65,64,-69,68,69,-68,62,70,-65,68,64,-71,71,70,-63,71,62,-64,70,72,-69,70,71,-73,63,73,-72,72,71,-74,73,63,-75,74,75,-74,75,72,-74,75,74,-77,76,77,-76,78,72,-76,77,78,-76,77,79,-79,79,72,-79,79,77,-81,68,72,-82,79,81,-73,69,68,-82,80,82,-80,81,79,-83,81,82,-70,82,80,-84,83,69,-83,84,85,-87,87,85,-85,85,88,-87,87,89,-86,90,85,-90,89,91,-91,88,85,-93,90,92,-86,92,93,-89,94,88,-94,93,95,-95,95,93,-97,93,92,-97,96,97,-96,90,98,-93,96,92,-99,99,98,-91,99,90,-92,98,100,-97,98,99,-101,91,101,-100,100,99,-102,101,91,-103,102,103,-102,103,100,-102,103,102,-105,104,105,-104,106,100,-104,105,106,-104,105,107,-107,107,100,-107,107,105,-109,96,100,-110,107,109,-101,97,96,-110,108,110,-108,109,107,-111,109,110,-98,110,108,-112,111,97,-111,112,113,-115,115,112,-115,113,112,-117,117,113,-117,112,115,-119,119,118,-116,116,120,-118,121,117,-121,116,112,-123,120,116,-123,112,118,-123,121,120,-124,123,120,-123,124,121,-124,122,118,-126,118,119,-126,126,123,-123,124,123,-127,127,125,-120,119,128,-128,129,122,-126,125,127,-130,129,126,-123,128,130,-128,127,130,-130,131,130,-129,132,130,-132,133,124,-127,133,126,-130,124,133,-135,130,135,-130,135,133,-130,
  357. 130,132,-136,135,134,-134,134,135,-133,136,137,-139,139,136,-139,137,136,-141,141,137,-141,136,139,-143,143,142,-140,140,144,-142,145,141,-145,140,136,-147,144,140,-147,136,142,-147,145,144,-148,147,144,-147,148,145,-148,146,142,-150,142,143,-150,150,147,-147,148,147,-151,151,149,-144,143,152,-152,153,146,-150,149,151,-154,153,150,-147,152,154,-152,151,154,-154,155,154,-153,156,154,-156,157,148,-151,157,150,-154,148,157,-159,154,159,-154,159,157,-154,154,156,-160,159,158,-158,158,159,-157,160,161,-163,163,160,-163,161,160,-165,165,161,-165,160,163,-167,167,166,-164,164,168,-166,169,165,-169,164,160,-171,168,164,-171,160,166,-171,169,168,-172,171,168,-171,172,169,-172,170,166,-174,166,167,-174,174,171,-171,172,171,-175,175,173,-168,167,176,-176,177,170,-174,173,175,-178,177,174,-171,176,178,-176,175,178,-178,179,178,-177,180,178,-180,181,172,-175,181,174,-178,172,181,-183,178,183,-178,183,181,-178,178,180,-184,183,182,-182,182,183,-181,184,185,-187,187,184,-187,187,188,-190,186,190,-188,188,187,-191,188,190,-192,186,192,-191,191,190,-194,190,192,-194,193,192,-195,195,196,-198,198,195,-198,198,199,-201,197,201,-199,199,198,-202,199,201,-203,197,203,-202,202,201,-205,201,203,-205,204,203,-206,206,207,-209,209,206,-209,209,210,-212,208,212,-210,210,209,-213,210,212,-214,208,214,-213,213,212,-216,212,214,-216,215,214,-217,217,218,-220,220,217,-220,220,221,-223,219,223,-221,221,220,-224,221,223,-225,219,225,-224,224,223,-227,223,225,-227,226,225,-228,228,229,-231,231,228,-231,232,228,-232,231,230,-234,232,231,-235,234,231,-234,235,236,-238,235,237,-239,239,235,-239,237,240,-239,239,238,-242,238,240,-242,242,243,-245,245,242,-245,246,242,-246,245,244,-248,246,245,-249,248,245,-248,249,250,-252,249,251,-253,253,249,-253,251,254,-253,253,252,-256,252,254,-256,256,257,-259,259,256,-259,260,256,-260,259,258,-262,260,259,-263,262,259,-262,263,264,-266,263,265,-267,267,263,-267,265,268,-267,267,266,-270,266,268,-270,270,271,-273,273,271,-271,271,273,-275,273,275,-275,273,276,-276,270,277,-274,276,273,-278,277,270,-279,279,276,
  358. -278,280,277,-279,277,280,-280,281,282,-284,284,282,-282,282,284,-286,284,286,-286,284,287,-287,281,288,-285,287,284,-289,288,281,-290,290,287,-289,291,288,-290,288,291,-291,292,293,-295,295,293,-293,293,295,-297,295,297,-297,295,298,-298,292,299,-296,298,295,-300,299,292,-301,301,298,-300,302,299,-301,299,302,-302,303,304,-306,303,306,-305,305,304,-308,304,306,-309,307,304,-309,309,310,-312,309,312,-311,311,310,-314,310,312,-315,310,314,-314,315,316,-318,315,318,-317,317,316,-320,316,318,-321,316,320,-320,321,322,-324,324,322,-322,325,321,-324,321,326,-325,325,326,-322,327,324,-327,328,326,-326,327,326,-329,329,330,-332,329,332,-331,331,330,-334,330,332,-335,330,334,-334,332,335,-335,336,333,-335,334,335,-337,337,338,-340,337,340,-339,339,338,-342,338,340,-343,342,341,-339,340,343,-343,344,341,-343,342,343,-345,345,346,-348,348,346,-346,349,345,-348,345,350,-349,349,350,-346,351,348,-351,352,350,-350,351,350,-353,353,354,-356,353,356,-355,355,354,-358,354,356,-359,354,358,-358,356,359,-359,360,357,-359,358,359,-361,361,362,-364,364,362,-362,365,361,-364,361,366,-365,365,366,-362,367,364,-367,368,366,-366,367,366,-369,369,370,-372,369,372,-371,371,370,-374,370,372,-375,370,374,-374,375,376,-378,375,378,-377,377,376,-380,376,378,-381,379,376,-381,381,382,-384,381,384,-383,383,382,-386,382,384,-387,382,386,-386,387,388,-390,387,390,-389,389,388,-392,388,390,-393,388,392,-392,393,394,-396,393,396,-395,395,394,-398,394,396,-399,394,398,-398,399,400,-402,399,402,-401,401,400,-404,400,402,-405,400,404,-404,405,406,-408,405,408,-407,407,406,-410,406,408,-411,409,406,-411,411,412,-414,411,414,-413,413,412,-416,412,414,-417,412,416,-416,417,418,-420,417,420,-419,419,418,-422,418,420,-423,421,418,-423,423,424,-426,423,425,-427,424,427,-426,425,428,-427,425,427,-429,426,428,-430,427,430,-429,428,430,-430,431,432,-434,431,434,-433,433,432,-436,432,434,-437,435,432,-437,437,438,-440,437,440,-439,439,438,-442,438,440,-443,438,442,-442,443,444,-446,443,446,-445,445,444,-448,444,446,-449,444,448,-448,449,450,-452,449,452,-451,451,
  359. 450,-454,450,452,-455,450,454,-454,455,456,-458,455,458,-457,457,456,-460,456,458,-461,459,456,-461,461,462,-464,461,463,-465,462,465,-464,463,466,-465,463,465,-467,464,466,-468,465,468,-467,466,468,-468,469,470,-472,469,472,-471,471,470,-474,470,472,-475,473,470,-475,475,476,-478,475,478,-477,477,476,-480,476,478,-481,476,480,-480,481,482,-484,481,484,-483,483,482,-486,482,484,-487,482,486,-486,487,488,-490,487,490,-489,489,488,-492,488,490,-493,488,492,-492,493,494,-496,493,496,-495,495,494,-498,494,496,-499,497,494,-499,499,500,-502,499,502,-501,501,500,-504,500,502,-505,503,500,-505,505,506,-508,505,508,-507,507,506,-510,506,508,-511,506,510,-510,511,512,-514,511,514,-513,513,512,-516,512,514,-517,512,516,-516,517,518,-520,520,518,-518,521,517,-520,517,522,-521,521,522,-518,523,520,-523,524,522,-522,523,522,-525,525,526,-528,525,528,-527,527,526,-530,526,528,-531,526,530,-530,528,531,-531,532,529,-531,530,531,-533,533,534,-536,533,536,-535,535,534,-538,534,536,-539,538,537,-535,536,539,-539,540,537,-539,538,539,-541,541,542,-544,544,542,-542,545,541,-544,541,546,-545,545,546,-542,547,544,-547,548,546,-546,547,546,-549,549,550,-552,549,552,-551,551,550,-554,550,552,-555,550,554,-554,552,555,-555,556,553,-555,554,555,-557,557,558,-560,560,558,-558,561,557,-560,557,562,-561,561,562,-558,563,560,-563,564,562,-562,563,562,-565,565,566,-568,565,568,-567,567,566,-570,566,568,-571,566,570,-570,571,572,-574,571,574,-573,573,572,-576,572,574,-577,575,572,-577,577,578,-580,577,580,-579,579,578,-582,578,580,-583,578,582,-582,583,584,-586,583,586,-585,585,584,-588,584,586,-589,584,588,-588,589,590,-592,589,592,-591,591,590,-594,590,592,-595,590,594,-594,595,596,-598,595,598,-597,597,596,-600,596,598,-601,596,600,-600,601,602,-604,601,604,-603,603,602,-606,602,604,-607,605,602,-607,607,608,-610,607,610,-609,609,608,-612,608,610,-613,608,612,-612,613,614,-616,613,616,-615,615,614,-618,614,616,-619,617,614,-619,619,620,-622,619,621,-623,620,623,-622,621,624,-623,621,623,-625,622,624,-626,623,626,-625,624,626,-626,627,628,-630,
  360. 627,630,-629,629,628,-632,628,630,-633,631,628,-633,633,634,-636,633,636,-635,635,634,-638,634,636,-639,634,638,-638,639,640,-642,639,642,-641,641,640,-644,640,642,-645,640,644,-644,645,646,-648,645,648,-647,647,646,-650,646,648,-651,646,650,-650,651,652,-654,651,654,-653,653,652,-656,652,654,-657,655,652,-657,657,658,-660,657,660,-659,659,658,-662,658,660,-663,661,658,-663,663,664,-666,663,666,-665,665,664,-668,664,666,-669,664,668,-668,669,670,-672,669,672,-671,671,670,-674,670,672,-675,670,674,-674,675,676,-678,678,676,-676,679,675,-678,675,680,-679,679,680,-676,681,678,-681,682,680,-680,681,680,-683,683,684,-686,683,686,-685,685,684,-688,684,686,-689,684,688,-688,686,689,-689,690,687,-689,688,689,-691,691,692,-694,691,694,-693,693,692,-696,692,694,-697,696,695,-693,694,697,-697,698,695,-697,696,697,-699,699,700,-702,702,700,-700,703,699,-702,699,704,-703,703,704,-700,705,702,-705,706,704,-704,705,704,-707,707,708,-710,707,710,-709,709,708,-712,708,710,-713,708,712,-712,710,713,-713,714,711,-713,712,713,-715,715,716,-718,718,716,-716,719,715,-718,715,720,-719,719,720,-716,721,718,-721,722,720,-720,721,720,-723,723,724,-726,723,726,-725,725,724,-728,724,726,-729,724,728,-728,729,730,-732,729,732,-731,731,730,-734,730,732,-735,733,730,-735,735,736,-738,735,738,-737,737,736,-740,736,738,-741,736,740,-740,741,742,-744,741,744,-743,743,742,-746,742,744,-747,742,746,-746,747,748,-750,747,750,-749,749,748,-752,748,750,-753,748,752,-752,753,754,-756,753,756,-755,755,754,-758,754,756,-759,754,758,-758,759,760,-762,759,762,-761,761,760,-764,760,762,-765,763,760,-765,765,766,-768,765,768,-767,767,766,-770,766,768,-771,766,770,-770,771,772,-774,771,774,-773,773,772,-776,772,774,-777,775,772,-777,777,778,-780,777,779,-781,778,781,-780,779,782,-781,779,781,-783,780,782,-784,781,784,-783,782,784,-784,785,786,-788,785,788,-787,787,786,-790,786,788,-791,789,786,-791,791,792,-794,791,794,-793,793,792,-796,792,794,-797,792,796,-796,797,798,-800,797,800,-799,799,798,-802,798,800,-803,798,802,-802,803,804,-806,803,806,-805,805,804,
  361. -808,804,806,-809,804,808,-808,809,810,-812,809,812,-811,811,810,-814,810,812,-815,813,810,-815,815,816,-818,816,815,-819,817,819,-816,815,820,-819,819,821,-816,820,815,-822,821,819,-823,821,823,-821,824,821,-823,823,821,-826,825,821,-825,826,827,-829,827,829,-829,826,830,-828,831,829,-828,827,830,-833,827,832,-832,833,832,-831,832,834,-832,832,833,-836,834,832,-836,836,837,-839,836,839,-838,838,837,-841,837,839,-842,840,837,-843,842,837,-842,843,844,-846,843,846,-845,845,844,-848,844,846,-849,847,844,-850,849,844,-849,850,851,-853,850,853,-852,852,851,-855,851,853,-856,854,851,-857,856,851,-856,857,858,-860,857,860,-859,859,858,-862,858,860,-863,861,858,-864,863,858,-863,864,865,-867,864,867,-866,866,865,-869,865,867,-870,868,865,-871,870,865,-870,871,872,-874,871,874,-873,873,872,-876,872,874,-877,875,872,-878,877,872,-877,878,879,-881,878,881,-880,880,879,-883,879,881,-884,882,879,-885,884,879,-884,885,886,-888,885,888,-887,887,886,-890,886,888,-891,889,886,-892,891,886,-891,892,893,-895,892,895,-894,894,896,-893,895,892,-898,898,892,-897,898,897,-893,898,896,-900,897,898,-901,901,898,-900,898,902,-901,902,898,-902,903,904,-906,905,904,-907,905,907,-904,908,905,-907,907,905,-910,909,905,-909,909,910,-908,911,909,-909,910,909,-913,912,909,-912,913,914,-916,916,913,-916,914,913,-918,913,916,-919,919,917,-914,918,919,-914,920,917,-920,919,918,-922,922,920,-920,923,919,-922,919,923,-923,924,925,-927,924,927,-926,926,925,-929,925,927,-930,928,925,-931,930,925,-930,931,932,-934,931,934,-933,933,932,-936,932,934,-937,935,932,-938,937,932,-937,938,939,-941,938,941,-940,940,939,-943,939,941,-944,942,939,-945,944,939,-944,945,946,-948,945,948,-947,947,946,-950,946,948,-951,949,946,-952,951,946,-951,952,953,-955,952,955,-954,954,956,-953,955,952,-958,958,952,-957,958,957,-953,958,956,-960,957,958,-961,961,958,-960,958,962,-961,962,958,-962,963,964,-966,965,964,-967,965,967,-964,968,965,-967,967,965,-970,969,965,-969,969,970,-968,971,969,-969,970,969,-973,972,969,-972,973,974,-976,976,973,-976,974,973,-978,973,976,-979,979,
  362. 977,-974,978,979,-974,980,977,-980,979,978,-982,982,980,-980,983,979,-982,979,983,-983,984,985,-987,984,987,-986,986,985,-989,985,987,-990,988,985,-991,990,985,-990,991,992,-994,991,994,-993,993,992,-996,992,994,-997,995,992,-998,997,992,-997,998,999,-1001,998,1001,-1000,1000,999,-1003,999,1001,-1004,1002,999,-1005,1004,999,-1004,1005,1006,-1008,1005,1008,-1007,1007,1006,-1010,1006,1008,-1011,1009,1006,-1012,1011,1006,-1011,1012,1013,-1015,1013,1012,-1016,1014,1016,-1013,1012,1017,-1016,1016,1018,-1013,1017,1012,-1019,1018,1016,-1020,1018,1020,-1018,1021,1018,-1020,1020,1018,-1023,1022,1018,-1022,1023,1024,-1026,1024,1026,-1026,1023,1027,-1025,1028,1026,-1025,1024,1027,-1030,1024,1029,-1029,1030,1029,-1028,1029,1031,-1029,1029,1030,-1033,1031,1029,-1033,1033,1034,-1036,1033,1036,-1035,1035,1034,-1038,1034,1036,-1039,1037,1034,-1040,1039,1034,-1039,1040,1041,-1043,1040,1043,-1042,1042,1041,-1045,1041,1043,-1046,1044,1041,-1047,1046,1041,-1046,1047,1048,-1050,1047,1050,-1049,1049,1048,-1052,1048,1050,-1053,1051,1048,-1054,1053,1048,-1053,1054,1055,-1057,1054,1057,-1056,1056,1055,-1059,1055,1057,-1060,1058,1055,-1061,1060,1055,-1060,1061,1062,-1064,1061,1064,-1063,1063,1062,-1066,1062,1064,-1067,1065,1062,-1068,1067,1062,-1067,1068,1069,-1071,1068,1071,-1070,1070,1069,-1073,1069,1071,-1074,1072,1069,-1075,1074,1069,-1074,1075,1076,-1078,1075,1078,-1077,1077,1076,-1080,1076,1078,-1081,1079,1076,-1082,1081,1076,-1081,1082,1083,-1085,1082,1085,-1084,1084,1083,-1087,1083,1085,-1088,1086,1083,-1089,1088,1083,-1088,1089,1090,-1092,1089,1092,-1091,1091,1093,-1090,1092,1089,-1095,1095,1089,-1094,1095,1094,-1090,1095,1093,-1097,1094,1095,-1098,1098,1095,-1097,1095,1099,-1098,1099,1095,-1099,1100,1101,-1103,1102,1101,-1104,1102,1104,-1101,1105,1102,-1104,1104,1102,-1107,1106,1102,-1106,1106,1107,-1105,1108,1106,-1106,1107,1106,-1110,1109,1106,-1109,1110,1111,-1113,1113,1110,-1113,1111,1110,-1115,1110,1113,-1116,1116,1114,-1111,1115,1116,-1111,1117,1114,-1117,1116,1115,-1119,1119,1117,-1117,1120,1116,-1119,1116,1120,-1120,1121,
  363. 1122,-1124,1121,1124,-1123,1123,1122,-1126,1122,1124,-1127,1125,1122,-1128,1127,1122,-1127,1128,1129,-1131,1128,1131,-1130,1130,1129,-1133,1129,1131,-1134,1132,1129,-1135,1134,1129,-1134,1135,1136,-1138,1135,1138,-1137,1137,1136,-1140,1136,1138,-1141,1139,1136,-1142,1141,1136,-1141,1142,1143,-1145,1142,1145,-1144,1144,1143,-1147,1143,1145,-1148,1146,1143,-1149,1148,1143,-1148,1149,1150,-1152,1150,1149,-1153,1151,1153,-1150,1149,1154,-1153,1153,1155,-1150,1154,1149,-1156,1155,1153,-1157,1155,1157,-1155,1158,1155,-1157,1157,1155,-1160,1159,1155,-1159,1160,1161,-1163,1161,1163,-1163,1160,1164,-1162,1165,1163,-1162,1161,1164,-1167,1161,1166,-1166,1167,1166,-1165,1166,1168,-1166,1166,1167,-1170,1168,1166,-1170,1170,1171,-1173,1170,1173,-1172,1172,1171,-1175,1171,1173,-1176,1174,1171,-1177,1176,1171,-1176,1177,1178,-1180,1177,1180,-1179,1179,1178,-1182,1178,1180,-1183,1181,1178,-1184,1183,1178,-1183,1184,1185,-1187,1184,1187,-1186,1186,1185,-1189,1185,1187,-1190,1188,1185,-1191,1190,1185,-1190,1191,1192,-1194,1191,1194,-1193,1193,1192,-1196,1192,1194,-1197,1195,1192,-1198,1197,1192,-1197,1198,1199,-1201,1198,1201,-1200,1200,1199,-1203,1199,1201,-1204,1202,1199,-1205,1204,1199,-1204,1205,1206,-1208,1205,1208,-1207,1207,1206,-1210,1206,1208,-1211,1209,1206,-1212,1211,1206,-1211,1212,1213,-1215,1212,1215,-1214,1214,1213,-1217,1213,1215,-1218,1216,1213,-1219,1218,1213,-1218,1219,1220,-1222,1219,1222,-1221,1221,1220,-1224,1220,1222,-1225,1223,1220,-1226,1225,1220,-1225,1226,1227,-1229,1226,1229,-1228,1228,1230,-1227,1229,1226,-1232,1232,1226,-1231,1232,1231,-1227,1232,1230,-1234,1231,1232,-1235,1235,1232,-1234,1232,1236,-1235,1236,1232,-1236,1237,1238,-1240,1239,1238,-1241,1239,1241,-1238,1242,1239,-1241,1241,1239,-1244,1243,1239,-1243,1243,1244,-1242,1245,1243,-1243,1244,1243,-1247,1246,1243,-1246,1247,1248,-1250,1250,1247,-1250,1248,1247,-1252,1247,1250,-1253,1253,1251,-1248,1252,1253,-1248,1254,1251,-1254,1253,1252,-1256,1256,1254,-1254,1257,1253,-1256,1253,1257,-1257,1258,1259,-1261,1258,1261,-1260,1260,1259,-1263,1259,1261,
  364. -1264,1262,1259,-1265,1264,1259,-1264,1265,1266,-1268,1265,1268,-1267,1267,1266,-1270,1266,1268,-1271,1269,1266,-1272,1271,1266,-1271,1272,1273,-1275,1272,1275,-1274,1274,1273,-1277,1273,1275,-1278,1276,1273,-1279,1278,1273,-1278,1279,1280,-1282,1279,1282,-1281,1281,1280,-1284,1280,1282,-1285,1283,1280,-1286,1285,1280,-1285
  365. }
  366. Edges: *2391 {
  367. a: 0,1,2,3,5,6,7,9,10,12,14,15,16,19,20,21,24,25,27,29,30,31,34,35,37,39,40,42,43,47,48,50,53,54,55,58,60,61,65,67,68,69,70,72,76,77,78,79,81,83,84,87,88,90,94,95,97,98,99,104,105,106,110,112,115,116,117,120,121,122,123,125,126,127,129,130,132,134,135,136,139,140,141,144,145,147,149,150,151,154,155,157,159,160,162,163,167,168,170,173,174,175,178,180,181,185,187,188,189,190,192,196,197,198,199,201,203,204,207,208,210,214,215,217,218,219,224,225,226,230,232,235,236,237,240,241,242,243,245,246,247,249,250,252,254,255,256,259,260,261,264,265,267,269,270,271,274,275,277,279,280,282,283,287,288,290,293,294,295,298,300,301,305,307,308,309,310,312,316,317,318,319,321,323,324,327,328,330,334,335,337,338,339,344,345,346,350,352,355,356,357,360,361,362,363,365,366,367,369,370,372,374,375,376,379,380,381,384,385,387,389,390,391,394,395,397,399,400,402,403,407,408,410,413,414,415,418,420,421,425,427,428,429,430,432,436,437,438,439,441,443,444,447,448,450,454,455,457,458,459,464,465,466,470,472,475,476,477,480,481,482,483,485,487,488,489,491,493,494,495,497,498,499,501,503,505,506,509,511,514,515,518,519,521,523,524,526,528,530,533,534,536,537,538,540,542,544,546,549,550,553,555,557,558,560,561,563,566,568,569,570,571,573,577,579,584,585,586,587,588,590,592,593,594,596,598,599,600,602,603,604,606,608,610,611,614,616,619,620,623,624,626,628,629,631,633,635,638,639,641,642,643,645,647,649,651,654,655,658,660,662,663,665,666,668,671,673,674,675,676,678,682,684,689,690,691,692,693,695,697,698,699,701,703,704,705,707,708,709,711,713,715,716,719,721,724,725,728,729,731,733,734,736,738,740,743,744,746,747,748,750,752,754,756,759,760,763,765,767,768,770,771,773,776,778,779,780,781,783,787,789,794,795,796,797,798,800,801,802,803,804,805,809,811,812,813,814,817,818,820,823,824,825,826,827,828,830,831,832,833,834,835,839,841,842,843,844,847,848,850,853,854,855,856,857,858,860,861,862,863,864,865,869,871,872,873,874,877,878,880,883,884,885,886,887,888,890,891,892,893,894,895,899,901,902,903,904,907,908,910,913,914,915,916,917,
  368. 918,920,921,923,925,926,928,929,932,933,934,935,937,938,939,941,942,943,946,947,949,951,952,953,954,956,957,959,961,962,964,965,968,969,970,971,973,974,975,977,978,979,982,983,985,987,988,989,990,992,993,995,997,998,1000,1001,1004,1005,1006,1007,1009,1010,1011,1013,1014,1015,1018,1019,1021,1023,1024,1025,1026,1028,1030,1031,1032,1033,1035,1036,1038,1039,1043,1045,1046,1047,1049,1050,1052,1054,1056,1057,1058,1059,1061,1063,1064,1065,1066,1068,1069,1071,1072,1076,1078,1079,1080,1082,1083,1085,1087,1089,1090,1091,1092,1094,1096,1097,1098,1099,1101,1102,1104,1105,1109,1111,1112,1113,1115,1116,1118,1120,1122,1123,1124,1125,1126,1129,1130,1132,1133,1136,1137,1138,1139,1140,1141,1144,1145,1147,1148,1150,1152,1153,1154,1155,1156,1159,1160,1162,1163,1165,1167,1168,1169,1170,1172,1173,1175,1176,1177,1179,1182,1184,1185,1187,1190,1191,1192,1193,1194,1195,1198,1199,1201,1202,1204,1206,1207,1209,1211,1213,1215,1216,1217,1218,1219,1222,1223,1225,1226,1227,1230,1231,1233,1235,1237,1239,1240,1241,1242,1244,1245,1247,1248,1249,1251,1254,1256,1257,1259,1262,1263,1264,1265,1266,1267,1270,1271,1273,1274,1276,1278,1279,1281,1283,1285,1287,1288,1289,1290,1292,1293,1295,1296,1297,1299,1302,1304,1305,1307,1310,1311,1312,1313,1314,1315,1318,1319,1321,1322,1324,1326,1327,1328,1329,1330,1333,1334,1336,1337,1340,1341,1342,1343,1344,1345,1348,1349,1351,1352,1354,1356,1357,1358,1359,1360,1363,1364,1366,1367,1369,1371,1372,1373,1374,1375,1378,1379,1381,1382,1384,1386,1387,1388,1389,1390,1393,1394,1396,1397,1399,1401,1402,1403,1404,1405,1408,1409,1411,1412,1415,1416,1417,1418,1419,1420,1423,1424,1426,1427,1429,1431,1432,1433,1434,1435,1438,1439,1441,1442,1445,1446,1447,1448,1450,1451,1452,1453,1455,1456,1459,1462,1463,1464,1465,1468,1470,1471,1472,1473,1474,1477,1478,1480,1481,1484,1485,1486,1487,1488,1489,1492,1493,1495,1496,1498,1500,1501,1502,1503,1504,1507,1508,1510,1511,1513,1515,1516,1517,1518,1519,1522,1523,1525,1526,1528,1530,1531,1532,1533,1534,1537,1538,1540,1541,1544,1545,1546,1547,1549,1550,1551,1552,1554,1555,1558,1561,1562,1563,1564,
  369. 1567,1569,1570,1571,1572,1573,1576,1577,1579,1580,1583,1584,1585,1586,1587,1588,1591,1592,1594,1595,1597,1599,1600,1601,1602,1603,1606,1607,1609,1610,1612,1614,1615,1616,1617,1618,1621,1622,1624,1625,1627,1629,1630,1631,1632,1633,1636,1637,1639,1640,1643,1644,1645,1646,1647,1648,1651,1652,1654,1655,1658,1659,1660,1661,1662,1663,1666,1667,1669,1670,1672,1674,1675,1676,1677,1678,1681,1682,1684,1685,1687,1689,1690,1691,1692,1694,1695,1697,1698,1699,1701,1704,1706,1707,1709,1712,1713,1714,1715,1716,1717,1720,1721,1723,1724,1726,1728,1729,1731,1733,1735,1737,1738,1739,1740,1741,1744,1745,1747,1748,1749,1752,1753,1755,1757,1759,1761,1762,1763,1764,1766,1767,1769,1770,1771,1773,1776,1778,1779,1781,1784,1785,1786,1787,1788,1789,1792,1793,1795,1796,1798,1800,1801,1803,1805,1807,1809,1810,1811,1812,1814,1815,1817,1818,1819,1821,1824,1826,1827,1829,1832,1833,1834,1835,1836,1837,1840,1841,1843,1844,1846,1848,1849,1850,1851,1852,1855,1856,1858,1859,1862,1863,1864,1865,1866,1867,1870,1871,1873,1874,1876,1878,1879,1880,1881,1882,1885,1886,1888,1889,1891,1893,1894,1895,1896,1897,1900,1901,1903,1904,1906,1908,1909,1910,1911,1912,1915,1916,1918,1919,1921,1923,1924,1925,1926,1927,1930,1931,1933,1934,1937,1938,1939,1940,1941,1942,1945,1946,1948,1949,1951,1953,1954,1955,1956,1957,1960,1961,1963,1964,1967,1968,1969,1970,1972,1973,1974,1975,1977,1978,1981,1984,1985,1986,1987,1990,1992,1993,1994,1995,1996,1999,2000,2002,2003,2006,2007,2008,2009,2010,2011,2014,2015,2017,2018,2020,2022,2023,2024,2025,2026,2029,2030,2032,2033,2035,2037,2038,2039,2040,2041,2044,2045,2047,2048,2050,2052,2053,2054,2055,2056,2059,2060,2062,2063,2066,2067,2068,2069,2070,2071,2074,2075,2077,2078,2081,2082,2083,2084,2085,2086,2089,2090,2092,2093,2095,2097,2098,2099,2100,2101,2104,2105,2107,2108,2110,2112,2113,2114,2115,2117,2118,2120,2121,2122,2124,2127,2129,2130,2132,2135,2136,2137,2138,2139,2140,2143,2144,2146,2147,2149,2151,2152,2154,2156,2158,2160,2161,2162,2163,2164,2167,2168,2170,2171,2172,2175,2176,2178,2180,2182,2184,2185,2186,2187,2189,2190,2192,2193,2194,
  370. 2196,2199,2201,2202,2204,2207,2208,2209,2210,2211,2212,2215,2216,2218,2219,2221,2223,2224,2226,2228,2230,2232,2233,2234,2235,2237,2238,2240,2241,2242,2244,2247,2249,2250,2252,2255,2256,2257,2258,2259,2260,2263,2264,2266,2267,2269,2271,2272,2273,2274,2275,2278,2279,2281,2282,2285,2286,2287,2288,2289,2290,2293,2294,2296,2297,2299,2301,2302,2303,2304,2305,2308,2309,2311,2312,2314,2316,2317,2318,2319,2320,2323,2324,2326,2327,2329,2331,2332,2333,2334,2335,2338,2339,2341,2342,2344,2346,2347,2348,2349,2350,2353,2354,2356,2357,2360,2361,2362,2363,2364,2365,2368,2369,2371,2372,2374,2376,2377,2378,2379,2380,2383,2384,2386,2387,2390,2391,2392,2393,2395,2396,2397,2398,2400,2401,2404,2407,2408,2409,2410,2413,2415,2416,2417,2418,2419,2422,2423,2425,2426,2429,2430,2431,2432,2433,2434,2437,2438,2440,2441,2443,2445,2446,2447,2448,2449,2452,2453,2455,2456,2458,2460,2461,2462,2463,2464,2467,2468,2470,2471,2473,2475,2476,2477,2478,2479,2482,2483,2485,2486,2489,2490,2491,2492,2494,2495,2496,2497,2499,2500,2502,2503,2507,2509,2510,2511,2512,2514,2516,2518,2519,2522,2523,2524,2525,2526,2527,2529,2530,2532,2534,2536,2537,2539,2541,2543,2544,2545,2548,2549,2552,2553,2554,2555,2556,2557,2560,2561,2563,2564,2566,2567,2570,2571,2572,2573,2574,2575,2578,2579,2581,2582,2584,2585,2588,2589,2590,2591,2592,2593,2596,2597,2599,2600,2602,2603,2606,2607,2608,2609,2610,2611,2614,2615,2617,2618,2620,2621,2624,2625,2626,2627,2628,2629,2632,2633,2635,2636,2638,2639,2642,2643,2644,2645,2646,2647,2650,2651,2653,2654,2656,2657,2660,2661,2662,2663,2664,2665,2668,2669,2671,2672,2674,2675,2678,2679,2680,2681,2682,2683,2686,2687,2689,2690,2692,2693,2696,2697,2698,2699,2700,2701,2703,2704,2707,2708,2709,2711,2712,2716,2717,2719,2720,2721,2723,2724,2725,2729,2730,2731,2732,2734,2735,2736,2737,2739,2741,2743,2744,2747,2748,2749,2751,2753,2755,2756,2759,2760,2761,2762,2763,2765,2767,2768,2770,2771,2772,2774,2775,2778,2780,2782,2783,2784,2786,2787,2789,2791,2793,2794,2795,2796,2797,2800,2801,2803,2804,2806,2807,2810,2811,2812,2813,2814,2815,2818,2819,2821,2822,2824,
  371. 2825,2828,2829,2830,2831,2832,2833,2836,2837,2839,2840,2842,2843,2846,2847,2848,2849,2850,2851,2854,2855,2857,2858,2860,2861,2864,2865,2866,2867,2868,2869,2871,2872,2875,2876,2877,2879,2880,2884,2885,2887,2888,2889,2891,2892,2893,2897,2898,2899,2900,2902,2903,2904,2905,2907,2909,2911,2912,2915,2916,2917,2919,2921,2923,2924,2927,2928,2929,2930,2931,2933,2935,2936,2938,2939,2940,2942,2943,2946,2948,2950,2951,2952,2954,2955,2957,2959,2961,2962,2963,2964,2965,2968,2969,2971,2972,2974,2975,2978,2979,2980,2981,2982,2983,2986,2987,2989,2990,2992,2993,2996,2997,2998,2999,3000,3001,3004,3005,3007,3008,3010,3011,3014,3015,3016,3017,3018,3019,3022,3023,3025,3026,3028,3029,3032,3033,3034,3035,3037,3038,3039,3040,3042,3043,3045,3046,3050,3052,3053,3054,3055,3057,3059,3061,3062,3065,3066,3067,3068,3069,3070,3072,3073,3075,3077,3079,3080,3082,3084,3086,3087,3088,3091,3092,3095,3096,3097,3098,3099,3100,3103,3104,3106,3107,3109,3110,3113,3114,3115,3116,3117,3118,3121,3122,3124,3125,3127,3128,3131,3132,3133,3134,3135,3136,3139,3140,3142,3143,3145,3146,3149,3150,3151,3152,3153,3154,3157,3158,3160,3161,3163,3164,3167,3168,3169,3170,3171,3172,3175,3176,3178,3179,3181,3182,3185,3186,3187,3188,3189,3190,3193,3194,3196,3197,3199,3200,3203,3204,3205,3206,3207,3208,3211,3212,3214,3215,3217,3218,3221,3222,3223,3224,3225,3226,3229,3230,3232,3233,3235,3236,3239,3240,3241,3242,3243,3244,3246,3247,3250,3251,3252,3254,3255,3259,3260,3262,3263,3264,3266,3267,3268,3272,3273,3274,3275,3277,3278,3279,3280,3282,3284,3286,3287,3290,3291,3292,3294,3296,3298,3299,3302,3303,3304,3305,3306,3308,3310,3311,3313,3314,3315,3317,3318,3321,3323,3325,3326,3327,3329,3330,3332,3334,3336,3337,3338,3339,3340,3343,3344,3346,3347,3349,3350,3353,3354,3355,3356,3357,3358,3361,3362,3364,3365,3367,3368,3371,3372,3373,3374,3375,3376,3379,3380,3382,3383,3385,3386,3389,3390,3391,3392,3393,3394,3397,3398,3400,3401,3403,3404,3407,3408,3409,3410,3412,3413,3414,3415,3417,3418,3420,3421,3425,3427,3428,3429,3430,3432,3434,3436,3437,3440,3441,3442,3443,3444,3445,3447,3448,3450,3452,
  372. 3454,3455,3457,3459,3461,3462,3463,3466,3467,3470,3471,3472,3473,3474,3475,3478,3479,3481,3482,3484,3485,3488,3489,3490,3491,3492,3493,3496,3497,3499,3500,3502,3503,3506,3507,3508,3509,3510,3511,3514,3515,3517,3518,3520,3521,3524,3525,3526,3527,3528,3529,3532,3533,3535,3536,3538,3539,3542,3543,3544,3545,3546,3547,3550,3551,3553,3554,3556,3557,3560,3561,3562,3563,3564,3565,3568,3569,3571,3572,3574,3575,3578,3579,3580,3581,3582,3583,3586,3587,3589,3590,3592,3593,3596,3597,3598,3599,3600,3601,3604,3605,3607,3608,3610,3611,3614,3615,3616,3617,3618,3619,3621,3622,3625,3626,3627,3629,3630,3634,3635,3637,3638,3639,3641,3642,3643,3647,3648,3649,3650,3652,3653,3654,3655,3657,3659,3661,3662,3665,3666,3667,3669,3671,3673,3674,3677,3678,3679,3680,3681,3683,3685,3686,3688,3689,3690,3692,3693,3696,3698,3700,3701,3702,3704,3705,3707,3709,3711,3712,3713,3714,3715,3718,3719,3721,3722,3724,3725,3728,3729,3730,3731,3732,3733,3736,3737,3739,3740,3742,3743,3746,3747,3748,3749,3750,3751,3754,3755,3757,3758,3760,3761,3764,3765,3766,3767,3768,3769,3772,3773,3775,3776,3778,3779,3782
  373. }
  374. GeometryVersion: 124
  375. LayerElementNormal: 0 {
  376. Version: 102
  377. Name: ""
  378. MappingInformationType: "ByPolygonVertex"
  379. ReferenceInformationType: "Direct"
  380. Normals: *11349 {
  381. a: -0.965813159942627,-0.212007775902748,-0.149190649390221,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.928903520107269,-0.0157441273331642,-0.369987010955811,-0.942518174648285,-0.306318402290344,0.133523404598236,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.965813159942627,-0.212007775902748,-0.149190649390221,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.928903520107269,-0.0157441273331642,-0.369987010955811,-0.942518174648285,-0.306318402290344,0.133523404598236,-0.941357553005219,-0.27456259727478,0.196116149425507,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.941357553005219,-0.27456259727478,0.196116149425507,-0.941357553005219,-0.27456259727478,0.196116149425507,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.950724482536316,-0.0471433624625206,-0.306431859731674,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.915459871292114,0.173621714115143,-0.363027185201645,-0.950724482536316,-0.0471433624625206,-0.306431859731674,-0.915459871292114,0.173621714115143,-0.363027185201645,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,
  382. -0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.915459871292114,0.173621714115143,-0.363027185201645,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.956918001174927,-0.142351418733597,0.253069221973419,-0.956918001174927,-0.142351418733597,0.253069221973419,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.984954476356506,-0.118194542825222,0.126074180006981,
  383. -0.987409830093384,0.00789927877485752,0.15798556804657,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.956918001174927,-0.142351418733597,0.253069221973419,-0.97324526309967,0.0313950069248676,0.227613806724548,-0.97324526309967,0.0313950069248676,0.227613806724548,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.972582757472992,0.189772248268127,-0.13442200422287,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.972582757472992,0.189772248268127,-0.13442200422287,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.993111670017242,0.0867002233862877,-0.0788183808326721,
  384. -0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.972582757472992,0.189772248268127,-0.13442200422287,-0.946261584758759,0.00788551289588213,-0.323306024074554,-0.946261584758759,0.00788551289588213,-0.323306024074554,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.929681599140167,-0.244238391518593,-0.275753021240234,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.929681599140167,-0.244238391518593,-0.275753021240234,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.942750871181488,-0.0864188298583031,0.322106540203094,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.942750871181488,-0.0864188298583031,0.322106540203094,-0.942750871181488,-0.0864188298583031,0.322106540203094,-0.943129301071167,-0.0392970517277718,0.330095231533051,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.986948072910309,-0.157911688089371,-0.0315823368728161,
  385. -0.966767251491547,-0.180777609348297,-0.180777609348297,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.951900541782379,-0.228141441941261,-0.204540595412254,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.914861798286438,-0.086754135787487,-0.394336968660355,-0.951900541782379,-0.228141441941261,-0.204540595412254,-0.914861798286438,-0.086754135787487,-0.394336968660355,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.914861798286438,-0.086754135787487,-0.394336968660355,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.943129301071167,-0.0392970517277718,0.330095231533051,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.943129301071167,-0.0392970517277718,0.330095231533051,
  386. -0.984740495681763,-0.0157558489590883,0.173314332962036,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.943129301071167,-0.0392970517277718,0.330095231533051,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.987625539302826,0.102713048458099,0.118515066802502,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.987625539302826,0.102713048458099,0.118515066802502,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.987625539302826,0.102713048458099,0.118515066802502,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.972496688365936,0.164697006344795,0.164697006344795,-0.972496688365936,0.164697006344795,0.164697006344795,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.987625539302826,0.102713048458099,0.118515066802502,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.987625539302826,0.102713048458099,0.118515066802502,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.987625539302826,0.102713048458099,0.118515066802502,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.971368849277496,0.0631784573197365,-0.229021921753883,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.993760168552399,-0.110417798161507,0.0157739706337452,
  387. -0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.971368849277496,0.0631784573197365,-0.229021921753883,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.971368849277496,0.0631784573197365,-0.229021921753883,-0.945321559906006,-0.196941986680031,-0.259963423013687,-0.945321559906006,-0.196941986680031,-0.259963423013687,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.955544471740723,-0.276397138834,-0.102661795914173,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.926952540874481,-0.125688478350639,-0.353498846292496,-0.93226033449173,-0.30811995267868,0.18961226940155,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.955544471740723,-0.276397138834,-0.102661795914173,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.926952540874481,-0.125688478350639,-0.353498846292496,-0.93226033449173,-0.30811995267868,0.18961226940155,-0.92985475063324,-0.267924249172211,0.252164006233215,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.92985475063324,-0.267924249172211,0.252164006233215,
  388. -0.92985475063324,-0.267924249172211,0.252164006233215,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.945938169956207,-0.141890704631805,-0.291664272546768,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.917738795280457,0.0627513751387596,-0.39219605922699,-0.945938169956207,-0.141890704631805,-0.291664272546768,-0.917738795280457,0.0627513751387596,-0.39219605922699,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.917738795280457,0.0627513751387596,-0.39219605922699,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.976771771907806,-0.173298224806786,0.126035064458847,
  389. -0.967754244804382,-0.196698009967804,0.157358407974243,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.952962756156921,-0.126011595129967,0.275650352239609,-0.952962756156921,-0.126011595129967,0.275650352239609,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.952962756156921,-0.126011595129967,0.275650352239609,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.982729911804199,0.180822312831879,0.0393091961741447,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.982729911804199,0.180822312831879,0.0393091961741447,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.982729911804199,0.180822312831879,0.0393091961741447,
  390. -0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.982729911804199,0.180822312831879,0.0393091961741447,-0.977712452411652,0.118271671235561,-0.173465117812157,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.977712452411652,0.118271671235561,-0.173465117812157,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.977712452411652,0.118271671235561,-0.173465117812157,-0.942082524299622,-0.0942082554101944,-0.321878165006638,-0.942082524299622,-0.0942082554101944,-0.321878165006638,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.963972449302673,-0.188092187047005,-0.188092187047005,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.93066418170929,0.0473219081759453,-0.362801313400269,-0.943362414836884,-0.322315484285355,0.0786135345697403,
  391. -0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.963972449302673,-0.188092187047005,-0.188092187047005,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.93066418170929,0.0473219081759453,-0.362801313400269,-0.943362414836884,-0.322315484285355,0.0786135345697403,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.916002094745636,0.236897110939026,-0.323759347200394,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.916002094745636,0.236897110939026,-0.323759347200394,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.986948072910309,0.0315823368728161,-0.157911688089371,
  392. -0.911353945732117,0.0942779928445816,-0.400681465864182,-0.916002094745636,0.236897110939026,-0.323759347200394,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.956260323524475,-0.181768491864204,0.229186356067657,-0.956260323524475,-0.181768491864204,0.229186356067657,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.956260323524475,-0.181768491864204,0.229186356067657,
  393. -0.973605275154114,-0.0157033111900091,0.227698013186455,-0.973605275154114,-0.0157033111900091,0.227698013186455,-0.974928438663483,0.188695833086967,0.117934897542,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.974928438663483,0.188695833086967,0.117934897542,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.974928438663483,0.188695833086967,0.117934897542,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.974928438663483,0.188695833086967,0.117934897542,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.911353945732117,0.0942779928445816,-0.400681465864182,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.911353945732117,0.0942779928445816,-0.400681465864182,
  394. -0.960868239402771,0.070883721113205,-0.267782926559448,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.944413602352142,0.0629609003663063,-0.322674632072449,-0.944413602352142,0.0629609003663063,-0.322674632072449,-0.911353945732117,0.0942779928445816,-0.400681465864182,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.973005533218384,0.188323646783829,-0.133395910263062,-0.980550527572632,-0.0078444043174386,-0.196110099554062,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.980550527572632,-0.0078444043174386,-0.196110099554062,-0.973005533218384,0.188323646783829,-0.133395910263062,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.949348151683807,0.313834100961685,0.0156917050480843,-0.973005533218384,0.188323646783829,-0.133395910263062,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.949348151683807,0.313834100961685,0.0156917050480843,-0.951900541782379,0.228141441941261,0.204540595412254,-0.949348151683807,0.313834100961685,0.0156917050480843,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.999938011169434,-0.0078735277056694,0.0078735277056694,
  395. -0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.951900541782379,0.228141441941261,0.204540595412254,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.983764171600342,0.110181584954262,0.141662031412125,-0.983764171600342,0.110181584954262,0.141662031412125,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.954978823661804,0.142062962055206,0.260448753833771,-0.951900541782379,0.228141441941261,0.204540595412254,-0.983764171600342,0.110181584954262,0.141662031412125,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.983764171600342,0.110181584954262,0.141662031412125,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.954978823661804,0.142062962055206,0.260448753833771,-0.983764171600342,0.110181584954262,0.141662031412125,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.939809024333954,-0.284311980009079,-0.189541324973106,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.999938011169434,0.0078735277056694,-0.0078735277056694,
  396. -0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.939809024333954,-0.284311980009079,-0.189541324973106,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.939809024333954,-0.284311980009079,-0.189541324973106,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.954978823661804,0.142062962055206,0.260448753833771,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.954978823661804,0.142062962055206,0.260448753833771,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.974356293678284,0.0942925438284874,0.204300507903099,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.974356293678284,0.0942925438284874,0.204300507903099,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.974356293678284,0.0942925438284874,0.204300507903099,
  397. -0.989918947219849,-0.00785649940371513,0.141416981816292,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.973455131053925,0.211962014436722,0.0863548964262009,-0.981456816196442,0.157033085823059,-0.109923161566257,-0.968924522399902,0.0393871739506722,-0.244200497865677,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.981456816196442,0.157033085823059,-0.109923161566257,-0.973455131053925,0.211962014436722,0.0863548964262009,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.951900541782379,0.14947198331356,0.267476171255112,-0.973455131053925,0.211962014436722,0.0863548964262009,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.968924522399902,0.0393871739506722,-0.244200497865677,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.968924522399902,0.0393871739506722,-0.244200497865677,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.951900541782379,0.14947198331356,0.267476171255112,-0.950724482536316,-0.0471433624625206,0.306431859731674,-0.951900541782379,0.14947198331356,0.267476171255112,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.950724482536316,-0.0471433624625206,0.306431859731674,
  398. -0.989522039890289,0.0549734458327293,0.133506938815117,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.950724482536316,-0.0471433624625206,0.306431859731674,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.937909722328186,0.00788159482181072,-0.346790164709091,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,
  399. -0.937909722328186,0.00788159482181072,-0.346790164709091,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.937909722328186,0.00788159482181072,-0.346790164709091,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.974928438663483,-0.117934897542,0.188695833086967,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.974928438663483,-0.117934897542,0.188695833086967,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.974928438663483,-0.117934897542,0.188695833086967,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.978077471256256,-0.189305320382118,0.0867649391293526,
  400. -0.993605554103851,0.0236572753638029,-0.11040061712265,-0.973455131053925,0.227662891149521,-0.0235513336956501,-0.980490148067474,0.0941270589828491,-0.172566279768944,-0.969074904918671,-0.0709079131484032,-0.236359730362892,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.980490148067474,0.0941270589828491,-0.172566279768944,-0.973455131053925,0.227662891149521,-0.0235513336956501,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.950255274772644,0.25916051864624,0.172773689031601,-0.973455131053925,0.227662891149521,-0.0235513336956501,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.969074904918671,-0.0709079131484032,-0.236359730362892,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.969074904918671,-0.0709079131484032,-0.236359730362892,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.950255274772644,0.25916051864624,0.172773689031601,-0.9520183801651,0.094415046274662,0.291113048791885,-0.950255274772644,0.25916051864624,0.172773689031601,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.9520183801651,0.094415046274662,0.291113048791885,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.983216226100922,0.0235971882939339,0.180911779403687,
  401. -0.989461004734039,0.109940111637115,0.0942343771457672,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.9520183801651,0.094415046274662,0.291113048791885,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.975169599056244,-0.0629141703248024,-0.21233531832695,
  402. -0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.973455131053925,-0.0235513336956501,0.227662891149521,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.973455131053925,-0.0235513336956501,0.227662891149521,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.973455131053925,-0.0235513336956501,0.227662891149521,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.967754244804382,-0.196698009967804,-0.157358407974243,-0.981456816196442,-0.109923161566257,-0.157033085823059,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.926695227622986,-0.36910742521286,-0.0706801414489746,
  403. -0.967754244804382,-0.196698009967804,-0.157358407974243,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.926695227622986,-0.36910742521286,-0.0706801414489746,-0.896859645843506,-0.275351643562317,-0.346156388521194,-0.928213536739349,-0.361845970153809,0.0865283831954002,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.926695227622986,-0.36910742521286,-0.0706801414489746,-0.896859645843506,-0.275351643562317,-0.346156388521194,-0.926695227622986,-0.36910742521286,-0.0706801414489746,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.896859645843506,-0.275351643562317,-0.346156388521194,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.73571252822876,-0.166128635406494,-0.656603634357452,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.827464580535889,0.0472836866974831,-0.559523582458496,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.73571252822876,-0.166128635406494,-0.656603634357452,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.827464580535889,0.0472836866974831,-0.559523582458496,-0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.827464580535889,0.0472836866974831,-0.559523582458496,-0.821268796920776,0.0473808944225311,-0.568570673465729,-0.96778416633606,-0.25178125500679,-5.59066692955113e-017,-0.980580687522888,-0.18827149271965,-0.054912518709898,-0.955812692642212,-0.292273312807083,0.0315971150994301,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.96778416633606,-0.25178125500679,-5.59066692955113e-017,-0.955812692642212,-0.292273312807083,0.0315971150994301,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.928989887237549,-0.228311076760292,0.291293442249298,-0.955812692642212,-0.292273312807083,0.0315971150994301,
  404. -0.904027700424194,-0.361611098051071,-0.227972209453583,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.735758602619171,-0.537973999977112,-0.411391884088516,-0.955812692642212,-0.292273312807083,0.0315971150994301,-0.827361881732941,-0.315185457468033,-0.464898556470871,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.735758602619171,-0.537973999977112,-0.411391884088516,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.804572522640228,-0.378622382879257,-0.457502037286758,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.827361881732941,-0.315185457468033,-0.464898556470871,-0.804572522640228,-0.378622382879257,-0.457502037286758,-0.804572522640228,-0.378622382879257,-0.457502037286758,-0.827361881732941,-0.315185457468033,-0.464898556470871,-0.821781396865845,-0.316069781780243,-0.474104672670364,-0.958581686019897,-0.259288489818573,-0.117858409881592,-0.974416494369507,-0.180738538503647,-0.133589342236519,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.958581686019897,-0.259288489818573,-0.117858409881592,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.884085118770599,-0.370999991893768,-0.284170210361481,-0.915203392505646,-0.370815187692642,0.157793685793877,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.884085118770599,-0.370999991893768,-0.284170210361481,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.884085118770599,-0.370999991893768,-0.284170210361481,
  405. -0.894868075847626,-0.251191049814224,-0.368936836719513,-0.722174167633057,-0.321838468313217,-0.61227810382843,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.821524977684021,-0.102690622210503,-0.560848772525787,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.722174167633057,-0.321838468313217,-0.61227810382843,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.799416244029999,-0.156748279929161,-0.579968690872192,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.821524977684021,-0.102690622210503,-0.560848772525787,-0.799416244029999,-0.156748279929161,-0.579968690872192,-0.799416244029999,-0.156748279929161,-0.579968690872192,-0.821524977684021,-0.102690622210503,-0.560848772525787,-0.81851714849472,-0.0944442898035049,-0.566665709018707,-0.967994034290314,-0.165267258882523,-0.188876897096634,-0.981820046901703,-0.0785456076264381,-0.172800332307816,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.967994034290314,-0.165267258882523,-0.188876897096634,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.897721290588379,-0.212618201971054,-0.385862648487091,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.897721290588379,-0.212618201971054,-0.385862648487091,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.897721290588379,-0.212618201971054,-0.385862648487091,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.733375549316406,-0.0473145507276058,-0.678175210952759,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.827259063720703,0.141815826296806,-0.543627381324768,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.733375549316406,-0.0473145507276058,-0.678175210952759,
  406. -0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.805776655673981,0.0947972610592842,-0.584583103656769,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.827259063720703,0.141815826296806,-0.543627381324768,-0.805776655673981,0.0947972610592842,-0.584583103656769,-0.805776655673981,0.0947972610592842,-0.584583103656769,-0.827259063720703,0.141815826296806,-0.543627381324768,-0.82022088766098,0.149848058819771,-0.552071750164032,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.994347870349884,-0.078916497528553,0.0710248425602913,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.927553713321686,0.141491234302521,0.345867514610291,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.939428150653839,-0.339457213878632,-0.047366127371788,-0.927553713321686,0.141491234302521,0.345867514610291,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.934894561767578,-0.16498139500618,0.314250290393829,-0.934894561767578,-0.16498139500618,0.314250290393829,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.939428150653839,-0.339457213878632,-0.047366127371788,-0.909531235694885,0.337153792381287,0.243064388632774,-0.816975116729736,0.526320517063141,0.235665902495384,-0.92054671049118,0.369792282581329,0.125886723399162,-0.909531235694885,0.337153792381287,0.243064388632774,-0.92054671049118,0.369792282581329,0.125886723399162,-0.966707527637482,0.172907039523125,0.188625857234001,-0.913612425327301,-0.212651178240776,0.346542656421661,-0.909531235694885,0.337153792381287,0.243064388632774,-0.966707527637482,0.172907039523125,0.188625857234001,-0.92054671049118,0.369792282581329,0.125886723399162,-0.95899623632431,0.267261236906052,0.0943274945020676,
  407. -0.966707527637482,0.172907039523125,0.188625857234001,-0.913612425327301,-0.212651178240776,0.346542656421661,-0.966707527637482,0.172907039523125,0.188625857234001,-0.992710888385773,-0.0236359722912312,0.118179865181446,-0.966707527637482,0.172907039523125,0.188625857234001,-0.95899623632431,0.267261236906052,0.0943274945020676,-0.992710888385773,-0.0236359722912312,0.118179865181446,-0.999225914478302,-0.0236037615686655,0.0314716808497906,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.999225914478302,-0.0236037615686655,0.0314716808497906,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.927840530872345,-0.212302505970001,0.306659162044525,-0.999225914478302,-0.0236037615686655,0.0314716808497906,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.927840530872345,-0.212302505970001,0.306659162044525,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.934894561767578,-0.3535315990448,0.0314250290393829,-0.934894561767578,-0.3535315990448,0.0314250290393829,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.819100916385651,0.0866356790065765,0.567069828510284,-0.920318841934204,0.102257646620274,0.377566695213318,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.920318841934204,0.102257646620274,0.377566695213318,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.915402948856354,-0.402461647987366,0.00789140537381172,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.920318841934204,0.102257646620274,0.377566695213318,-0.959322392940521,0.0629063844680786,0.275215417146683,-0.965872645378113,-0.0628209784626961,0.251283913850784,
  408. -0.915402948856354,-0.402461647987366,0.00789140537381172,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.993111670017242,-0.110345736145973,0.0394091904163361,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.959322392940521,0.0629063844680786,0.275215417146683,-0.993111670017242,-0.110345736145973,0.0394091904163361,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.994595766067505,-0.102617025375366,0.0157872345298529,-0.998731434345245,-0.039320133626461,-0.031456109136343,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.998731434345245,-0.039320133626461,-0.031456109136343,-0.92761105298996,-0.0550277754664421,0.369472205638886,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.998731434345245,-0.039320133626461,-0.031456109136343,-0.939428150653839,-0.26840803027153,-0.213147565722466,-0.92761105298996,-0.0550277754664421,0.369472205638886,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.935501039028168,-0.298731446266174,0.188672482967377,-0.935501039028168,-0.298731446266174,0.188672482967377,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.939428150653839,-0.26840803027153,-0.213147565722466,-0.911353945732117,0.164986491203308,0.377111971378326,-0.817606031894684,0.330187052488327,0.471695810556412,-0.918615281581879,0.259096622467041,0.29835370182991,-0.911353945732117,0.164986491203308,0.377111971378326,-0.918615281581879,0.259096622467041,0.29835370182991,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.91284841299057,-0.361991614103317,0.188865199685097,-0.911353945732117,0.164986491203308,0.377111971378326,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.918615281581879,0.259096622467041,0.29835370182991,-0.958611309528351,0.180721804499626,0.22000914812088,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.91284841299057,-0.361991614103317,0.188865199685097,
  409. -0.966319620609283,0.0549937970936298,0.251400232315063,-0.992464482784271,-0.0866437256336212,0.0866437256336212,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.958611309528351,0.180721804499626,0.22000914812088,-0.992464482784271,-0.0866437256336212,0.0866437256336212,-0.811779022216797,-0.496525049209595,0.307372629642487,-0.812409937381744,-0.228736788034439,0.536348342895508,-0.693774223327637,-0.480911672115326,0.53609824180603,-0.859280526638031,-0.212849318981171,0.465115159749985,-0.812409937381744,-0.228736788034439,0.536348342895508,-0.811779022216797,-0.496525049209595,0.307372629642487,-0.812409937381744,-0.228736788034439,0.536348342895508,-0.859280526638031,-0.212849318981171,0.465115159749985,-0.864241600036621,0.0157134830951691,0.50283145904541,-0.859280526638031,-0.212849318981171,0.465115159749985,-0.876382529735565,-0.086848720908165,0.47372031211853,-0.864241600036621,0.0157134830951691,0.50283145904541,-0.859280526638031,-0.212849318981171,0.465115159749985,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.876382529735565,-0.086848720908165,0.47372031211853,-0.811779022216797,-0.496525049209595,0.307372629642487,-0.897971928119659,-0.315077871084213,0.307200908660889,-0.859280526638031,-0.212849318981171,0.465115159749985,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.859280526638031,-0.212849318981171,0.465115159749985,-0.897971928119659,-0.315077871084213,0.307200908660889,-0.897971928119659,-0.315077871084213,0.307200908660889,-0.811779022216797,-0.496525049209595,0.307372629642487,-0.867217779159546,-0.457260251045227,0.197094932198524,-0.905624091625214,-0.36224964261055,0.220499783754349,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.897971928119659,-0.315077871084213,0.307200908660889,-0.883095145225525,-0.42577800154686,0.197119444608688,-0.897971928119659,-0.315077871084213,0.307200908660889,-0.867217779159546,-0.457260251045227,0.197094932198524,-0.897971928119659,-0.315077871084213,0.307200908660889,-0.883095145225525,-0.42577800154686,0.197119444608688,
  410. -0.905624091625214,-0.36224964261055,0.220499783754349,-0.81119966506958,-0.527673602104187,-0.252023220062256,-0.811577260494232,-0.575195610523224,0.102432087063789,-0.694833099842072,-0.710624754428864,-0.110541626811028,-0.860163033008575,-0.505049824714661,0.071022629737854,-0.811577260494232,-0.575195610523224,0.102432087063789,-0.81119966506958,-0.527673602104187,-0.252023220062256,-0.811577260494232,-0.575195610523224,0.102432087063789,-0.860163033008575,-0.505049824714661,0.071022629737854,-0.866921484470367,-0.409817397594452,0.283719718456268,-0.860163033008575,-0.505049824714661,0.071022629737854,-0.874829709529877,-0.449236869812012,0.181271031498909,-0.866921484470367,-0.409817397594452,0.283719718456268,-0.860163033008575,-0.505049824714661,0.071022629737854,-0.905905067920685,-0.401749193668365,0.133916392922401,-0.874829709529877,-0.449236869812012,0.181271031498909,-0.81119966506958,-0.527673602104187,-0.252023220062256,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.860163033008575,-0.505049824714661,0.071022629737854,-0.905905067920685,-0.401749193668365,0.133916392922401,-0.860163033008575,-0.505049824714661,0.071022629737854,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.81119966506958,-0.527673602104187,-0.252023220062256,-0.866007506847382,-0.41725817322731,-0.275547832250595,-0.907511472702026,-0.378787398338318,-0.181502297520638,-0.905905067920685,-0.401749193668365,0.133916392922401,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.880798280239105,-0.401077777147293,-0.251656651496887,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.866007506847382,-0.41725817322731,-0.275547832250595,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.880798280239105,-0.401077777147293,-0.251656651496887,-0.907511472702026,-0.378787398338318,-0.181502297520638,-0.812106966972351,-0.583455502986908,0.00788453407585621,-0.810621738433838,-0.472206860780716,0.34628501534462,-0.694789826869965,-0.686894416809082,0.213174134492874,
  411. -0.860136270523071,-0.418231397867203,0.29197284579277,-0.810621738433838,-0.472206860780716,0.34628501534462,-0.812106966972351,-0.583455502986908,0.00788453407585621,-0.810621738433838,-0.472206860780716,0.34628501534462,-0.860136270523071,-0.418231397867203,0.29197284579277,-0.864321768283844,-0.243581593036652,0.440018355846405,-0.860136270523071,-0.418231397867203,0.29197284579277,-0.874313950538635,-0.322944790124893,0.362328290939331,-0.864321768283844,-0.243581593036652,0.440018355846405,-0.860136270523071,-0.418231397867203,0.29197284579277,-0.905961275100708,-0.299361139535904,0.299361139535904,-0.874313950538635,-0.322944790124893,0.362328290939331,-0.812106966972351,-0.583455502986908,0.00788453407585621,-0.898976564407349,-0.425831019878387,0.102514870464802,-0.860136270523071,-0.418231397867203,0.29197284579277,-0.905961275100708,-0.299361139535904,0.299361139535904,-0.860136270523071,-0.418231397867203,0.29197284579277,-0.898976564407349,-0.425831019878387,0.102514870464802,-0.898976564407349,-0.425831019878387,0.102514870464802,-0.812106966972351,-0.583455502986908,0.00788453407585621,-0.86603444814682,-0.496001541614532,-0.062984324991703,-0.905147194862366,-0.425025671720505,0.00787084549665451,-0.905961275100708,-0.299361139535904,0.299361139535904,-0.898976564407349,-0.425831019878387,0.102514870464802,-0.880498766899109,-0.471695780754089,-0.0471695773303509,-0.898976564407349,-0.425831019878387,0.102514870464802,-0.86603444814682,-0.496001541614532,-0.062984324991703,-0.898976564407349,-0.425831019878387,0.102514870464802,-0.880498766899109,-0.471695780754089,-0.0471695773303509,-0.905147194862366,-0.425025671720505,0.00787084549665451,-0.796412110328674,-0.465230822563171,0.386378139257431,-0.927840530872345,-0.306659162044525,0.212302505970001,-0.855513989925385,-0.502320110797882,0.125580027699471,-0.796412110328674,-0.465230822563171,0.386378139257431,-0.892813503742218,-0.165921092033386,0.418753236532211,-0.927840530872345,-0.306659162044525,0.212302505970001,-0.855513989925385,-0.502320110797882,0.125580027699471,
  412. -0.927840530872345,-0.306659162044525,0.212302505970001,-0.956170737743378,-0.292382806539536,-0.0158044751733541,-0.927840530872345,-0.306659162044525,0.212302505970001,-0.892813503742218,-0.165921092033386,0.418753236532211,-0.981456816196442,-0.109923161566257,0.157033085823059,-0.956170737743378,-0.292382806539536,-0.0158044751733541,-0.927840530872345,-0.306659162044525,0.212302505970001,-0.981456816196442,-0.109923161566257,0.157033085823059,-0.88866251707077,-0.173013955354691,0.424670577049255,-0.925839126110077,-0.251075029373169,0.282459378242493,-0.857842445373535,-0.456466615200043,0.236103430390358,-0.88866251707077,-0.173013955354691,0.424670577049255,-0.970038890838623,0.0552054643630981,0.23659485578537,-0.925839126110077,-0.251075029373169,0.282459378242493,-0.857842445373535,-0.456466615200043,0.236103430390358,-0.925839126110077,-0.251075029373169,0.282459378242493,-0.951517939567566,-0.306687593460083,0.0235913544893265,-0.925839126110077,-0.251075029373169,0.282459378242493,-0.970038890838623,0.0552054643630981,0.23659485578537,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.925839126110077,-0.251075029373169,0.282459378242493,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.951517939567566,-0.306687593460083,0.0235913544893265,-0.882519245147705,-0.244268715381622,0.401861429214478,-0.942750871181488,-0.227831438183784,0.243543967604637,-0.919522762298584,-0.385099291801453,0.0785916894674301,-0.882519245147705,-0.244268715381622,0.401861429214478,-0.924129128456116,0.0473912358283997,0.379129886627197,-0.942750871181488,-0.227831438183784,0.243543967604637,-0.919522762298584,-0.385099291801453,0.0785916894674301,-0.942750871181488,-0.227831438183784,0.243543967604637,-0.992033720016479,-0.125972539186478,-2.79715226950645e-017,-0.942750871181488,-0.227831438183784,0.243543967604637,-0.924129128456116,0.0473912358283997,0.379129886627197,-0.987286627292633,0.0710846334695816,0.142169266939163,-0.942750871181488,-0.227831438183784,0.243543967604637,-0.987286627292633,0.0710846334695816,0.142169266939163,
  413. -0.992033720016479,-0.125972539186478,-2.79715226950645e-017,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.986671268939972,0.0631469637155533,0.149974033236504,-0.989522039890289,0.133506938815117,-0.0549734458327293,-0.935038864612579,0.0785746946930885,0.345728695392609,-0.986671268939972,0.0631469637155533,0.149974033236504,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.991757094860077,-0.0236132647842169,-0.125937417149544,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.989522039890289,0.133506938815117,-0.0549734458327293,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.935038864612579,0.0785746946930885,0.345728695392609,-0.991757094860077,-0.0236132647842169,-0.125937417149544,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.976771771907806,-0.126035064458847,0.173298224806786,-0.935038864612579,0.0785746946930885,0.345728695392609,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.991757094860077,-0.0236132647842169,-0.125937417149544,-0.976771771907806,-0.126035064458847,0.173298224806786,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.866786956787109,0.260036081075668,0.425513625144959,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.891839742660522,-0.0473543219268322,0.449866056442261,-0.866786956787109,0.260036081075668,0.425513625144959,-0.966528534889221,0.165017053484917,0.196448892354965,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.891839742660522,-0.0473543219268322,0.449866056442261,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.966528534889221,0.165017053484917,0.196448892354965,
  414. -0.979510545730591,-0.181683406233788,0.0868920683860779,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.966528534889221,0.165017053484917,0.196448892354965,-0.98869913816452,0.102008640766144,0.109855458140373,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.98869913816452,0.102008640766144,0.109855458140373,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.951517939567566,-0.0235913544893265,0.306687593460083,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.919551074504852,-0.314376443624496,0.235782340168953,-0.951517939567566,-0.0235913544893265,0.306687593460083,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.919551074504852,-0.314376443624496,0.235782340168953,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.843959987163544,-0.504798471927643,-0.181411951780319,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.843959987163544,-0.504798471927643,-0.181411951780319,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.894895553588867,-0.345398306846619,-0.282598584890366,-0.843959987163544,-0.504798471927643,-0.181411951780319,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.894895553588867,-0.345398306846619,-0.282598584890366,
  415. -0.987132668495178,0.0552794300019741,0.150044173002243,-0.970763623714447,0.110493414103985,0.213094443082809,-0.980459988117218,0.196091994643211,0.0156873594969511,-0.905624091625214,0.110249891877174,0.40949958562851,-0.970763623714447,0.110493414103985,0.213094443082809,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.980459988117218,0.196091994643211,0.0156873594969511,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.905624091625214,0.110249891877174,0.40949958562851,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.971368849277496,-0.0868703871965408,0.221124619245529,-0.905624091625214,0.110249891877174,0.40949958562851,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.923064351081848,-0.347135335206985,-0.165678218007088,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.971368849277496,-0.0868703871965408,0.221124619245529,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.923064351081848,-0.347135335206985,-0.165678218007088,-0.922117829322815,0.212796419858933,0.323135316371918,-0.954651832580566,-0.252469897270203,0.157793685793877,-0.914861798286438,-0.086754135787487,0.394336968660355,-0.922117829322815,0.212796419858933,0.323135316371918,-0.990806221961975,0.0786354094743729,0.110089585185051,-0.954651832580566,-0.252469897270203,0.157793685793877,-0.914861798286438,-0.086754135787487,0.394336968660355,-0.954651832580566,-0.252469897270203,0.157793685793877,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.954651832580566,-0.252469897270203,0.157793685793877,-0.990806221961975,0.0786354094743729,0.110089585185051,-0.957665741443634,-0.282589882612228,0.0549480319023132,-0.954651832580566,-0.252469897270203,0.157793685793877,
  416. -0.957665741443634,-0.282589882612228,0.0549480319023132,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.990806221961975,0.0786354094743729,0.110089585185051,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.957665741443634,-0.282589882612228,0.0549480319023132,-0.939047932624817,-0.339319825172424,-0.0552381165325642,-0.891284704208374,-0.441698610782623,0.102537177503109,-0.957665741443634,-0.282589882612228,0.0549480319023132,-0.957665741443634,-0.282589882612228,0.0549480319023132,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.939047932624817,-0.339319825172424,-0.0552381165325642,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.99422413110733,-0.102578677237034,0.0315626710653305,-0.991910755634308,0.0629784613847733,-0.110212303698063,-0.952992379665375,-0.267782956361771,0.141767457127571,-0.99422413110733,-0.102578677237034,0.0315626710653305,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.967305243015289,-0.0314570814371109,-0.251656651496887,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.991910755634308,0.0629784613847733,-0.110212303698063,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.952992379665375,-0.267782956361771,0.141767457127571,-0.967305243015289,-0.0314570814371109,-0.251656651496887,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.875074446201324,-0.47301322221756,-0.102486193180084,-0.952992379665375,-0.267782956361771,0.141767457127571,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.815441787242889,-0.274427503347397,-0.509651124477386,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.967305243015289,-0.0314570814371109,-0.251656651496887,-0.875074446201324,-0.47301322221756,-0.102486193180084,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.815441787242889,-0.274427503347397,-0.509651124477386,-0.858880341053009,0.126074180006981,0.496417075395584,
  417. -0.897109568119049,-0.0314775295555592,0.440685391426086,-0.817884087562561,-0.212335303425789,0.534770369529724,-0.858880341053009,0.126074180006981,0.496417075395584,-0.958611309528351,0.180721804499626,0.22000914812088,-0.897109568119049,-0.0314775295555592,0.440685391426086,-0.817884087562561,-0.212335303425789,0.534770369529724,-0.897109568119049,-0.0314775295555592,0.440685391426086,-0.931446731090546,-0.236808508634567,0.276276558637619,-0.897109568119049,-0.0314775295555592,0.440685391426086,-0.958611309528351,0.180721804499626,0.22000914812088,-0.989522039890289,-0.0549734458327293,0.133506938815117,-0.897109568119049,-0.0314775295555592,0.440685391426086,-0.989522039890289,-0.0549734458327293,0.133506938815117,-0.931446731090546,-0.236808508634567,0.276276558637619,-0.739241421222687,-0.495449066162109,0.45612770318985,-0.886990964412689,-0.392473876476288,0.243333801627159,-0.777769446372986,-0.597075581550598,0.196406424045563,-0.739241421222687,-0.495449066162109,0.45612770318985,-0.878762543201447,-0.219690635800362,0.423689097166061,-0.886990964412689,-0.392473876476288,0.243333801627159,-0.777769446372986,-0.597075581550598,0.196406424045563,-0.886990964412689,-0.392473876476288,0.243333801627159,-0.904922902584076,-0.424920320510864,0.0236066840589046,-0.886990964412689,-0.392473876476288,0.243333801627159,-0.878762543201447,-0.219690635800362,0.423689097166061,-0.961913108825684,-0.228651478886604,0.149806141853333,-0.904922902584076,-0.424920320510864,0.0236066840589046,-0.886990964412689,-0.392473876476288,0.243333801627159,-0.961913108825684,-0.228651478886604,0.149806141853333,-0.851847350597382,-0.165636971592903,0.496910959482193,-0.891478955745697,-0.26034340262413,0.370792120695114,-0.810621738433838,-0.472206860780716,0.34628501534462,-0.851847350597382,-0.165636971592903,0.496910959482193,-0.953791439533234,0.0236477218568325,0.299537807703018,-0.891478955745697,-0.26034340262413,0.370792120695114,-0.810621738433838,-0.472206860780716,0.34628501534462,-0.891478955745697,-0.26034340262413,0.370792120695114,
  418. -0.927840530872345,-0.353837490081787,0.117945834994316,-0.891478955745697,-0.26034340262413,0.370792120695114,-0.953791439533234,0.0236477218568325,0.299537807703018,-0.987625539302826,-0.118515066802502,0.102713048458099,-0.891478955745697,-0.26034340262413,0.370792120695114,-0.987625539302826,-0.118515066802502,0.102713048458099,-0.927840530872345,-0.353837490081787,0.117945834994316,-0.787890195846558,-0.1733358502388,0.590917706489563,-0.829010546207428,-0.284232169389725,0.481615632772446,-0.739424347877502,-0.487705409526825,0.464106738567352,-0.787890195846558,-0.1733358502388,0.590917706489563,-0.922347009181976,-0.00788330752402544,0.386282086372375,-0.829010546207428,-0.284232169389725,0.481615632772446,-0.739424347877502,-0.487705409526825,0.464106738567352,-0.829010546207428,-0.284232169389725,0.481615632772446,-0.880798280239105,-0.401077777147293,0.251656651496887,-0.829010546207428,-0.284232169389725,0.481615632772446,-0.922347009181976,-0.00788330752402544,0.386282086372375,-0.963171243667603,-0.173686623573303,0.205265983939171,-0.829010546207428,-0.284232169389725,0.481615632772446,-0.963171243667603,-0.173686623573303,0.205265983939171,-0.880798280239105,-0.401077777147293,0.251656651496887,-0.776142418384552,-0.39199110865593,0.493908822536469,-0.829838633537292,-0.442580580711365,0.339838653802872,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.776142418384552,-0.39199110865593,0.493908822536469,-0.913612425327301,-0.149643421173096,0.378046542406082,-0.829838633537292,-0.442580580711365,0.339838653802872,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.829838633537292,-0.442580580711365,0.339838653802872,-0.889488101005554,-0.448679834604263,0.0865873396396637,-0.829838633537292,-0.442580580711365,0.339838653802872,-0.913612425327301,-0.149643421173096,0.378046542406082,-0.96362179517746,-0.221159100532532,0.150072246789932,-0.829838633537292,-0.442580580711365,0.339838653802872,-0.96362179517746,-0.221159100532532,0.150072246789932,-0.889488101005554,-0.448679834604263,0.0865873396396637,
  419. -0.725647747516632,-0.62311053276062,0.291836589574814,-0.753573060035706,-0.643676996231079,0.133445218205452,-0.628519952297211,-0.77779346704483,-1.7270484310324e-016,-0.725647747516632,-0.62311053276062,0.291836589574814,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.753573060035706,-0.643676996231079,0.133445218205452,-0.628519952297211,-0.77779346704483,-1.7270484310324e-016,-0.753573060035706,-0.643676996231079,0.133445218205452,-0.796436846256256,-0.591413497924805,-0.126168221235275,-0.753573060035706,-0.643676996231079,0.133445218205452,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.912396430969238,-0.409005284309387,-0.0157309733331203,-0.753573060035706,-0.643676996231079,0.133445218205452,-0.912396430969238,-0.409005284309387,-0.0157309733331203,-0.796436846256256,-0.591413497924805,-0.126168221235275,-0.614859819412231,0.0236484538763762,0.788281798362732,-0.800301671028137,-0.0627687573432922,0.596303224563599,-0.669748246669769,-0.244261130690575,0.701265871524811,-0.614859819412231,0.0236484538763762,0.788281798362732,-0.790445923805237,0.181802570819855,0.584930002689362,-0.800301671028137,-0.0627687573432922,0.596303224563599,-0.669748246669769,-0.244261130690575,0.701265871524811,-0.800301671028137,-0.0627687573432922,0.596303224563599,-0.836801528930664,-0.260513663291931,0.481555610895157,-0.800301671028137,-0.0627687573432922,0.596303224563599,-0.790445923805237,0.181802570819855,0.584930002689362,-0.904922902584076,-0.0236066840589046,0.424920320510864,-0.836801528930664,-0.260513663291931,0.481555610895157,-0.800301671028137,-0.0627687573432922,0.596303224563599,-0.904922902584076,-0.0236066840589046,0.424920320510864,-0.741722702980042,-0.591800034046173,0.315626680850983,-0.813017129898071,-0.560429275035858,0.157867416739464,-0.7450350522995,-0.666610300540924,-0.0235274229198694,-0.741722702980042,-0.591800034046173,0.315626680850983,-0.876956760883331,-0.331821471452713,0.347622513771057,-0.813017129898071,-0.560429275035858,0.157867416739464,-0.7450350522995,-0.666610300540924,-0.0235274229198694,
  420. -0.813017129898071,-0.560429275035858,0.157867416739464,-0.899284183979034,-0.433865189552307,-0.0552192069590092,-0.813017129898071,-0.560429275035858,0.157867416739464,-0.876956760883331,-0.331821471452713,0.347622513771057,-0.953880250453949,-0.275915741920471,0.118249617516994,-0.813017129898071,-0.560429275035858,0.157867416739464,-0.953880250453949,-0.275915741920471,0.118249617516994,-0.899284183979034,-0.433865189552307,-0.0552192069590092,-0.731920540332794,0.0787011310458183,0.676829695701599,-0.889543175697327,-0.0157441273331642,0.456579685211182,-0.786792039871216,-0.180962175130844,0.590094029903412,-0.731920540332794,0.0787011310458183,0.676829695701599,-0.865953862667084,0.23616923391819,0.440849214792252,-0.889543175697327,-0.0157441273331642,0.456579685211182,-0.786792039871216,-0.180962175130844,0.590094029903412,-0.889543175697327,-0.0157441273331642,0.456579685211182,-0.911100924015045,-0.21206659078598,0.353444337844849,-0.889543175697327,-0.0157441273331642,0.456579685211182,-0.865953862667084,0.23616923391819,0.440849214792252,-0.961106777191162,0.0157558489590883,0.275727331638336,-0.911100924015045,-0.21206659078598,0.353444337844849,-0.889543175697327,-0.0157441273331642,0.456579685211182,-0.961106777191162,0.0157558489590883,0.275727331638336,-0.951900541782379,0.204540595412254,-0.228141441941261,-0.914037883281708,-0.0551574602723122,-0.401861488819122,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.951900541782379,0.204540595412254,-0.228141441941261,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.996914327144623,1.74298783747682e-017,-0.0784971937537193,-0.914037883281708,-0.0551574602723122,-0.401861488819122,-0.884498476982117,-0.386968076229095,-0.260611146688461,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.996914327144623,1.74298783747682e-017,-0.0784971937537193,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.884498476982117,-0.386968076229095,-0.260611146688461,
  421. -0.96239185333252,-0.244542196393013,-0.118326872587204,-0.996914327144623,1.74298783747682e-017,-0.0784971937537193,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.991265952587128,-0.125875040888786,-0.0393359512090683,-0.884498476982117,-0.386968076229095,-0.260611146688461,-0.921031475067139,-0.377859055995941,-0.0944647639989853,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.921031475067139,-0.377859055995941,-0.0944647639989853,-0.991265952587128,-0.125875040888786,-0.0393359512090683,-0.631332039833069,-0.757598459720612,0.165724650025368,-0.817580759525299,-0.573878824710846,0.0471681207418442,-0.700006663799286,-0.707871913909912,-0.0943829268217087,-0.631332039833069,-0.757598459720612,0.165724650025368,-0.803149580955505,-0.519685029983521,0.291338592767715,-0.817580759525299,-0.573878824710846,0.0471681207418442,-0.700006663799286,-0.707871913909912,-0.0943829268217087,-0.817580759525299,-0.573878824710846,0.0471681207418442,-0.855066359043121,-0.494212657213211,-0.156892910599709,-0.817580759525299,-0.573878824710846,0.0471681207418442,-0.803149580955505,-0.519685029983521,0.291338592767715,-0.916002035140991,-0.39482843875885,0.0710691213607788,-0.855066359043121,-0.494212657213211,-0.156892910599709,-0.817580759525299,-0.573878824710846,0.0471681207418442,-0.916002035140991,-0.39482843875885,0.0710691213607788,-0.755811810493469,-0.621970117092133,0.204699024558067,-0.784078598022461,-0.619422137737274,0.0392039306461811,-0.670518815517426,-0.733626484870911,-0.110438399016857,-0.755811810493469,-0.621970117092133,0.204699024558067,-0.912820041179657,-0.369849503040314,0.173121050000191,-0.784078598022461,-0.619422137737274,0.0392039306461811,-0.670518815517426,-0.733626484870911,-0.110438399016857,-0.784078598022461,-0.619422137737274,0.0392039306461811,-0.828623235225677,-0.520848870277405,-0.205182880163193,-0.784078598022461,-0.619422137737274,0.0392039306461811,-0.912820041179657,-0.369849503040314,0.173121050000191,-0.931998550891876,-0.355423212051392,-0.0710846334695816,
  422. -0.784078598022461,-0.619422137737274,0.0392039306461811,-0.931998550891876,-0.355423212051392,-0.0710846334695816,-0.828623235225677,-0.520848870277405,-0.205182880163193,-0.708310186862946,-0.653219401836395,0.267583847045898,-0.76290500164032,-0.6370649933815,0.110109999775887,-0.661089479923248,-0.747660756111145,-0.0629609078168869,-0.708310186862946,-0.653219401836395,0.267583847045898,-0.870755672454834,-0.407921552658081,0.274562567472458,-0.76290500164032,-0.6370649933815,0.110109999775887,-0.661089479923248,-0.747660756111145,-0.0629609078168869,-0.76290500164032,-0.6370649933815,0.110109999775887,-0.83814013004303,-0.532649755477905,-0.117496281862259,-0.76290500164032,-0.6370649933815,0.110109999775887,-0.870755672454834,-0.407921552658081,0.274562567472458,-0.928558349609375,-0.369849503040314,0.031476553529501,-0.76290500164032,-0.6370649933815,0.110109999775887,-0.928558349609375,-0.369849503040314,0.031476553529501,-0.83814013004303,-0.532649755477905,-0.117496281862259,-0.676097333431244,-0.566034972667694,-0.471695870161057,-0.724140107631683,-0.425038784742355,-0.543105065822601,-0.614173233509064,-0.330708652734756,-0.716535449028015,-0.676097333431244,-0.566034972667694,-0.471695870161057,-0.854991495609283,-0.44332891702652,-0.269163966178894,-0.724140107631683,-0.425038784742355,-0.543105065822601,-0.614173233509064,-0.330708652734756,-0.716535449028015,-0.724140107631683,-0.425038784742355,-0.543105065822601,-0.795546889305115,-0.165410742163658,-0.582875967025757,-0.724140107631683,-0.425038784742355,-0.543105065822601,-0.854991495609283,-0.44332891702652,-0.269163966178894,-0.901559114456177,-0.221435561776161,-0.371695429086685,-0.724140107631683,-0.425038784742355,-0.543105065822601,-0.901559114456177,-0.221435561776161,-0.371695429086685,-0.795546889305115,-0.165410742163658,-0.582875967025757,-0.615184843540192,-0.741376638412476,-0.268157511949539,-0.809394299983978,-0.53435742855072,-0.243604123592377,-0.694963157176971,-0.5607088804245,-0.450146585702896,-0.615184843540192,-0.741376638412476,-0.268157511949539,
  423. -0.781419336795807,-0.623556852340698,-0.0236793737858534,-0.809394299983978,-0.53435742855072,-0.243604123592377,-0.694963157176971,-0.5607088804245,-0.450146585702896,-0.809394299983978,-0.53435742855072,-0.243604123592377,-0.858480632305145,-0.346542656421661,-0.37804651260376,-0.809394299983978,-0.53435742855072,-0.243604123592377,-0.781419336795807,-0.623556852340698,-0.0236793737858534,-0.905905067920685,-0.401749193668365,-0.133916392922401,-0.858480632305145,-0.346542656421661,-0.37804651260376,-0.809394299983978,-0.53435742855072,-0.243604123592377,-0.905905067920685,-0.401749193668365,-0.133916392922401,-0.9539395570755,0.0157675947993994,-0.299584299325943,-0.91563093662262,-0.292054712772369,-0.276267945766449,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.9539395570755,0.0157675947993994,-0.299584299325943,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.996914327144623,-0.0470983162522316,-0.0627977550029755,-0.91563093662262,-0.292054712772369,-0.276267945766449,-0.884305477142334,-0.465839475393295,0.0315823368728161,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.996914327144623,-0.0470983162522316,-0.0627977550029755,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.884305477142334,-0.465839475393295,0.0315823368728161,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.996914327144623,-0.0470983162522316,-0.0627977550029755,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.990928769111633,-0.125832229852676,0.0471870861947536,-0.884305477142334,-0.465839475393295,0.0315823368728161,-0.920518219470978,-0.354045480489731,0.165221214294434,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.920518219470978,-0.354045480489731,0.165221214294434,-0.990928769111633,-0.125832229852676,0.0471870861947536,-0.63146960735321,-0.481495589017868,0.607789516448975,-0.816446244716644,-0.416073590517044,0.400372684001923,
  424. -0.698948085308075,-0.612561225891113,0.36910742521286,-0.63146960735321,-0.481495589017868,0.607789516448975,-0.800671339035034,-0.219792142510414,0.557330071926117,-0.816446244716644,-0.416073590517044,0.400372684001923,-0.698948085308075,-0.612561225891113,0.36910742521286,-0.816446244716644,-0.416073590517044,0.400372684001923,-0.856966972351074,-0.479587018489838,0.188689976930618,-0.816446244716644,-0.416073590517044,0.400372684001923,-0.800671339035034,-0.219792142510414,0.557330071926117,-0.913272678852081,-0.267683357000351,0.307048588991165,-0.856966972351074,-0.479587018489838,0.188689976930618,-0.816446244716644,-0.416073590517044,0.400372684001923,-0.913272678852081,-0.267683357000351,0.307048588991165,-0.753503382205963,-0.361053735017776,0.549429535865784,-0.786329865455627,-0.456071317195892,0.416754841804504,-0.670102000236511,-0.638567805290222,0.378410547971725,-0.753503382205963,-0.361053735017776,0.549429535865784,-0.911550879478455,-0.180738538503647,0.369335293769836,-0.786329865455627,-0.456071317195892,0.416754841804504,-0.670102000236511,-0.638567805290222,0.378410547971725,-0.786329865455627,-0.456071317195892,0.416754841804504,-0.827773153781891,-0.536081612110138,0.165554612874985,-0.786329865455627,-0.456071317195892,0.416754841804504,-0.911550879478455,-0.180738538503647,0.369335293769836,-0.931533813476563,-0.323668509721756,0.165781438350677,-0.786329865455627,-0.456071317195892,0.416754841804504,-0.931533813476563,-0.323668509721756,0.165781438350677,-0.827773153781891,-0.536081612110138,0.165554612874985,-0.705432295799255,-0.344878017902374,0.619212746620178,-0.762834191322327,-0.424670577049255,0.487584739923477,-0.661889433860779,-0.622491240501404,0.417620718479156,-0.705432295799255,-0.344878017902374,0.619212746620178,-0.873095989227295,-0.149448871612549,0.464078038930893,-0.762834191322327,-0.424670577049255,0.487584739923477,-0.661889433860779,-0.622491240501404,0.417620718479156,-0.762834191322327,-0.424670577049255,0.487584739923477,-0.840853095054626,-0.487223267555237,0.235753208398819,
  425. -0.762834191322327,-0.424670577049255,0.487584739923477,-0.873095989227295,-0.149448871612549,0.464078038930893,-0.92798388004303,-0.267385184764862,0.259520918130875,-0.762834191322327,-0.424670577049255,0.487584739923477,-0.92798388004303,-0.267385184764862,0.259520918130875,-0.840853095054626,-0.487223267555237,0.235753208398819,-0.674930334091187,-0.73771458864212,-0.0156960561871529,-0.725309431552887,-0.670122802257538,-0.157675951719284,-0.612655699253082,-0.70691043138504,-0.35345521569252,-0.674930334091187,-0.73771458864212,-0.0156960561871529,-0.851132810115814,-0.520136713981628,0.070927731692791,-0.725309431552887,-0.670122802257538,-0.157675951719284,-0.612655699253082,-0.70691043138504,-0.35345521569252,-0.725309431552887,-0.670122802257538,-0.157675951719284,-0.795843243598938,-0.496417075395584,-0.346704006195068,-0.725309431552887,-0.670122802257538,-0.157675951719284,-0.851132810115814,-0.520136713981628,0.070927731692791,-0.901333749294281,-0.403228253126144,-0.158128723502159,-0.725309431552887,-0.670122802257538,-0.157675951719284,-0.901333749294281,-0.403228253126144,-0.158128723502159,-0.795843243598938,-0.496417075395584,-0.346704006195068,-0.612863719463348,-0.746436595916748,0.259288489818573,-0.807700276374817,-0.572447836399078,0.141151502728462,-0.695158243179321,-0.718856811523438,-1.59618276712389e-016,-0.612863719463348,-0.746436595916748,0.259288489818573,-0.77779346704483,-0.502815961837769,0.377111971378326,-0.807700276374817,-0.572447836399078,0.141151502728462,-0.695158243179321,-0.718856811523438,-1.59618276712389e-016,-0.807700276374817,-0.572447836399078,0.141151502728462,-0.856728792190552,-0.510893285274506,-0.0707390680909157,-0.807700276374817,-0.572447836399078,0.141151502728462,-0.77779346704483,-0.502815961837769,0.377111971378326,-0.90388810634613,-0.400854706764221,0.149338036775589,-0.856728792190552,-0.510893285274506,-0.0707390680909157,-0.807700276374817,-0.572447836399078,0.141151502728462,-0.90388810634613,-0.400854706764221,0.149338036775589,-0.79338401556015,-0.581291317939758,-0.180671617388725,
  426. -0.930056929588318,-0.338919043540955,-0.141873091459274,-0.856120705604553,-0.377007275819778,-0.353444337844849,-0.79338401556015,-0.581291317939758,-0.180671617388725,-0.892618477344513,-0.44235959649086,0.0868920683860779,-0.930056929588318,-0.338919043540955,-0.141873091459274,-0.856120705604553,-0.377007275819778,-0.353444337844849,-0.930056929588318,-0.338919043540955,-0.141873091459274,-0.956918001174927,-0.142351418733597,-0.253069221973419,-0.930056929588318,-0.338919043540955,-0.141873091459274,-0.892618477344513,-0.44235959649086,0.0868920683860779,-0.982032120227814,-0.188550174236298,-0.00785625725984573,-0.956918001174927,-0.142351418733597,-0.253069221973419,-0.930056929588318,-0.338919043540955,-0.141873091459274,-0.982032120227814,-0.188550174236298,-0.00785625725984573,-0.889488101005554,-0.448679834604263,0.0865873396396637,-0.927181422710419,-0.369301080703735,-0.0628597587347031,-0.855883121490479,-0.447571903467178,-0.259120583534241,-0.889488101005554,-0.448679834604263,0.0865873396396637,-0.969466149806976,-0.173400446772575,0.173400446772575,-0.927181422710419,-0.369301080703735,-0.0628597587347031,-0.855883121490479,-0.447571903467178,-0.259120583534241,-0.927181422710419,-0.369301080703735,-0.0628597587347031,-0.952696859836578,-0.181091129779816,-0.244079351425171,-0.927181422710419,-0.369301080703735,-0.0628597587347031,-0.969466149806976,-0.173400446772575,0.173400446772575,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.927181422710419,-0.369301080703735,-0.0628597587347031,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.952696859836578,-0.181091129779816,-0.244079351425171,-0.881452679634094,-0.472206801176071,0.00787011347711086,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.918955326080322,-0.274901151657104,-0.282755464315414,-0.881452679634094,-0.472206801176071,0.00787011347711086,-0.924417614936829,-0.292337208986282,0.244931176304817,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.918955326080322,-0.274901151657104,-0.282755464315414,
  427. -0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.924417614936829,-0.292337208986282,0.244931176304817,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.992218255996704,-0.0708727315068245,-0.102371722459793,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.986425518989563,-0.0946968495845795,0.134153857827187,-0.989918947219849,0.117847494781017,0.0785649940371513,-0.936514437198639,-0.243965968489647,0.251835823059082,-0.986425518989563,-0.0946968495845795,0.134153857827187,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.992464482784271,0.0866437256336212,-0.0866437256336212,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.989918947219849,0.117847494781017,0.0785649940371513,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.936514437198639,-0.243965968489647,0.251835823059082,-0.992464482784271,0.0866437256336212,-0.0866437256336212,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.977074861526489,-0.212750166654587,-0.00787963625043631,-0.936514437198639,-0.243965968489647,0.251835823059082,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.887428462505341,-0.0706801414489746,-0.455494254827499,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.992464482784271,0.0866437256336212,-0.0866437256336212,-0.977074861526489,-0.212750166654587,-0.00787963625043631,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.887428462505341,-0.0706801414489746,-0.455494254827499,-0.86603444814682,-0.220445141196251,0.448763310909271,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.892062127590179,-0.402612119913101,0.205253228545189,-0.86603444814682,-0.220445141196251,0.448763310909271,
  428. -0.965366780757904,-0.070636585354805,0.251152336597443,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.892062127590179,-0.402612119913101,0.205253228545189,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.965366780757904,-0.070636585354805,0.251152336597443,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.965366780757904,-0.070636585354805,0.251152336597443,-0.989186525344849,-0.0392534323036671,0.141312345862389,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.975894033908844,-0.0944413542747498,-0.196752816438675,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.989186525344849,-0.0392534323036671,0.141312345862389,-0.975894033908844,-0.0944413542747498,-0.196752816438675,-0.951900541782379,-0.267476171255112,0.14947198331356,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.918615281581879,-0.369016408920288,-0.141325429081917,-0.951900541782379,-0.267476171255112,0.14947198331356,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.918615281581879,-0.369016408920288,-0.141325429081917,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.845117330551147,-0.118474394083023,-0.521287322044373,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.845117330551147,-0.118474394083023,-0.521287322044373,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,
  429. -0.994688630104065,0.00789435394108295,-0.102626599371433,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.896554529666901,0.0471870787441731,-0.440412759780884,-0.845117330551147,-0.118474394083023,-0.521287322044373,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.994688630104065,0.00789435394108295,-0.102626599371433,-0.896554529666901,0.0471870787441731,-0.440412759780884,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.969888091087341,-0.118279039859772,0.212902277708054,-0.980490148067474,0.0941270589828491,0.172566279768944,-0.905736565589905,-0.283534914255142,0.315038800239563,-0.969888091087341,-0.118279039859772,0.212902277708054,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.980490148067474,0.0941270589828491,0.172566279768944,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.905736565589905,-0.283534914255142,0.315038800239563,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.970431208610535,-0.236690536141396,0.047338105738163,-0.905736565589905,-0.283534914255142,0.315038800239563,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.924129128456116,-0.0473912358283997,-0.379129886627197,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.970431208610535,-0.236690536141396,0.047338105738163,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.924129128456116,-0.0473912358283997,-0.379129886627197,-0.921688616275787,-0.157553613185883,0.354495644569397,-0.955008566379547,-0.268349498510361,-0.126282125711441,-0.914662778377533,-0.378481179475784,0.141930431127548,-0.921688616275787,-0.157553613185883,0.354495644569397,
  430. -0.990928769111633,-0.0471870861947536,0.125832229852676,-0.955008566379547,-0.268349498510361,-0.126282125711441,-0.914662778377533,-0.378481179475784,0.141930431127548,-0.955008566379547,-0.268349498510361,-0.126282125711441,-0.889653563499451,-0.330667674541473,-0.314921617507935,-0.955008566379547,-0.268349498510361,-0.126282125711441,-0.990928769111633,-0.0471870861947536,0.125832229852676,-0.958966612815857,-0.196509540081024,-0.20436991751194,-0.955008566379547,-0.268349498510361,-0.126282125711441,-0.958966612815857,-0.196509540081024,-0.20436991751194,-0.889653563499451,-0.330667674541473,-0.314921617507935,-0.990928769111633,-0.0471870861947536,0.125832229852676,-0.999380588531494,-0.031476553529501,0.0157382767647505,-0.958966612815857,-0.196509540081024,-0.20436991751194,-0.940601348876953,-0.14227582514286,-0.308264315128326,-0.889653563499451,-0.330667674541473,-0.314921617507935,-0.958966612815857,-0.196509540081024,-0.20436991751194,-0.958966612815857,-0.196509540081024,-0.20436991751194,-0.999380588531494,-0.031476553529501,0.0157382767647505,-0.940601348876953,-0.14227582514286,-0.308264315128326,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.992002964019775,0.125968635082245,-0.0078730396926403,-0.951900541782379,-0.267476171255112,-0.14947198331356,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.966528534889221,0.196448892354965,-0.165017053484917,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.992002964019775,0.125968635082245,-0.0078730396926403,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.951900541782379,-0.267476171255112,-0.14947198331356,-0.966528534889221,0.196448892354965,-0.165017053484917,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.872933983802795,-0.173013955354691,-0.456127643585205,
  431. -0.951900541782379,-0.267476171255112,-0.14947198331356,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.818694710731506,0.275522261857986,-0.5038121342659,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.966528534889221,0.196448892354965,-0.165017053484917,-0.872933983802795,-0.173013955354691,-0.456127643585205,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.818694710731506,0.275522261857986,-0.5038121342659,-0.858480632305145,-0.346542656421661,0.37804651260376,-0.896194279193878,-0.385206311941147,0.220117896795273,-0.817202091217041,-0.565755248069763,0.110007971525192,-0.858480632305145,-0.346542656421661,0.37804651260376,-0.959678411483765,-0.0865283831954002,0.267451345920563,-0.896194279193878,-0.385206311941147,0.220117896795273,-0.817202091217041,-0.565755248069763,0.110007971525192,-0.896194279193878,-0.385206311941147,0.220117896795273,-0.93066418170929,-0.362801313400269,-0.0473219081759453,-0.896194279193878,-0.385206311941147,0.220117896795273,-0.959678411483765,-0.0865283831954002,0.267451345920563,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.896194279193878,-0.385206311941147,0.220117896795273,-0.989674627780914,-0.141382083296776,0.0235636811703444,-0.93066418170929,-0.362801313400269,-0.0473219081759453,-0.738328754901886,-0.651928544044495,-0.172800347208977,-0.887729644775391,-0.416368782520294,-0.196400359272957,-0.779141187667847,-0.487947016954422,-0.393505662679672,-0.738328754901886,-0.651928544044495,-0.172800347208977,-0.880498766899109,-0.471695780754089,0.0471695773303509,-0.887729644775391,-0.416368782520294,-0.196400359272957,-0.779141187667847,-0.487947016954422,-0.393505662679672,-0.887729644775391,-0.416368782520294,-0.196400359272957,-0.90394389629364,-0.251532226800919,-0.345856815576553,-0.887729644775391,-0.416368782520294,-0.196400359272957,-0.880498766899109,-0.471695780754089,0.0471695773303509,-0.961375296115875,-0.252164006233215,-0.110321752727032,-0.90394389629364,-0.251532226800919,-0.345856815576553,-0.887729644775391,-0.416368782520294,-0.196400359272957,
  432. -0.961375296115875,-0.252164006233215,-0.110321752727032,-0.849105000495911,-0.51103538274765,0.133655413985252,-0.889405429363251,-0.456508964300156,-0.0236125327646732,-0.80961936712265,-0.550226747989655,-0.204369932413101,-0.849105000495911,-0.51103538274765,0.133655413985252,-0.954503297805786,-0.236653715372086,0.181434512138367,-0.889405429363251,-0.456508964300156,-0.0236125327646732,-0.80961936712265,-0.550226747989655,-0.204369932413101,-0.889405429363251,-0.456508964300156,-0.0236125327646732,-0.927295923233032,-0.290762305259705,-0.235753208398819,-0.889405429363251,-0.456508964300156,-0.0236125327646732,-0.954503297805786,-0.236653715372086,0.181434512138367,-0.987533092498779,-0.150105029344559,-0.0474015884101391,-0.889405429363251,-0.456508964300156,-0.0236125327646732,-0.987533092498779,-0.150105029344559,-0.0474015884101391,-0.927295923233032,-0.290762305259705,-0.235753208398819,-0.786792039871216,-0.590094029903412,0.180962175130844,-0.828159272670746,-0.559993386268616,0.0236616935580969,-0.740249335765839,-0.653624415397644,-0.157499864697456,-0.786792039871216,-0.590094029903412,0.180962175130844,-0.921259939670563,-0.330708682537079,0.204724431037903,-0.828159272670746,-0.559993386268616,0.0236616935580969,-0.740249335765839,-0.653624415397644,-0.157499864697456,-0.828159272670746,-0.559993386268616,0.0236616935580969,-0.883095145225525,-0.42577800154686,-0.197119444608688,-0.828159272670746,-0.559993386268616,0.0236616935580969,-0.921259939670563,-0.330708682537079,0.204724431037903,-0.962811231613159,-0.268324434757233,-0.0315675809979439,-0.828159272670746,-0.559993386268616,0.0236616935580969,-0.962811231613159,-0.268324434757233,-0.0315675809979439,-0.883095145225525,-0.42577800154686,-0.197119444608688,-0.776261806488037,-0.62728226184845,-0.062728226184845,-0.827773153781891,-0.528198063373566,-0.189205288887024,-0.741722702980042,-0.536565363407135,-0.40242400765419,-0.776261806488037,-0.62728226184845,-0.062728226184845,-0.912594020366669,-0.401226699352264,0.0786719024181366,-0.827773153781891,-0.528198063373566,-0.189205288887024,
  433. -0.741722702980042,-0.536565363407135,-0.40242400765419,-0.827773153781891,-0.528198063373566,-0.189205288887024,-0.889653563499451,-0.314921617507935,-0.330667674541473,-0.827773153781891,-0.528198063373566,-0.189205288887024,-0.912594020366669,-0.401226699352264,0.0786719024181366,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.827773153781891,-0.528198063373566,-0.189205288887024,-0.964073002338409,-0.244969367980957,-0.102729082107544,-0.889653563499451,-0.314921617507935,-0.330667674541473,-0.723960757255554,-0.582316219806671,-0.369849503040314,-0.754713237285614,-0.455972582101822,-0.471695780754089,-0.630527496337891,-0.417724460363388,-0.654172241687775,-0.723960757255554,-0.582316219806671,-0.369849503040314,-0.889212667942047,-0.409195184707642,-0.204597592353821,-0.754713237285614,-0.455972582101822,-0.471695780754089,-0.630527496337891,-0.417724460363388,-0.654172241687775,-0.754713237285614,-0.455972582101822,-0.471695780754089,-0.795645773410797,-0.212697386741638,-0.56719297170639,-0.754713237285614,-0.455972582101822,-0.471695780754089,-0.889212667942047,-0.409195184707642,-0.204597592353821,-0.913612425327301,-0.212651178240776,-0.346542656421661,-0.754713237285614,-0.455972582101822,-0.471695780754089,-0.913612425327301,-0.212651178240776,-0.346542656421661,-0.795645773410797,-0.212697386741638,-0.56719297170639,-0.612410187721252,-0.651667237281799,0.447530508041382,-0.801783740520477,-0.534522473812103,0.267261236906052,-0.672194063663483,-0.719643115997314,0.17397965490818,-0.612410187721252,-0.651667237281799,0.447530508041382,-0.788110375404358,-0.394055187702179,0.472866266965866,-0.801783740520477,-0.534522473812103,0.267261236906052,-0.672194063663483,-0.719643115997314,0.17397965490818,-0.801783740520477,-0.534522473812103,0.267261236906052,-0.833818972110748,-0.550635099411011,0.0393310822546482,-0.801783740520477,-0.534522473812103,0.267261236906052,-0.788110375404358,-0.394055187702179,0.472866266965866,-0.904558897018433,-0.369689285755157,0.212374702095985,-0.833818972110748,-0.550635099411011,0.0393310822546482,
  434. -0.801783740520477,-0.534522473812103,0.267261236906052,-0.904558897018433,-0.369689285755157,0.212374702095985,-0.741376578807831,-0.583636879920959,-0.331253349781036,-0.813397347927094,-0.434338390827179,-0.386956006288528,-0.746321380138397,-0.337808609008789,-0.57348906993866,-0.741376578807831,-0.583636879920959,-0.331253349781036,-0.876382529735565,-0.47372031211853,-0.086848720908165,-0.813397347927094,-0.434338390827179,-0.386956006288528,-0.746321380138397,-0.337808609008789,-0.57348906993866,-0.813397347927094,-0.434338390827179,-0.386956006288528,-0.899228155612946,-0.189311191439629,-0.394398301839828,-0.813397347927094,-0.434338390827179,-0.386956006288528,-0.876382529735565,-0.47372031211853,-0.086848720908165,-0.954028487205505,-0.244420513510704,-0.173459723591805,-0.813397347927094,-0.434338390827179,-0.386956006288528,-0.954028487205505,-0.244420513510704,-0.173459723591805,-0.899228155612946,-0.189311191439629,-0.394398301839828,-0.731512844562531,-0.527003884315491,0.432615131139755,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.785262286663055,-0.596799373626709,0.164905071258545,-0.731512844562531,-0.527003884315491,0.432615131139755,-0.867298722267151,-0.244420543313026,0.433649361133575,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.785262286663055,-0.596799373626709,0.164905071258545,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.867298722267151,-0.244420543313026,0.433649361133575,-0.959529995918274,-0.228084981441498,0.165164992213249,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.88866251707077,-0.393213510513306,0.235928103327751,-0.959529995918274,-0.228084981441498,0.165164992213249,-0.958581686019897,0.117858409881592,-0.259288489818573,-0.906045615673065,-0.173330470919609,-0.386054217815399,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.958581686019897,0.117858409881592,-0.259288489818573,-0.953406453132629,-0.228502362966537,-0.196984797716141,
  435. -0.995340168476105,-0.0552966743707657,-0.0789952501654625,-0.906045615673065,-0.173330470919609,-0.386054217815399,-0.866652369499207,-0.464840799570084,-0.18120913207531,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.995340168476105,-0.0552966743707657,-0.0789952501654625,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.866652369499207,-0.464840799570084,-0.18120913207531,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.995340168476105,-0.0552966743707657,-0.0789952501654625,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.984740495681763,-0.173314332962036,-0.0157558489590883,-0.866652369499207,-0.464840799570084,-0.18120913207531,-0.905063033103943,-0.424986124038696,-0.0157402269542217,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.905063033103943,-0.424986124038696,-0.0157402269542217,-0.984740495681763,-0.173314332962036,-0.0157558489590883,-0.605380356311798,-0.731173634529114,0.314483284950256,-0.795546889305115,-0.582875967025757,0.165410742163658,-0.669956266880035,-0.740892827510834,0.0472910292446613,-0.605380356311798,-0.731173634529114,0.314483284950256,-0.782126188278198,-0.481916159391403,0.395013213157654,-0.795546889305115,-0.582875967025757,0.165410742163658,-0.669956266880035,-0.740892827510834,0.0472910292446613,-0.795546889305115,-0.582875967025757,0.165410742163658,-0.833200514316559,-0.55022668838501,-0.0550226718187332,-0.795546889305115,-0.582875967025757,0.165410742163658,-0.782126188278198,-0.481916159391403,0.395013213157654,-0.89953601360321,-0.410314679145813,0.149922668933868,-0.833200514316559,-0.55022668838501,-0.0550226718187332,-0.795546889305115,-0.582875967025757,0.165410742163658,-0.89953601360321,-0.410314679145813,0.149922668933868,-0.729350090026855,-0.603870511054993,0.321541428565979,-0.757598459720612,-0.631332039833069,0.165724650025368,
  436. -0.636592626571655,-0.770198464393616,0.0392958410084248,-0.729350090026855,-0.603870511054993,0.321541428565979,-0.899200141429901,-0.362835168838501,0.244519352912903,-0.757598459720612,-0.631332039833069,0.165724650025368,-0.636592626571655,-0.770198464393616,0.0392958410084248,-0.757598459720612,-0.631332039833069,0.165724650025368,-0.805148959159851,-0.58412766456604,-0.102617025375366,-0.757598459720612,-0.631332039833069,0.165724650025368,-0.899200141429901,-0.362835168838501,0.244519352912903,-0.915431380271912,-0.402474135160446,-8.93672103342449e-017,-0.757598459720612,-0.631332039833069,0.165724650025368,-0.915431380271912,-0.402474135160446,-8.93672103342449e-017,-0.805148959159851,-0.58412766456604,-0.102617025375366,-0.684530258178711,-0.613716781139374,0.393408209085464,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.629999399185181,-0.771749258041382,0.0866249203681946,-0.684530258178711,-0.613716781139374,0.393408209085464,-0.858480632305145,-0.37804651260376,0.346542656421661,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.629999399185181,-0.771749258041382,0.0866249203681946,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.818390369415283,-0.574447154998779,-0.0157382767647505,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.858480632305145,-0.37804651260376,0.346542656421661,-0.913499116897583,-0.393749624490738,0.102374896407127,-0.73999696969986,-0.629784643650055,0.236169263720512,-0.913499116897583,-0.393749624490738,0.102374896407127,-0.818390369415283,-0.574447154998779,-0.0157382767647505,-0.645349323749542,-0.676829755306244,-0.354155123233795,-0.702072739601135,-0.552192032337189,-0.449642091989517,-0.590075790882111,-0.495663642883301,-0.637281835079193,-0.645349323749542,-0.676829755306244,-0.354155123233795,-0.834852874279022,-0.519814014434814,-0.181147307157516,-0.702072739601135,-0.552192032337189,-0.449642091989517,-0.590075790882111,-0.495663642883301,-0.637281835079193,-0.702072739601135,-0.552192032337189,-0.449642091989517,-0.787011325359344,-0.306934416294098,-0.535167694091797,
  437. -0.702072739601135,-0.552192032337189,-0.449642091989517,-0.834852874279022,-0.519814014434814,-0.181147307157516,-0.889708638191223,-0.322814643383026,-0.322814643383026,-0.702072739601135,-0.552192032337189,-0.449642091989517,-0.889708638191223,-0.322814643383026,-0.322814643383026,-0.787011325359344,-0.306934416294098,-0.535167694091797,-0.583636879920959,-0.80447244644165,-0.110417790710926,-0.784392118453979,-0.603981971740723,-0.141190573573112,-0.671041011810303,-0.663146436214447,-0.331573218107224,-0.583636879920959,-0.80447244644165,-0.110417790710926,-0.756374597549438,-0.646070003509521,0.10242572426796,-0.784392118453979,-0.603981971740723,-0.141190573573112,-0.671041011810303,-0.663146436214447,-0.331573218107224,-0.784392118453979,-0.603981971740723,-0.141190573573112,-0.842180371284485,-0.448638111352921,-0.299092084169388,-0.784392118453979,-0.603981971740723,-0.141190573573112,-0.756374597549438,-0.646070003509521,0.10242572426796,-0.888305485248566,-0.455944418907166,-0.0550277754664421,-0.842180371284485,-0.448638111352921,-0.299092084169388,-0.784392118453979,-0.603981971740723,-0.141190573573112,-0.888305485248566,-0.455944418907166,-0.0550277754664421,-0.795472860336304,-0.598573684692383,0.0945116281509399,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.856094300746918,-0.494806796312332,-0.149227440357208,-0.795472860336304,-0.598573684692383,0.0945116281509399,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.856094300746918,-0.494806796312332,-0.149227440357208,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.955306172370911,-0.24474786221981,-0.165796935558319,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.981820046901703,-0.172800332307816,0.0785456076264381,-0.955306172370911,-0.24474786221981,-0.165796935558319,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.981820046901703,-0.172800332307816,0.0785456076264381,-0.890288293361664,-0.36241826415062,0.275753021240234,
  438. -0.926067173480988,-0.361009240150452,0.109872378408909,-0.858454048633575,-0.511922121047974,-0.0315028987824917,-0.890288293361664,-0.36241826415062,0.275753021240234,-0.968503952026367,-0.078740157186985,0.236220479011536,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.858454048633575,-0.511922121047974,-0.0315028987824917,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.950959324836731,-0.275070875883102,-0.14146500825882,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.968503952026367,-0.078740157186985,0.236220479011536,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.950959324836731,-0.275070875883102,-0.14146500825882,-0.881671130657196,-0.417219400405884,0.220417782664299,-0.944442808628082,-0.314814269542694,0.0944442823529243,-0.92054671049118,-0.369792282581329,-0.125886723399162,-0.881671130657196,-0.417219400405884,0.220417782664299,-0.922805905342102,-0.149857372045517,0.354925364255905,-0.944442808628082,-0.314814269542694,0.0944442823529243,-0.92054671049118,-0.369792282581329,-0.125886723399162,-0.944442808628082,-0.314814269542694,0.0944442823529243,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.944442808628082,-0.314814269542694,0.0944442823529243,-0.922805905342102,-0.149857372045517,0.354925364255905,-0.987409830093384,-0.00789927877485752,0.15798556804657,-0.944442808628082,-0.314814269542694,0.0944442823529243,-0.987409830093384,-0.00789927877485752,0.15798556804657,-0.992741703987122,-0.10242572426796,-0.0630312189459801,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.995340168476105,-0.0552966743707657,0.0789952501654625,
  439. -0.989827394485474,0.141403913497925,0.0157115459442139,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.888855040073395,-0.259577125310898,-0.377566754817963,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.888855040073395,-0.259577125310898,-0.377566754817963,-0.867757260799408,-1.10353563333213e-016,0.496988266706467,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.892201066017151,-0.268449872732162,0.36319687962532,-0.867757260799408,-1.10353563333213e-016,0.496988266706467,-0.964772641658783,0.0470620803534985,0.258841425180435,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.892201066017151,-0.268449872732162,0.36319687962532,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.928213536739349,-0.361845970153809,-0.0865283831954002,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.964772641658783,0.0470620803534985,0.258841425180435,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.928213536739349,-0.361845970153809,-0.0865283831954002,-0.964772641658783,0.0470620803534985,0.258841425180435,-0.988334119319916,0.0313756838440895,0.149034515023232,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.975773274898529,-0.173121064901352,-0.133775368332863,-0.928213536739349,-0.361845970153809,-0.0865283831954002,-0.978442788124084,-0.205157354474068,-0.0236720032989979,
  440. -0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.988334119319916,0.0313756838440895,0.149034515023232,-0.975773274898529,-0.173121064901352,-0.133775368332863,-0.950841903686523,-0.180738538503647,0.251462310552597,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.918841898441315,-0.392667472362518,0.0392667464911938,-0.950841903686523,-0.180738538503647,0.251462310552597,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.918841898441315,-0.392667472362518,0.0392667464911938,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.843094885349274,-0.338813811540604,-0.417607754468918,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.843094885349274,-0.338813811540604,-0.417607754468918,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.994719624519348,-0.0394730009138584,-0.0947351977229118,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.896609961986542,-0.149434998631477,-0.416844993829727,-0.843094885349274,-0.338813811540604,-0.417607754468918,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.994719624519348,-0.0394730009138584,-0.0947351977229118,-0.896609961986542,-0.149434998631477,-0.416844993829727,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.971490025520325,-0.007898292504251,0.236948788166046,-0.981456816196442,0.157033085823059,0.109923161566257,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.971490025520325,-0.007898292504251,0.236948788166046,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.981456816196442,0.157033085823059,0.109923161566257,-0.986948072910309,-0.0315823368728161,0.157911688089371,
  441. -0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.970400989055634,-0.18934653699398,0.149899333715439,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.970400989055634,-0.18934653699398,0.149899333715439,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.92226105928421,0.0157651454210281,0.386246085166931,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.913612425327301,-0.28353488445282,0.291410863399506,-0.92226105928421,0.0157651454210281,0.386246085166931,-0.990989983081818,0.00786499958485365,0.133704990148544,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.913612425327301,-0.28353488445282,0.291410863399506,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.891035318374634,-0.433689743280411,-0.13404954969883,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.990989983081818,0.00786499958485365,0.133704990148544,-0.958256483078003,-0.267055064439774,-0.102109298110008,-0.956260442733765,-0.292410224676132,0.00790297891944647,-0.958256483078003,-0.267055064439774,-0.102109298110008,-0.891035318374634,-0.433689743280411,-0.13404954969883,-0.990989983081818,0.00786499958485365,0.133704990148544,-0.999380588531494,-0.0157382767647505,0.031476553529501,-0.958256483078003,-0.267055064439774,-0.102109298110008,-0.941395580768585,-0.261059284210205,-0.213593974709511,-0.891035318374634,-0.433689743280411,-0.13404954969883,-0.958256483078003,-0.267055064439774,-0.102109298110008,-0.958256483078003,-0.267055064439774,-0.102109298110008,-0.999380588531494,-0.0157382767647505,0.031476553529501,
  442. -0.941395580768585,-0.261059284210205,-0.213593974709511,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.991910755634308,0.110212303698063,-0.0629784613847733,-0.951664984226227,-0.306734979152679,-0.0157299991697073,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.991910755634308,0.110212303698063,-0.0629784613847733,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.951664984226227,-0.306734979152679,-0.0157299991697073,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.874531090259552,-0.354539632797241,-0.330903649330139,-0.951664984226227,-0.306734979152679,-0.0157299991697073,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.818263709545136,0.0236037615686655,-0.574358224868774,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.874531090259552,-0.354539632797241,-0.330903649330139,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.818263709545136,0.0236037615686655,-0.574358224868774,-0.857072949409485,-0.141534969210625,0.495372414588928,-0.894868075847626,-0.251191049814224,0.368936836719513,-0.819227814674377,-0.456877082586288,0.346596419811249,-0.857072949409485,-0.141534969210625,0.495372414588928,-0.958374738693237,0.0392776504158974,0.28279909491539,-0.894868075847626,-0.251191049814224,0.368936836719513,-0.819227814674377,-0.456877082586288,0.346596419811249,-0.894868075847626,-0.251191049814224,0.368936836719513,-0.930403769016266,-0.346930235624313,0.118271671235561,-0.894868075847626,-0.251191049814224,0.368936836719513,-0.958374738693237,0.0392776504158974,0.28279909491539,-0.989278018474579,-0.117771193385124,0.0863655433058739,
  443. -0.894868075847626,-0.251191049814224,0.368936836719513,-0.989278018474579,-0.117771193385124,0.0863655433058739,-0.930403769016266,-0.346930235624313,0.118271671235561,-0.73896723985672,-0.660353660583496,0.133643001317978,-0.88641768693924,-0.462819844484329,0.0078444043174386,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.73896723985672,-0.660353660583496,0.133643001317978,-0.880798280239105,-0.401077777147293,0.251656651496887,-0.88641768693924,-0.462819844484329,0.0078444043174386,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.88641768693924,-0.462819844484329,0.0078444043174386,-0.904810845851898,-0.377660185098648,-0.196698009967804,-0.88641768693924,-0.462819844484329,0.0078444043174386,-0.880798280239105,-0.401077777147293,0.251656651496887,-0.961106777191162,-0.275727331638336,0.0157558489590883,-0.904810845851898,-0.377660185098648,-0.196698009967804,-0.88641768693924,-0.462819844484329,0.0078444043174386,-0.961106777191162,-0.275727331638336,0.0157558489590883,-0.848501980304718,-0.400681465864182,0.345685988664627,-0.890371203422546,-0.417607754468918,0.181226000189781,-0.810898065567017,-0.582586944103241,0.0551095753908157,-0.848501980304718,-0.400681465864182,0.345685988664627,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.890371203422546,-0.417607754468918,0.181226000189781,-0.810898065567017,-0.582586944103241,0.0551095753908157,-0.890371203422546,-0.417607754468918,0.181226000189781,-0.928817272186279,-0.362081319093704,-0.0787133276462555,-0.890371203422546,-0.417607754468918,0.181226000189781,-0.954028487205505,-0.134037047624588,0.268074095249176,-0.987163484096527,-0.157946154475212,0.0236919224262238,-0.890371203422546,-0.417607754468918,0.181226000189781,-0.987163484096527,-0.157946154475212,0.0236919224262238,-0.928817272186279,-0.362081319093704,-0.0787133276462555,-0.786524295806885,-0.448318839073181,0.424723148345947,-0.829450130462646,-0.48977056145668,0.268583834171295,-0.7373286485672,-0.658889412879944,0.149034515023232,-0.786524295806885,-0.448318839073181,0.424723148345947,
  444. -0.921259939670563,-0.204724431037903,0.330708682537079,-0.829450130462646,-0.48977056145668,0.268583834171295,-0.7373286485672,-0.658889412879944,0.149034515023232,-0.829450130462646,-0.48977056145668,0.268583834171295,-0.881452679634094,-0.472206801176071,0.00787011347711086,-0.829450130462646,-0.48977056145668,0.268583834171295,-0.921259939670563,-0.204724431037903,0.330708682537079,-0.962931215763092,-0.252572119235992,0.0947145447134972,-0.829450130462646,-0.48977056145668,0.268583834171295,-0.962931215763092,-0.252572119235992,0.0947145447134972,-0.881452679634094,-0.472206801176071,0.00787011347711086,-0.777577519416809,-0.589073896408081,0.21992090344429,-0.83038341999054,-0.5535888671875,0.0632673054933548,-0.740432977676392,-0.661663472652435,-0.11815420538187,-0.777577519416809,-0.589073896408081,0.21992090344429,-0.912481188774109,-0.322514891624451,0.251718968153,-0.83038341999054,-0.5535888671875,0.0632673054933548,-0.740432977676392,-0.661663472652435,-0.11815420538187,-0.83038341999054,-0.5535888671875,0.0632673054933548,-0.890979886054993,-0.425778031349182,-0.157695561647415,-0.83038341999054,-0.5535888671875,0.0632673054933548,-0.912481188774109,-0.322514891624451,0.251718968153,-0.963171243667603,-0.26842474937439,0.0157896913588047,-0.83038341999054,-0.5535888671875,0.0632673054933548,-0.963171243667603,-0.26842474937439,0.0157896913588047,-0.890979886054993,-0.425778031349182,-0.157695561647415,-0.724746584892273,-0.685358107089996,-0.0708991140127182,-0.753294587135315,-0.619898676872253,-0.219710916280746,-0.628035604953766,-0.667287826538086,-0.400372684001923,-0.724746584892273,-0.685358107089996,-0.0708991140127182,-0.889653563499451,-0.456636339426041,-1.01393635582268e-016,-0.753294587135315,-0.619898676872253,-0.219710916280746,-0.628035604953766,-0.667287826538086,-0.400372684001923,-0.753294587135315,-0.619898676872253,-0.219710916280746,-0.797453999519348,-0.442152738571167,-0.410570383071899,-0.753294587135315,-0.619898676872253,-0.219710916280746,-0.889653563499451,-0.456636339426041,-1.01393635582268e-016,
  445. -0.912057936191559,-0.345953017473221,-0.220151916146278,-0.753294587135315,-0.619898676872253,-0.219710916280746,-0.912057936191559,-0.345953017473221,-0.220151916146278,-0.797453999519348,-0.442152738571167,-0.410570383071899,-0.61227810382843,-0.384636223316193,0.690775275230408,-0.800375580787659,-0.360953688621521,0.478656023740768,-0.669270575046539,-0.566911518573761,0.480300098657608,-0.61227810382843,-0.384636223316193,0.690775275230408,-0.788110494613647,-0.141859874129295,0.598963975906372,-0.800375580787659,-0.360953688621521,0.478656023740768,-0.669270575046539,-0.566911518573761,0.480300098657608,-0.800375580787659,-0.360953688621521,0.478656023740768,-0.834568083286285,-0.472397029399872,0.283438175916672,-0.800375580787659,-0.360953688621521,0.478656023740768,-0.788110494613647,-0.141859874129295,0.598963975906372,-0.904922902584076,-0.236066848039627,0.354100286960602,-0.834568083286285,-0.472397029399872,0.283438175916672,-0.800375580787659,-0.360953688621521,0.478656023740768,-0.904922902584076,-0.236066848039627,0.354100286960602,-0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.810395836830139,-0.566490292549133,-0.149490505456924,-0.746805489063263,-0.558138847351074,-0.361611098051071,-0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.875047266483307,-0.46511521935463,0.134016245603561,-0.810395836830139,-0.566490292549133,-0.149490505456924,-0.746805489063263,-0.558138847351074,-0.361611098051071,-0.810395836830139,-0.566490292549133,-0.149490505456924,-0.901220977306366,-0.339934229850769,-0.268785208463669,-0.810395836830139,-0.566490292549133,-0.149490505456924,-0.875047266483307,-0.46511521935463,0.134016245603561,-0.953317582607269,-0.299389004707336,-0.0393932871520519,-0.810395836830139,-0.566490292549133,-0.149490505456924,-0.953317582607269,-0.299389004707336,-0.0393932871520519,-0.901220977306366,-0.339934229850769,-0.268785208463669,-0.7309929728508,-0.282965004444122,0.620950996875763,-0.889708638191223,-0.244079366326332,0.385802865028381,-0.786329865455627,-0.456071317195892,0.416754841804504,
  446. -0.7309929728508,-0.282965004444122,0.620950996875763,-0.867514371871948,-0.0236594825983047,0.496849119663239,-0.889708638191223,-0.244079366326332,0.385802865028381,-0.786329865455627,-0.456071317195892,0.416754841804504,-0.889708638191223,-0.244079366326332,0.385802865028381,-0.911466479301453,-0.361443608999252,0.196436733007431,-0.889708638191223,-0.244079366326332,0.385802865028381,-0.867514371871948,-0.0236594825983047,0.496849119663239,-0.961464941501617,-0.12609376013279,0.244306668639183,-0.911466479301453,-0.361443608999252,0.196436733007431,-0.889708638191223,-0.244079366326332,0.385802865028381,-0.961464941501617,-0.12609376013279,0.244306668639183,-0.95311051607132,0.236308395862579,-0.189046710729599,-0.915317356586456,0.0157813336700201,-0.40242400765419,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.95311051607132,0.236308395862579,-0.189046710729599,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.996791481971741,0.0156975034624338,-0.0784875229001045,-0.915317356586456,0.0157813336700201,-0.40242400765419,-0.885742247104645,-0.332153350114822,-0.324244946241379,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.996791481971741,0.0156975034624338,-0.0784875229001045,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.885742247104645,-0.332153350114822,-0.324244946241379,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.996791481971741,0.0156975034624338,-0.0784875229001045,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.991020619869232,-0.117978647351265,-0.062921941280365,-0.885742247104645,-0.332153350114822,-0.324244946241379,-0.919097006320953,-0.361354380846024,-0.157110601663589,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.919097006320953,-0.361354380846024,-0.157110601663589,-0.991020619869232,-0.117978647351265,-0.062921941280365,-0.632060647010803,-0.774274230003357,0.031603030860424,
  447. -0.817580759525299,-0.573878824710846,-0.0471681207418442,-0.701396524906158,-0.677753865718842,-0.22066405415535,-0.632060647010803,-0.774274230003357,0.031603030860424,-0.801066339015961,-0.565458595752716,0.196339786052704,-0.817580759525299,-0.573878824710846,-0.0471681207418442,-0.701396524906158,-0.677753865718842,-0.22066405415535,-0.817580759525299,-0.573878824710846,-0.0471681207418442,-0.857842445373535,-0.456466615200043,-0.236103430390358,-0.817580759525299,-0.573878824710846,-0.0471681207418442,-0.801066339015961,-0.565458595752716,0.196339786052704,-0.915431380271912,-0.402474135160446,-8.93672103342449e-017,-0.857842445373535,-0.456466615200043,-0.236103430390358,-0.817580759525299,-0.573878824710846,-0.0471681207418442,-0.915431380271912,-0.402474135160446,-8.93672103342449e-017,-0.753109157085419,-0.651125609874725,0.0941386446356773,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.667308390140533,-0.706561863422394,-0.235520631074905,-0.753109157085419,-0.651125609874725,0.0941386446356773,-0.912735283374786,-0.393420368432999,0.110157705843449,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.667308390140533,-0.706561863422394,-0.235520631074905,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.830253601074219,-0.474430620670319,-0.292565554380417,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.912735283374786,-0.393420368432999,0.110157705843449,-0.931069731712341,-0.339288115501404,-0.134137153625488,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.931069731712341,-0.339288115501404,-0.134137153625488,-0.830253601074219,-0.474430620670319,-0.292565554380417,-0.706997692584991,-0.691286623477936,0.149255067110062,-0.763684928417206,-0.645589292049408,-1.43349619296941e-016,-0.662094950675964,-0.725151658058167,-0.189170002937317,-0.706997692584991,-0.691286623477936,0.149255067110062,-0.872232973575592,-0.447903424501419,0.196448862552643,-0.763684928417206,-0.645589292049408,-1.43349619296941e-016,-0.662094950675964,-0.725151658058167,-0.189170002937317,
  448. -0.763684928417206,-0.645589292049408,-1.43349619296941e-016,-0.838757991790771,-0.501686990261078,-0.211649224162102,-0.763684928417206,-0.645589292049408,-1.43349619296941e-016,-0.872232973575592,-0.447903424501419,0.196448862552643,-0.928558349609375,-0.369849503040314,-0.031476553529501,-0.763684928417206,-0.645589292049408,-1.43349619296941e-016,-0.928558349609375,-0.369849503040314,-0.031476553529501,-0.838757991790771,-0.501686990261078,-0.211649224162102,-0.673583328723907,-0.477774232625961,-0.563930213451386,-0.725647747516632,-0.323386490345001,-0.60733562707901,-0.613413095474243,-0.204471006989479,-0.762834191322327,-0.673583328723907,-0.477774232625961,-0.563930213451386,-0.851159334182739,-0.394055247306824,-0.346768617630005,-0.725647747516632,-0.323386490345001,-0.60733562707901,-0.613413095474243,-0.204471006989479,-0.762834191322327,-0.725647747516632,-0.323386490345001,-0.60733562707901,-0.797453999519348,-0.0631646737456322,-0.60006445646286,-0.725647747516632,-0.323386490345001,-0.60733562707901,-0.851159334182739,-0.394055247306824,-0.346768617630005,-0.89953601360321,-0.149922668933868,-0.410314679145813,-0.725647747516632,-0.323386490345001,-0.60733562707901,-0.89953601360321,-0.149922668933868,-0.410314679145813,-0.797453999519348,-0.0631646737456322,-0.60006445646286,-0.615606188774109,-0.68663763999939,-0.386726975440979,-0.809769451618195,-0.479572206735611,-0.338059097528458,-0.693429529666901,-0.472792834043503,-0.543711721897125,-0.615606188774109,-0.68663763999939,-0.386726975440979,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.809769451618195,-0.479572206735611,-0.338059097528458,-0.693429529666901,-0.472792834043503,-0.543711721897125,-0.809769451618195,-0.479572206735611,-0.338059097528458,-0.856332123279572,-0.282825261354446,-0.432094186544418,-0.809769451618195,-0.479572206735611,-0.338059097528458,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.903385937213898,-0.377065449953079,-0.204243764281273,-0.856332123279572,-0.282825261354446,-0.432094186544418,
  449. -0.809769451618195,-0.479572206735611,-0.338059097528458,-0.903385937213898,-0.377065449953079,-0.204243764281273,-0.967664361000061,-0.0157343801110983,0.251750081777573,-0.939428150653839,-0.213147565722466,0.26840803027153,-0.949128329753876,-0.134459838271141,0.284738481044769,-0.939428150653839,-0.213147565722466,0.26840803027153,-0.967664361000061,-0.0157343801110983,0.251750081777573,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.949128329753876,-0.134459838271141,0.284738481044769,-0.927840530872345,0.212302505970001,0.306659162044525,-0.967664361000061,-0.0157343801110983,0.251750081777573,-0.967664361000061,-0.0157343801110983,0.251750081777573,-0.954859972000122,-0.228850737214088,0.18939371407032,-0.967994034290314,-0.188876897096634,0.165267258882523,-0.927840530872345,0.212302505970001,0.306659162044525,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.967664361000061,-0.0157343801110983,0.251750081777573,-0.954859972000122,-0.228850737214088,0.18939371407032,-0.967664361000061,-0.0157343801110983,0.251750081777573,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.927840530872345,0.212302505970001,0.306659162044525,-0.90816205739975,0.244808912277222,0.339573621749878,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.832814753055573,-0.314269691705704,0.455691069364548,-0.954859972000122,-0.228850737214088,0.18939371407032,-0.866007506847382,0.275547832250595,0.41725817322731,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.90816205739975,0.244808912277222,0.339573621749878,-0.832814753055573,-0.314269691705704,0.455691069364548,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.891839742660522,0.0473543219268322,0.449866056442261,-0.891839742660522,0.0473543219268322,0.449866056442261,-0.940601229667664,0.0711379051208496,0.331976920366287,-0.866007506847382,0.275547832250595,0.41725817322731,-0.510216057300568,0.384624391794205,0.769248783588409,-0.759207665920258,0.300519704818726,0.57731419801712,
  450. -0.794045746326447,0.0550328753888607,0.605361640453339,-0.759207665920258,0.300519704818726,0.57731419801712,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.794045746326447,0.0550328753888607,0.605361640453339,-0.510216057300568,0.384624391794205,0.769248783588409,-0.252753257751465,0.647680222988129,0.718767106533051,-0.759207665920258,0.300519704818726,0.57731419801712,-0.938376069068909,-0.157710269093513,0.307535022497177,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.759207665920258,0.300519704818726,0.57731419801712,-0.759207665920258,0.300519704818726,0.57731419801712,-0.252753257751465,0.647680222988129,0.718767106533051,-0.797827124595642,0.0552949495613575,0.600345194339752,-0.759207665920258,0.300519704818726,0.57731419801712,-0.797827124595642,0.0552949495613575,0.600345194339752,-0.938376069068909,-0.157710269093513,0.307535022497177,-0.377566695213318,0.259577095508575,0.888854920864105,-0.797827124595642,0.0552949495613575,0.600345194339752,-0.252753257751465,0.647680222988129,0.718767106533051,-0.797827124595642,0.0552949495613575,0.600345194339752,-0.885078251361847,-0.300294399261475,0.355611801147461,-0.938376069068909,-0.157710269093513,0.307535022497177,-0.797827124595642,0.0552949495613575,0.600345194339752,-0.377566695213318,0.259577095508575,0.888854920864105,-0.699120581150055,-0.015710573643446,0.714831173419952,-0.885078251361847,-0.300294399261475,0.355611801147461,-0.797827124595642,0.0552949495613575,0.600345194339752,-0.699120581150055,-0.015710573643446,0.714831173419952,-0.981033563613892,0.102027483284473,-0.164813637733459,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976347684860229,0.212591841816902,-0.0393688566982746,-0.981033563613892,0.102027483284473,-0.164813637733459,-0.983733773231506,-0.08656857162714,-0.157397404313087,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976347684860229,0.212591841816902,-0.0393688566982746,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.978320896625519,0.134124636650085,0.157793685793877,
  451. -0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983733773231506,-0.08656857162714,-0.157397404313087,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.978320896625519,0.134124636650085,0.157793685793877,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.982881903648376,-0.117945834994316,0.141534984111786,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.979418873786926,0.102681003510952,-0.173767864704132,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.982881903648376,-0.117945834994316,0.141534984111786,-0.982396006584167,0.0471550077199936,0.180760860443115,-0.979418873786926,0.102681003510952,-0.173767864704132,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.98869913816452,0.149089559912682,0.015693636611104,-0.98869913816452,0.149089559912682,0.015693636611104,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.982396006584167,0.0471550077199936,0.180760860443115,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.181259766221046,0.110332027077675,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.982881903648376,0.141534984111786,0.117945834994316,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.181259766221046,0.110332027077675,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.979418873786926,-0.173767864704132,-0.102681003510952,
  452. -0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.982881903648376,0.141534984111786,0.117945834994316,-0.982396006584167,0.180760860443115,-0.0471550077199936,-0.979418873786926,-0.173767864704132,-0.102681003510952,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.982396006584167,0.180760860443115,-0.0471550077199936,-0.980459988117218,-0.196091994643211,-0.0156873594969511,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.978077471256256,-0.126203551888466,-0.165642142295837,-0.980459988117218,-0.196091994643211,-0.0156873594969511,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.978077471256256,-0.126203551888466,-0.165642142295837,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.978716969490051,0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.978716969490051,0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.983947098255157,0.118073657155037,0.133816793560982,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.978077471256256,-0.165642142295837,-0.126203551888466,
  453. -0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983947098255157,0.118073657155037,0.133816793560982,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.978077471256256,-0.165642142295837,-0.126203551888466,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.983947098255157,0.118073657155037,0.133816793560982,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.978077471256256,-0.165642142295837,-0.126203551888466,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983947098255157,0.118073657155037,0.133816793560982,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.978077471256256,-0.165642142295837,-0.126203551888466,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.979327261447906,0.157956004142761,-0.126364797353745,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.979327261447906,0.157956004142761,-0.126364797353745,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.979296684265137,0.0710779801011086,0.189541295170784,
  454. -0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.979296684265137,0.0710779801011086,0.189541295170784,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.983947098255157,0.118073657155037,0.133816793560982,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.978320896625519,-0.157793685793877,-0.134124636650085,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983947098255157,0.118073657155037,0.133816793560982,-0.983368337154388,0.18093977868557,-0.0157338920980692,-0.978320896625519,-0.157793685793877,-0.134124636650085,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.989186525344849,0.0392534323036671,-0.141312345862389,-0.989186525344849,0.0392534323036671,-0.141312345862389,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983368337154388,0.18093977868557,-0.0157338920980692,-0.965366780757904,-0.180515736341476,-0.188364237546921,-0.938960134983063,-0.27616474032402,-0.205150946974754,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.965366780757904,-0.180515736341476,-0.188364237546921,-0.881780445575714,-0.456636279821396,0.118095599114895,-0.938960134983063,-0.27616474032402,-0.205150946974754,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.929450869560242,-0.102397128939629,-0.35445162653923,-0.965366780757904,-0.180515736341476,-0.188364237546921,
  455. -0.881780445575714,-0.456636279821396,0.118095599114895,-0.965366780757904,-0.180515736341476,-0.188364237546921,-0.968503952026367,-0.20472440123558,0.141732275485992,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.965366780757904,-0.180515736341476,-0.188364237546921,-0.929450869560242,-0.102397128939629,-0.35445162653923,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.968503952026367,-0.20472440123558,0.141732275485992,-0.965366780757904,-0.180515736341476,-0.188364237546921,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.929450869560242,-0.102397128939629,-0.35445162653923,-0.940630733966827,-0.158089205622673,-0.300369501113892,-0.968503952026367,-0.20472440123558,0.141732275485992,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.960510849952698,-0.25193727016449,0.118095591664314,-0.9192955493927,-0.392861366271973,0.0235716812312603,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.940630733966827,-0.158089205622673,-0.300369501113892,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.907737612724304,-0.410455256700516,0.0868270769715309,-0.960510849952698,-0.25193727016449,0.118095591664314,-0.907737612724304,-0.410455256700516,0.0868270769715309,-0.969646871089935,-0.228615924715996,-0.086716391146183,-0.9192955493927,-0.392861366271973,0.0235716812312603,-0.963261306285858,-0.00789558421820402,-0.26844984292984,-0.96563446521759,-0.235520601272583,-0.109909608960152,-0.978442788124084,-0.142032012343407,-0.14992268383503,-0.978442788124084,-0.142032012343407,-0.14992268383503,-0.96563446521759,-0.235520601272583,-0.109909608960152,-0.931446731090546,-0.363106369972229,0.0236808490008116,-0.978442788124084,-0.142032012343407,-0.14992268383503,-0.943741619586945,0.141561225056648,-0.298851490020752,-0.963261306285858,-0.00789558421820402,-0.26844984292984,-0.921917498111725,-0.386102229356766,-0.0315185487270355,-0.978442788124084,-0.142032012343407,-0.14992268383503,-0.931446731090546,-0.363106369972229,0.0236808490008116,-0.943741619586945,0.141561225056648,-0.298851490020752,
  456. -0.978442788124084,-0.142032012343407,-0.14992268383503,-0.966051340103149,-0.086394838988781,-0.243476361036301,-0.966051340103149,-0.086394838988781,-0.243476361036301,-0.978442788124084,-0.142032012343407,-0.14992268383503,-0.921917498111725,-0.386102229356766,-0.0315185487270355,-0.966051340103149,-0.086394838988781,-0.243476361036301,-0.920290350914001,0.196643248200417,-0.33822637796402,-0.943741619586945,0.141561225056648,-0.298851490020752,-0.882656276226044,-0.386162102222443,-0.267949223518372,-0.966051340103149,-0.086394838988781,-0.243476361036301,-0.921917498111725,-0.386102229356766,-0.0315185487270355,-0.920290350914001,0.196643248200417,-0.33822637796402,-0.966051340103149,-0.086394838988781,-0.243476361036301,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.943741619586945,-0.0157290268689394,-0.33030954003334,-0.966051340103149,-0.086394838988781,-0.243476361036301,-0.882656276226044,-0.386162102222443,-0.267949223518372,-0.97541081905365,-0.220254048705101,0.0078662158921361,-0.927840530872345,-0.306659162044525,0.212302505970001,-0.951517939567566,-0.306687593460083,-0.0235913544893265,-0.876273334026337,-0.276302397251129,-0.394717693328857,-0.97541081905365,-0.220254048705101,0.0078662158921361,-0.951517939567566,-0.306687593460083,-0.0235913544893265,-0.927840530872345,-0.306659162044525,0.212302505970001,-0.97541081905365,-0.220254048705101,0.0078662158921361,-0.949465155601501,-0.251098215579987,0.188323676586151,-0.97541081905365,-0.220254048705101,0.0078662158921361,-0.876273334026337,-0.276302397251129,-0.394717693328857,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.973605275154114,-0.204143047332764,-0.102071523666382,-0.949465155601501,-0.251098215579987,0.188323676586151,-0.97541081905365,-0.220254048705101,0.0078662158921361,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.973605275154114,-0.204143047332764,-0.102071523666382,-0.97541081905365,-0.220254048705101,0.0078662158921361,-0.953880250453949,-0.275915741920471,0.118249617516994,-0.949465155601501,-0.251098215579987,0.188323676586151,
  457. -0.973605275154114,-0.204143047332764,-0.102071523666382,-0.973605275154114,-0.204143047332764,-0.102071523666382,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.952637791633606,-0.110222548246384,-0.28342941403389,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.953880250453949,-0.275915741920471,0.118249617516994,-0.973605275154114,-0.204143047332764,-0.102071523666382,-0.904558897018433,-0.259569078683853,-0.33822637796402,-0.973605275154114,-0.204143047332764,-0.102071523666382,-0.952637791633606,-0.110222548246384,-0.28342941403389,-0.973605275154114,-0.204143047332764,-0.102071523666382,-0.904558897018433,-0.259569078683853,-0.33822637796402,-0.915688037872314,-0.284179031848907,-0.284179031848907,-0.993204295635223,0.0551780164241791,0.102473460137844,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.979736983776093,-0.10189263522625,0.172433704137802,-0.993204295635223,0.0551780164241791,0.102473460137844,-0.991634249687195,0.102311469614506,-0.0787011310458183,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.979736983776093,-0.10189263522625,0.172433704137802,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.991634249687195,0.102311469614506,-0.0787011310458183,-0.978716969490051,4.55668454641494e-017,-0.205214828252792,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.971823513507843,-0.181723102927208,-0.150119081139565,-0.971823513507843,-0.181723102927208,-0.150119081139565,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.978716969490051,4.55668454641494e-017,-0.205214828252792,-0.979785799980164,0.0316059924662113,-0.197537466883659,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.989064633846283,0.133445218205452,-0.0627977550029755,-0.979785799980164,0.0316059924662113,-0.197537466883659,-0.967394948005676,-0.149434998631477,-0.204489976167679,
  458. -0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.989064633846283,0.133445218205452,-0.0627977550029755,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.990928769111633,0.0471870861947536,0.125832229852676,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.967394948005676,-0.149434998631477,-0.204489976167679,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.990928769111633,0.0471870861947536,0.125832229852676,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.984924018383026,-0.149708449840546,0.0866733118891716,-0.984924018383026,-0.149708449840546,0.0866733118891716,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.985352337360382,0.0945938304066658,-0.141890734434128,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.985352337360382,0.0945938304066658,-0.141890734434128,-0.972005605697632,-0.0790248438715935,-0.221269562840462,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.972005605697632,-0.0790248438715935,-0.221269562840462,-0.963021218776703,-0.228914856910706,-0.142085090279579,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.979174554347992,-0.197414219379425,0.0473794117569923,-0.979174554347992,-0.197414219379425,0.0473794117569923,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.963021218776703,-0.228914856910706,-0.142085090279579,-0.965842843055725,-0.259128570556641,-5.75381010740374e-017,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.955306172370911,-0.24474786221981,-0.165796935558319,-0.965842843055725,-0.259128570556641,-5.75381010740374e-017,-0.983003377914429,-0.125824421644211,0.133688449859619,
  459. -0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.955306172370911,-0.24474786221981,-0.165796935558319,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.993945598602295,0.0394422858953476,0.102549932897091,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.993945598602295,0.0394422858953476,0.102549932897091,-0.965366780757904,-0.259000837802887,-0.0313940420746803,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.965366780757904,-0.259000837802887,-0.0313940420746803,-0.881479978561401,-0.283332824707031,0.377777129411697,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.930056929588318,-0.299509882926941,-0.212809652090073,-0.965366780757904,-0.259000837802887,-0.0313940420746803,-0.881479978561401,-0.283332824707031,0.377777129411697,-0.965366780757904,-0.259000837802887,-0.0313940420746803,-0.969074904918671,-0.0709079131484032,0.236359730362892,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.965366780757904,-0.259000837802887,-0.0313940420746803,-0.930056929588318,-0.299509882926941,-0.212809652090073,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.969074904918671,-0.0709079131484032,0.236359730362892,-0.965366780757904,-0.259000837802887,-0.0313940420746803,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.930056929588318,-0.299509882926941,-0.212809652090073,-0.9393110871315,-0.315734833478928,-0.134187296032906,-0.969074904918671,-0.0709079131484032,0.236359730362892,-0.968503952026367,-0.236220479011536,0.078740157186985,
  460. -0.96239185333252,-0.118326872587204,0.244542196393013,-0.918841958045959,-0.290573984384537,0.267013907432556,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.9393110871315,-0.315734833478928,-0.134187296032906,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.907398462295532,-0.268274307250977,0.323507279157639,-0.96239185333252,-0.118326872587204,0.244542196393013,-0.907398462295532,-0.268274307250977,0.323507279157639,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.918841958045959,-0.290573984384537,0.267013907432556,-0.961823344230652,-0.181327342987061,-0.204978734254837,-0.965872645378113,-0.251283913850784,0.0628209784626961,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.965872645378113,-0.251283913850784,0.0628209784626961,-0.92985475063324,-0.267924249172211,0.252164006233215,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.943362414836884,-0.0786135345697403,-0.322315484285355,-0.961823344230652,-0.181327342987061,-0.204978734254837,-0.922117829322815,-0.323135316371918,0.212796419858933,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.92985475063324,-0.267924249172211,0.252164006233215,-0.943362414836884,-0.0786135345697403,-0.322315484285355,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.966319620609283,-0.219975188374519,-0.133556365966797,-0.966319620609283,-0.219975188374519,-0.133556365966797,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.922117829322815,-0.323135316371918,0.212796419858933,-0.966319620609283,-0.219975188374519,-0.133556365966797,-0.92054671049118,-0.0629433616995811,-0.385528117418289,-0.943362414836884,-0.0786135345697403,-0.322315484285355,-0.88079833984375,-0.471856266260147,0.0393213555216789,-0.966319620609283,-0.219975188374519,-0.133556365966797,-0.922117829322815,-0.323135316371918,0.212796419858933,-0.92054671049118,-0.0629433616995811,-0.385528117418289,-0.966319620609283,-0.219975188374519,-0.133556365966797,-0.942576348781586,-0.219934478402138,-0.251353681087494,
  461. -0.942576348781586,-0.219934478402138,-0.251353681087494,-0.966319620609283,-0.219975188374519,-0.133556365966797,-0.88079833984375,-0.471856266260147,0.0393213555216789,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.926067173480988,-0.109872378408909,0.361009240150452,-0.950841903686523,-0.251462310552597,0.180738538503647,-0.875047266483307,-0.46511521935463,-0.134016245603561,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.950841903686523,-0.251462310552597,0.180738538503647,-0.926067173480988,-0.109872378408909,0.361009240150452,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.948851823806763,-0.0784175023436546,0.305828273296356,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.875047266483307,-0.46511521935463,-0.134016245603561,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.948851823806763,-0.0784175023436546,0.305828273296356,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.976014971733093,-0.165292844176292,0.141679584980011,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.948851823806763,-0.0784175023436546,0.305828273296356,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.914719521999359,-0.402161180973053,-0.0394275672733784,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.903441667556763,-0.416368782520294,-0.102128185331821,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.972646355628967,-0.227473735809326,0.0470635369420052,-0.903441667556763,-0.416368782520294,-0.102128185331821,-0.914719521999359,-0.402161180973053,-0.0394275672733784,-0.99277251958847,0.110308051109314,0.0472748801112175,
  462. -0.994688630104065,-0.102626599371433,0.00789435394108295,-0.980098307132721,0.0313631445169449,0.196019649505615,-0.99277251958847,0.110308051109314,0.0472748801112175,-0.991542160511017,0.0314775295555592,-0.125910118222237,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.980098307132721,0.0313631445169449,0.196019649505615,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.963411450386047,-0.189523562788963,0.189523562788963,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.991542160511017,0.0314775295555592,-0.125910118222237,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.963411450386047,-0.189523562788963,0.189523562788963,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.989064633846283,0.0627977550029755,-0.133445218205452,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.989064633846283,0.0627977550029755,-0.133445218205452,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.990500032901764,0.11791667342186,0.0707499980926514,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.966438949108124,-0.235716819763184,0.102143943309784,-0.990500032901764,0.11791667342186,0.0707499980926514,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.984221458435059,-0.0629901736974716,0.165349200367928,-0.984221458435059,-0.0629901736974716,0.165349200367928,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.966438949108124,-0.235716819763184,0.102143943309784,-0.984740495681763,-0.0157558489590883,-0.173314332962036,
  463. -0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.984740495681763,-0.0157558489590883,-0.173314332962036,-0.972096621990204,-0.197580605745316,-0.126451596617699,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.986702144145966,0.0789361670613289,0.14208510518074,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.972096621990204,-0.197580605745316,-0.126451596617699,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.986702144145966,0.0789361670613289,0.14208510518074,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.965010166168213,-0.203985884785652,0.164757832884789,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.956021547317505,-0.292337149381638,0.0237030126154423,-0.965010166168213,-0.203985884785652,0.164757832884789,-0.983368337154388,-0.0157338920980692,0.18093977868557,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.956021547317505,-0.292337149381638,0.0237030126154423,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.983368337154388,-0.0157338920980692,0.18093977868557,-0.993976533412933,0.0946644321084023,0.0552209168672562,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.993976533412933,0.0946644321084023,0.0552209168672562,-0.967305243015289,-0.220199555158615,0.125828325748444,
  464. -0.940014123916626,-0.339668989181519,-0.0315971150994301,-0.947943031787872,-0.31598100066185,0.0394976250827312,-0.940014123916626,-0.339668989181519,-0.0315971150994301,-0.967305243015289,-0.220199555158615,0.125828325748444,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.947943031787872,-0.31598100066185,0.0394976250827312,-0.930056929588318,-0.141873091459274,0.338919043540955,-0.967305243015289,-0.220199555158615,0.125828325748444,-0.967305243015289,-0.220199555158615,0.125828325748444,-0.954859972000122,-0.284090548753738,-0.0868054553866386,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.930056929588318,-0.141873091459274,0.338919043540955,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.967305243015289,-0.220199555158615,0.125828325748444,-0.954859972000122,-0.284090548753738,-0.0868054553866386,-0.967305243015289,-0.220199555158615,0.125828325748444,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.930056929588318,-0.141873091459274,0.338919043540955,-0.909524381160736,-0.150269255042076,0.387536495923996,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.83436131477356,-0.550993263721466,-0.0157426651567221,-0.954859972000122,-0.284090548753738,-0.0868054553866386,-0.865846633911133,-0.204654648900032,0.456537306308746,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.909524381160736,-0.150269255042076,0.387536495923996,-0.83436131477356,-0.550993263721466,-0.0157426651567221,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.890841484069824,-0.354759871959686,0.283807873725891,-0.890841484069824,-0.354759871959686,0.283807873725891,-0.938346922397614,-0.244443327188492,0.244443327188492,-0.865846633911133,-0.204654648900032,0.456537306308746,-0.510735511779785,-0.44001829624176,0.738602161407471,-0.757032811641693,-0.323316097259521,0.567774593830109,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.757032811641693,-0.323316097259521,0.567774593830109,-0.939428150653839,-0.331562876701355,0.0868379026651382,
  465. -0.795226275920868,-0.480285197496414,0.370055794715881,-0.510735511779785,-0.44001829624176,0.738602161407471,-0.251345932483673,-0.251345932483673,0.934692680835724,-0.757032811641693,-0.323316097259521,0.567774593830109,-0.937472939491272,-0.346628695726395,0.0315116979181767,-0.939428150653839,-0.331562876701355,0.0868379026651382,-0.757032811641693,-0.323316097259521,0.567774593830109,-0.757032811641693,-0.323316097259521,0.567774593830109,-0.251345932483673,-0.251345932483673,0.934692680835724,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.757032811641693,-0.323316097259521,0.567774593830109,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.937472939491272,-0.346628695726395,0.0315116979181767,-0.377660185098648,-0.605829894542694,0.700244903564453,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.251345932483673,-0.251345932483673,0.934692680835724,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.882985353469849,-0.465144068002701,-0.0630703791975975,-0.937472939491272,-0.346628695726395,0.0315116979181767,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.377660185098648,-0.605829894542694,0.700244903564453,-0.700244903564453,-0.605829894542694,0.377660185098648,-0.882985353469849,-0.465144068002701,-0.0630703791975975,-0.795226275920868,-0.480285197496414,0.370055794715881,-0.700244903564453,-0.605829894542694,0.377660185098648,-0.982062458992004,0.188555985689163,4.18678393486001e-017,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977257013320923,0.141859874129295,0.157622098922729,-0.982062458992004,0.188555985689163,4.18678393486001e-017,-0.983733773231506,0.08656857162714,-0.157397404313087,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977257013320923,0.141859874129295,0.157622098922729,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.978320896625519,-0.0631174743175507,0.197242110967636,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983733773231506,0.08656857162714,-0.157397404313087,
  466. -0.984374046325684,-0.0787499248981476,-0.157499849796295,-0.978320896625519,-0.0631174743175507,0.197242110967636,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.987409830093384,-0.15798556804657,0.00789927877485752,-0.987409830093384,-0.15798556804657,0.00789927877485752,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.984374046325684,-0.0787499248981476,-0.157499849796295,-0.98015296459198,-0.0790445879101753,-0.181802555918694,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.98015296459198,-0.0790445879101753,-0.181802555918694,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.98015296459198,-0.181802555918694,0.0790445879101753,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.977378308773041,-0.189170002937317,-0.0945850014686584,-0.98015296459198,-0.181802555918694,0.0790445879101753,-0.983216226100922,-0.0235971882939339,0.180911779403687,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.977378308773041,-0.189170002937317,-0.0945850014686584,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978686571121216,-0.00789263378828764,-0.205208465456963,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983216226100922,-0.0235971882939339,0.180911779403687,
  467. -0.983003377914429,0.133688449859619,0.125824421644211,-0.978686571121216,-0.00789263378828764,-0.205208465456963,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988546967506409,0.133375376462936,-0.0706104934215546,-0.988546967506409,0.133375376462936,-0.0706104934215546,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.133688449859619,0.125824421644211,-0.980490148067474,-0.0941270589828491,-0.172566279768944,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.980490148067474,-0.0941270589828491,-0.172566279768944,-0.98345959186554,-0.180956572294235,-0.00786767713725567,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.98345959186554,-0.180956572294235,-0.00786767713725567,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983368337154388,-0.0550686232745647,0.173072829842567,
  468. -0.983947098255157,0.118073657155037,0.133816793560982,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983947098255157,0.118073657155037,0.133816793560982,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.983947098255157,0.118073657155037,0.133816793560982,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983947098255157,0.118073657155037,0.133816793560982,-0.979816317558289,0.189641863107681,0.0632139518857002,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.0788085907697678,0.197021469473839,-0.979816317558289,0.189641863107681,0.0632139518857002,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.0788085907697678,0.197021469473839,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.980275452136993,-0.118581712245941,0.158108934760094,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983003377914429,0.133688449859619,-0.125824421644211,
  469. -0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.980275452136993,-0.118581712245941,0.158108934760094,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.981305718421936,-0.188410699367523,0.0392522290349007,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.981305718421936,-0.188410699367523,0.0392522290349007,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978442788124084,0.0236720032989979,-0.205157354474068,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.982881903648376,0.117945834994316,0.141534984111786,-0.978442788124084,0.0236720032989979,-0.205157354474068,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.982881903648376,0.117945834994316,0.141534984111786,-0.955812692642212,-0.252776920795441,-0.150086298584938,-0.926495254039764,-0.345472812652588,-0.149181440472603,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.955812692642212,-0.252776920795441,-0.150086298584938,-0.865846633911133,-0.456537306308746,0.204654648900032,-0.926495254039764,-0.345472812652588,-0.149181440472603,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.955812692642212,-0.252776920795441,-0.150086298584938,-0.865846633911133,-0.456537306308746,0.204654648900032,-0.955812692642212,-0.252776920795441,-0.150086298584938,
  470. -0.960243046283722,-0.212512791156769,0.181029424071312,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.955812692642212,-0.252776920795441,-0.150086298584938,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.960243046283722,-0.212512791156769,0.181029424071312,-0.955812692642212,-0.252776920795441,-0.150086298584938,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.931795120239258,-0.252690225839615,-0.260586768388748,-0.960243046283722,-0.212512791156769,0.181029424071312,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.951517939567566,-0.25950488448143,0.165139466524124,-0.903441667556763,-0.416368782520294,0.102128185331821,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.931795120239258,-0.252690225839615,-0.260586768388748,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.889846563339233,-0.425236403942108,0.16536970436573,-0.951517939567566,-0.25950488448143,0.165139466524124,-0.889846563339233,-0.425236403942108,0.16536970436573,-0.958374738693237,-0.28279909491539,-0.0392776504158974,-0.903441667556763,-0.416368782520294,0.102128185331821,-0.958256483078003,-0.102109298110008,-0.267055064439774,-0.954384505748749,-0.291836589574814,-0.0630998015403748,-0.971490025520325,-0.205355599522591,-0.118474394083023,-0.971490025520325,-0.205355599522591,-0.118474394083023,-0.954384505748749,-0.291836589574814,-0.0630998015403748,-0.91703188419342,-0.38736692070961,0.0948653668165207,-0.971490025520325,-0.205355599522591,-0.118474394083023,-0.945556342601776,0.0393981784582138,-0.32306507229805,-0.958256483078003,-0.102109298110008,-0.267055064439774,-0.904474973678589,-0.424710005521774,0.0393249988555908,-0.971490025520325,-0.205355599522591,-0.118474394083023,-0.91703188419342,-0.38736692070961,0.0948653668165207,-0.945556342601776,0.0393981784582138,-0.32306507229805,-0.971490025520325,-0.205355599522591,-0.118474394083023,-0.959945738315582,-0.173104971647263,-0.220315411686897,
  471. -0.959945738315582,-0.173104971647263,-0.220315411686897,-0.971490025520325,-0.205355599522591,-0.118474394083023,-0.904474973678589,-0.424710005521774,0.0393249988555908,-0.959945738315582,-0.173104971647263,-0.220315411686897,-0.924417614936829,0.0869110599160194,-0.37134724855423,-0.945556342601776,0.0393981784582138,-0.32306507229805,-0.863469123840332,-0.470983147621155,-0.180543541908264,-0.959945738315582,-0.173104971647263,-0.220315411686897,-0.904474973678589,-0.424710005521774,0.0393249988555908,-0.924417614936829,0.0869110599160194,-0.37134724855423,-0.959945738315582,-0.173104971647263,-0.220315411686897,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.959945738315582,-0.173104971647263,-0.220315411686897,-0.863469123840332,-0.470983147621155,-0.180543541908264,-0.966319620609283,-0.251400232315063,0.0549937970936298,-0.915459871292114,-0.299892038106918,0.268324434757233,-0.937211275100708,-0.346531927585602,0.0393786244094372,-0.860484600067139,-0.386823356151581,-0.331562876701355,-0.966319620609283,-0.251400232315063,0.0549937970936298,-0.937211275100708,-0.346531927585602,0.0393786244094372,-0.915459871292114,-0.299892038106918,0.268324434757233,-0.966319620609283,-0.251400232315063,0.0549937970936298,-0.940131485462189,-0.244908213615417,0.237007945775986,-0.966319620609283,-0.251400232315063,0.0549937970936298,-0.860484600067139,-0.386823356151581,-0.331562876701355,-0.952726364135742,-0.157475426793098,-0.259834468364716,-0.963381409645081,-0.260586768388748,-0.0631725490093231,-0.940131485462189,-0.244908213615417,0.237007945775986,-0.966319620609283,-0.251400232315063,0.0549937970936298,-0.952726364135742,-0.157475426793098,-0.259834468364716,-0.963381409645081,-0.260586768388748,-0.0631725490093231,-0.966319620609283,-0.251400232315063,0.0549937970936298,-0.944647669792175,-0.283394277095795,0.165313333272934,-0.940131485462189,-0.244908213615417,0.237007945775986,-0.963381409645081,-0.260586768388748,-0.0631725490093231,-0.963381409645081,-0.260586768388748,-0.0631725490093231,
  472. -0.952726364135742,-0.157475426793098,-0.259834468364716,-0.945321559906006,-0.196941986680031,-0.259963423013687,-0.903023898601532,-0.369061946868896,-0.219866693019867,-0.944647669792175,-0.283394277095795,0.165313333272934,-0.963381409645081,-0.260586768388748,-0.0631725490093231,-0.890841484069824,-0.354759871959686,-0.283807873725891,-0.963381409645081,-0.260586768388748,-0.0631725490093231,-0.945321559906006,-0.196941986680031,-0.259963423013687,-0.963381409645081,-0.260586768388748,-0.0631725490093231,-0.890841484069824,-0.354759871959686,-0.283807873725891,-0.903023898601532,-0.369061946868896,-0.219866693019867,-0.994998693466187,0.0315872617065907,0.0947617813944817,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.994998693466187,0.0315872617065907,0.0947617813944817,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.952696859836578,-0.291320532560349,0.0866088047623634,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.975048899650574,-0.0864962786436081,-0.204445719718933,-0.952696859836578,-0.291320532560349,0.0866088047623634,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.975048899650574,-0.0864962786436081,-0.204445719718933,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.992402911186218,0.0787621363997459,-0.0945145636796951,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.992402911186218,0.0787621363997459,-0.0945145636796951,
  473. -0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.992495357990265,0.0315077900886536,0.118154212832451,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.956021547317505,-0.292337149381638,-0.0237030126154423,-0.992495357990265,0.0315077900886536,0.118154212832451,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.977712452411652,-0.173465117812157,0.118271671235561,-0.977712452411652,-0.173465117812157,0.118271671235561,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.956021547317505,-0.292337149381638,-0.0237030126154423,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.995495498180389,0.0948090925812721,2.10518475055093e-017,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.966230273246765,-0.157110601663589,-0.204243794083595,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.995495498180389,0.0948090925812721,2.10518475055093e-017,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.966230273246765,-0.157110601663589,-0.204243794083595,-0.95201849937439,-0.291113078594208,-0.0944150611758232,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.972005605697632,-0.221269562840462,0.0790248438715935,-0.972005605697632,-0.221269562840462,0.0790248438715935,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.95201849937439,-0.291113078594208,-0.0944150611758232,-0.954830169677734,-0.29197284579277,0.0552381053566933,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.945233583450317,-0.307200908660889,-0.110277250409126,-0.954830169677734,-0.29197284579277,0.0552381053566933,-0.977257013320923,-0.141859874129295,0.157622098922729,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.945233583450317,-0.307200908660889,-0.110277250409126,
  474. -0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.977257013320923,-0.141859874129295,0.157622098922729,-0.996086359024048,0.0158108938485384,0.0869599208235741,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.995371222496033,0.015799542888999,-0.0947972610592842,-0.995371222496033,0.015799542888999,-0.0947972610592842,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.996086359024048,0.0158108938485384,0.0869599208235741,-0.968503952026367,-0.141732275485992,0.20472440123558,-0.940278232097626,-0.316059917211533,0.126423969864845,-0.949484765529633,-0.261108309030533,0.174072206020355,-0.940278232097626,-0.316059917211533,0.126423969864845,-0.968503952026367,-0.141732275485992,0.20472440123558,-0.967036128044128,-0.251586616039276,0.039310410618782,-0.949484765529633,-0.261108309030533,0.174072206020355,-0.928759634494781,0.0236125346273184,0.369929701089859,-0.968503952026367,-0.141732275485992,0.20472440123558,-0.968503952026367,-0.141732275485992,0.20472440123558,-0.955216944217682,-0.292091131210327,0.0473661310970783,-0.967036128044128,-0.251586616039276,0.039310410618782,-0.928759634494781,0.0236125346273184,0.369929701089859,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.968503952026367,-0.141732275485992,0.20472440123558,-0.955216944217682,-0.292091131210327,0.0473661310970783,-0.968503952026367,-0.141732275485992,0.20472440123558,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.928759634494781,0.0236125346273184,0.369929701089859,-0.907483279705048,0.0394557937979698,0.418231457471848,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.833509564399719,-0.503251016139984,0.228035613894463,-0.955216944217682,-0.292091131210327,0.0473661310970783,-0.867649376392365,0.0157754439860582,0.496926456689835,-0.939662396907806,-0.11054852604866,0.323749244213104,
  475. -0.907483279705048,0.0394557937979698,0.418231457471848,-0.833509564399719,-0.503251016139984,0.228035613894463,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.891978621482849,-0.189446792006493,0.41046804189682,-0.891978621482849,-0.189446792006493,0.41046804189682,-0.939662396907806,-0.11054852604866,0.323749244213104,-0.867649376392365,0.0157754439860582,0.496926456689835,-0.511161744594574,-0.062912218272686,0.857178926467896,-0.759778082370758,-0.0395717769861221,0.648977100849152,-0.792138576507568,-0.266660511493683,0.549006938934326,-0.759778082370758,-0.0395717769861221,0.648977100849152,-0.93977963924408,-0.260611146688461,0.221124619245529,-0.792138576507568,-0.266660511493683,0.549006938934326,-0.511161744594574,-0.062912218272686,0.857178926467896,-0.251098215579987,0.188323676586151,0.949465155601501,-0.759778082370758,-0.0395717769861221,0.648977100849152,-0.939047813415527,-0.291972875595093,0.181496649980545,-0.93977963924408,-0.260611146688461,0.221124619245529,-0.759778082370758,-0.0395717769861221,0.648977100849152,-0.759778082370758,-0.0395717769861221,0.648977100849152,-0.251098215579987,0.188323676586151,0.949465155601501,-0.797205567359924,-0.260473102331162,0.544625580310822,-0.759778082370758,-0.0395717769861221,0.648977100849152,-0.797205567359924,-0.260473102331162,0.544625580310822,-0.939047813415527,-0.291972875595093,0.181496649980545,-0.37712362408638,-0.235702276229858,0.895668566226959,-0.797205567359924,-0.260473102331162,0.544625580310822,-0.251098215579987,0.188323676586151,0.949465155601501,-0.797205567359924,-0.260473102331162,0.544625580310822,-0.884305477142334,-0.442152738571167,0.150016114115715,-0.939047813415527,-0.291972875595093,0.181496649980545,-0.797205567359924,-0.260473102331162,0.544625580310822,-0.37712362408638,-0.235702276229858,0.895668566226959,-0.700244903564453,-0.377660185098648,0.605829894542694,-0.884305477142334,-0.442152738571167,0.150016114115715,-0.797205567359924,-0.260473102331162,0.544625580310822,-0.700244903564453,-0.377660185098648,0.605829894542694,
  476. -0.981184661388397,0.172688513994217,-0.0863442569971085,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.977226555347443,0.197021469473839,0.0788085907697678,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.98345959186554,0.00786767713725567,-0.180956572294235,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.977226555347443,0.197021469473839,0.0788085907697678,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.978229522705078,0.0315557904541492,0.205112636089325,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.98345959186554,0.00786767713725567,-0.180956572294235,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.978229522705078,0.0315557904541492,0.205112636089325,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.982912182807922,-0.172992557287216,0.062906377017498,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978808522224426,0.181553184986115,-0.0947234109044075,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.982912182807922,-0.172992557287216,0.062906377017498,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.978808522224426,0.181553184986115,-0.0947234109044075,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983764111995697,-0.0472206771373749,0.173142492771149,
  477. -0.979510545730591,-0.134287729859352,0.150086298584938,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.979510545730591,-0.134287729859352,0.150086298584938,-0.982912182807922,0.062906377017498,0.172992557287216,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.982912182807922,0.062906377017498,0.172992557287216,-0.983764111995697,0.173142492771149,0.0472206771373749,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.989278018474579,0.0863655433058739,-0.117771193385124,-0.989278018474579,0.0863655433058739,-0.117771193385124,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983764111995697,0.173142492771149,0.0472206771373749,-0.981456816196442,-0.157033085823059,-0.109923161566257,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.981456816196442,-0.157033085823059,-0.109923161566257,-0.983124971389771,-0.165164992213249,0.0786499977111816,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.979021966457367,0.165802091360092,-0.118430078029633,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983124971389771,-0.165164992213249,0.0786499977111816,-0.983216226100922,-0.0235971882939339,0.180911779403687,-0.979021966457367,0.165802091360092,-0.118430078029633,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.988973200321198,0.125583902001381,0.0784899368882179,-0.988973200321198,0.125583902001381,0.0784899368882179,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983216226100922,-0.0235971882939339,0.180911779403687,
  478. -0.981941223144531,-0.141399532556534,0.125688478350639,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983703315258026,0.165262147784233,0.0708266347646713,
  479. -0.979785799980164,0.197537466883659,-0.0316059924662113,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.978320896625519,0.157793685793877,0.134124636650085,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.982396006584167,0.0707325115799904,-0.172901704907417,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.978320896625519,0.157793685793877,0.134124636650085,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.982396006584167,0.0707325115799904,-0.172901704907417,-0.983459711074829,-0.102279812097549,-0.149485886096954,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.988334119319916,-0.149034515023232,0.0313756838440895,-0.988334119319916,-0.149034515023232,0.0313756838440895,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.983459711074829,-0.102279812097549,-0.149485886096954,-0.979646801948547,-0.156743481755257,0.12539479136467,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.979646801948547,-0.156743481755257,0.12539479136467,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.983124971389771,0.165164992213249,0.0786499977111816,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.98869913816452,0.109855458140373,-0.102008640766144,-0.98869913816452,0.109855458140373,-0.102008640766144,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983124971389771,0.165164992213249,0.0786499977111816,
  480. -0.964179635047913,-0.148938313126564,-0.21948803961277,-0.938288569450378,-0.236543357372284,-0.252312898635864,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.964179635047913,-0.148938313126564,-0.21948803961277,-0.88079833984375,-0.471856266260147,0.0393213555216789,-0.938288569450378,-0.236543357372284,-0.252312898635864,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.930982768535614,-0.0394484214484692,-0.362925499677658,-0.964179635047913,-0.148938313126564,-0.21948803961277,-0.88079833984375,-0.471856266260147,0.0393213555216789,-0.964179635047913,-0.148938313126564,-0.21948803961277,-0.968203842639923,-0.228275701403618,0.102330483496189,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.964179635047913,-0.148938313126564,-0.21948803961277,-0.930982768535614,-0.0394484214484692,-0.362925499677658,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.968203842639923,-0.228275701403618,0.102330483496189,-0.964179635047913,-0.148938313126564,-0.21948803961277,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.930982768535614,-0.0394484214484692,-0.362925499677658,-0.940454363822937,-0.102738715708256,-0.324022114276886,-0.968203842639923,-0.228275701403618,0.102330483496189,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.960868358612061,-0.267782956361771,0.0708837285637856,-0.918530464172363,-0.392534404993057,-0.0471041277050972,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.940454363822937,-0.102738715708256,-0.324022114276886,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.908077120780945,-0.418505132198334,0.0157926455140114,-0.960868358612061,-0.267782956361771,0.0708837285637856,-0.908077120780945,-0.418505132198334,0.0157926455140114,-0.968954622745514,-0.212697356939316,-0.126042872667313,-0.918530464172363,-0.392534404993057,-0.0471041277050972,-0.962541520595551,0.0394484214484692,-0.268249273300171,-0.965813159942627,-0.212007775902748,-0.149190649390221,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.979908049106598,-0.110634781420231,-0.165952160954475,
  481. -0.965813159942627,-0.212007775902748,-0.149190649390221,-0.930982768535614,-0.362925499677658,-0.0394484214484692,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.962541520595551,0.0394484214484692,-0.268249273300171,-0.923035740852356,-0.370792120695114,-0.1025595292449,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.930982768535614,-0.362925499677658,-0.0394484214484692,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.979908049106598,-0.110634781420231,-0.165952160954475,-0.923035740852356,-0.370792120695114,-0.1025595292449,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.920461237430573,0.251750081777573,-0.298953235149384,-0.942779958248138,0.188555985689163,-0.274977475404739,-0.881125390529633,-0.338289201259613,-0.330422013998032,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.923035740852356,-0.370792120695114,-0.1025595292449,-0.920461237430573,0.251750081777573,-0.298953235149384,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.943129301071167,0.0392970517277718,-0.330095231533051,-0.943129301071167,0.0392970517277718,-0.330095231533051,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.881125390529633,-0.338289201259613,-0.330422013998032,-0.974958479404449,-0.220151916146278,-0.0314502716064453,-0.927869081497192,-0.338121801614761,0.157265961170197,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.873907387256622,-0.204699024558067,-0.440890222787857,-0.974958479404449,-0.220151916146278,-0.0314502716064453,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.927869081497192,-0.338121801614761,0.157265961170197,-0.974958479404449,-0.220151916146278,-0.0314502716064453,-0.948881089687347,-0.282311707735062,0.141155853867531,-0.974958479404449,-0.220151916146278,-0.0314502716064453,
  482. -0.873907387256622,-0.204699024558067,-0.440890222787857,-0.95899623632431,-0.0157212484627962,-0.282982468605042,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.948881089687347,-0.282311707735062,0.141155853867531,-0.974958479404449,-0.220151916146278,-0.0314502716064453,-0.95899623632431,-0.0157212484627962,-0.282982468605042,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.974958479404449,-0.220151916146278,-0.0314502716064453,-0.954384505748749,-0.291836589574814,0.0630998015403748,-0.948881089687347,-0.282311707735062,0.141155853867531,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.95899623632431,-0.0157212484627962,-0.282982468605042,-0.952608287334442,-0.0551095679402351,-0.299166232347488,-0.915317356586456,-0.228829339146614,-0.331407994031906,-0.954384505748749,-0.291836589574814,0.0630998015403748,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.904810845851898,-0.196698009967804,-0.377660185098648,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.952608287334442,-0.0551095679402351,-0.299166232347488,-0.971958875656128,-0.18812108039856,-0.141090795397758,-0.904810845851898,-0.196698009967804,-0.377660185098648,-0.915317356586456,-0.228829339146614,-0.331407994031906,-0.993389487266541,0.0315361730754375,0.110376611351967,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.993389487266541,0.0315361730754375,0.110376611351967,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.963171243667603,-0.26842474937439,-0.0157896913588047,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.978229522705078,0.0315557904541492,-0.205112636089325,-0.963171243667603,-0.26842474937439,-0.0157896913588047,-0.994347870349884,-0.078916497528553,-0.0710248425602913,
  483. -0.972005605697632,-0.158049687743187,-0.173854663968086,-0.972005605697632,-0.158049687743187,-0.173854663968086,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.978229522705078,0.0315557904541492,-0.205112636089325,-0.979296684265137,0.0710779801011086,-0.189541295170784,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.979296684265137,0.0710779801011086,-0.189541295170784,-0.967395067214966,-0.110110007226467,-0.22808501124382,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990744948387146,0.0235891658812761,0.133671939373016,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.967395067214966,-0.110110007226467,-0.22808501124382,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.990744948387146,0.0235891658812761,0.133671939373016,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.984954476356506,0.118194542825222,-0.126074180006981,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990928769111633,0.125832229852676,0.0471870861947536,-0.984954476356506,0.118194542825222,-0.126074180006981,-0.972552359104156,-0.0395346470177174,-0.229300960898399,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990928769111633,0.125832229852676,0.0471870861947536,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.972552359104156,-0.0395346470177174,-0.229300960898399,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,
  484. -0.980244815349579,-0.197630003094673,0.00790520012378693,-0.980244815349579,-0.197630003094673,0.00790520012378693,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.964772641658783,-0.258841425180435,-0.0470620803534985,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.964772641658783,-0.258841425180435,-0.0470620803534985,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.994440853595734,0.0236771646887064,0.102601043879986,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.993698358535767,0.0867514461278915,-0.0709784477949142,-0.993698358535767,0.0867514461278915,-0.0709784477949142,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.994440853595734,0.0236771646887064,0.102601043879986
  485. }
  486. NormalsW: *3783 {
  487. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  488. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  489. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  490. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  491. }
  492. }
  493. LayerElementBinormal: 0 {
  494. Version: 102
  495. Name: "UVmap_0"
  496. MappingInformationType: "ByPolygonVertex"
  497. ReferenceInformationType: "Direct"
  498. Binormals: *11349 {
  499. a: 0.187854617834091,-0.968943417072296,0.16080816090107,0.188804611563683,-0.968701481819153,0.161152794957161,-0.0167082417756319,-0.996296584606171,0.0843439474701881,0.208939403295517,-0.852078676223755,-0.479902565479279,0.192032501101494,-0.856752812862396,-0.478641986846924,0.258261412382126,-0.836812615394592,-0.482747972011566,0.168026268482208,-0.909470856189728,0.380302459001541,0.0450644344091415,-0.935807704925537,0.349618554115295,-0.105232611298561,-0.946686148643494,0.304485529661179,0.209927126765251,-0.853682518005371,-0.476609647274017,0.156355530023575,-0.870033800601959,-0.467540681362152,0.192364528775215,-0.859369397163391,-0.473793387413025,0.112841315567493,-0.900503277778625,-0.419953256845474,0.194612875580788,-0.877695262432098,-0.437923431396484,0.168266415596008,-0.885813236236572,-0.432459712028503,0.173603847622871,-0.89252769947052,-0.416240274906158,0.125623151659966,-0.90621554851532,-0.403722941875458,0.116728439927101,-0.908480405807495,-0.401295155286789,0.167816415429115,-0.985576689243317,0.0218237116932869,0.196156397461891,-0.97994601726532,0.0350511260330677,0.104341171681881,-0.994512557983398,-0.0075989281758666,0.125668153166771,-0.925701856613159,-0.356768250465393,0.138826817274094,-0.92412257194519,-0.355984002351761,0.198620319366455,-0.91483610868454,-0.351603329181671,0.129904940724373,-0.959160506725311,-0.251268833875656,0.0908800885081291,-0.961545050144196,-0.259175509214401,0.245988935232162,-0.942776381969452,-0.225082725286484,0.189763054251671,-0.870094180107117,-0.454891413450241,0.301905542612076,-0.848726153373718,-0.434185445308685,0.141503691673279,-0.87561571598053,-0.46181583404541,0.116810262203217,-0.924713969230652,-0.362297534942627,-0.00947241485118866,-0.911181807518005,-0.41189569234848,0.15704770386219,-0.925415992736816,-0.344878882169724,0.0316237695515156,-0.868304371833801,-0.495022922754288,0.137828126549721,-0.883896887302399,-0.446911543607712,0.0796553492546082,-0.876839339733124,-0.474138975143433,0.121638752520084,-0.916268706321716,-0.381648808717728,
  500. 0.140717208385468,-0.914012610912323,-0.3804991543293,0.0645514354109764,-0.920976042747498,-0.384234726428986,0.0782106593251228,-0.881564497947693,-0.465539664030075,0.169634014368057,-0.886950612068176,-0.429584562778473,0.0260103642940521,-0.874717533588409,-0.483934611082077,0.123949006199837,-0.922516703605652,-0.365512847900391,0.0728865340352058,-0.926774740219116,-0.368478387594223,0.139485791325569,-0.920731067657471,-0.364414751529694,0.0602701492607594,-0.931485593318939,-0.358750909566879,0.139529094099998,-0.920503377914429,-0.364972919225693,0.0727611184120178,-0.930156052112579,-0.35988262295723,0.110705293715,-0.918977797031403,-0.378449559211731,0.0731141120195389,-0.919923901557922,-0.385220170021057,0.121795907616615,-0.918440937995911,-0.376340568065643,0.109000198543072,-0.914718747138977,-0.38911247253418,0.118748962879181,-0.912512600421906,-0.391432464122772,0.129057064652443,-0.910072147846222,-0.39384388923645,0.0727672874927521,-0.92999541759491,-0.360296338796616,0.108318194746971,-0.925226449966431,-0.363625079393387,0.0603157430887222,-0.93137800693512,-0.359022289514542,0.073109544813633,-0.920071840286255,-0.384867399930954,0.110780216753483,-0.91916298866272,-0.377977669239044,0.108570091426373,-0.919253766536713,-0.378398060798645,0.129070609807968,-0.910087168216705,-0.393804728984833,0.062599740922451,-0.924013137817383,-0.377201855182648,0.109020993113518,-0.914771258831024,-0.388983368873596,0.108645558357239,-0.91727477312088,-0.383149027824402,0.10999258607626,-0.917208135128021,-0.38292407989502,0.0602086298167706,-0.918529331684113,-0.390741348266602,0.0639007836580276,-0.926924526691437,-0.369766891002655,0.131179839372635,-0.912408411502838,-0.387689024209976,0.042268380522728,-0.930585265159607,-0.36362686753273,0.0419858247041702,-0.930253088474274,-0.364508420228958,-0.0612908937036991,-0.939838409423828,-0.33607617020607,0.0638592839241028,-0.926832437515259,-0.370004802942276,-0.0739870667457581,-0.905831396579742,-0.41712760925293,0.108689434826374,-0.916076421737671,-0.385993182659149,
  501. 0.059309009462595,-0.916422128677368,-0.395794093608856,-0.062170073390007,-0.937759637832642,-0.341674983501434,0.0406352952122688,-0.928653717041016,-0.368715465068817,-0.107112675905228,-0.938387513160706,-0.328566282987595,-0.11540836840868,-0.923388957977295,-0.366106271743774,-0.221886277198792,-0.909489572048187,-0.351561039686203,-0.066812664270401,-0.926116764545441,-0.371273308992386,-0.13017438352108,-0.912644684314728,-0.387471824884415,0.108560852706432,-0.919489443302155,-0.377827644348145,-0.069293387234211,-0.919425010681152,-0.387112438678741,-0.221798688173294,-0.913395881652832,-0.341340452432632,-0.12993711233139,-0.925733387470245,-0.355153530836105,-0.0655015707015991,-0.929519653320313,-0.362908840179443,-0.221912920475006,-0.887393176555634,-0.404089152812958,-0.0487475953996181,-0.917414367198944,-0.394936144351959,-0.13022643327713,-0.906878769397736,-0.400764286518097,-0.0512180998921394,-0.926218330860138,-0.373492151498795,0.108510941267014,-0.920738339424133,-0.374788403511047,-0.130060061812401,-0.920160710811615,-0.369308233261108,-0.0466477610170841,-0.909618139266968,-0.412818223237991,-0.221796676516533,-0.880937993526459,-0.418036490678787,-0.118312552571297,-0.901391863822937,-0.416527152061462,0.0610971637070179,-0.929520666599274,-0.363673597574234,0.108367830514908,-0.924117565155029,-0.366419434547424,0.119263768196106,-0.922569334506989,-0.366935938596725,-0.0534901022911072,-0.933952271938324,-0.353372246026993,0.119311854243279,-0.922395586967468,-0.367356866598129,0.108374424278736,-0.923967778682709,-0.366794943809509,0.19668373465538,-0.850496411323547,-0.487823128700256,0.0916844829916954,-0.832923054695129,-0.545741021633148,0.135841190814972,-0.84177827835083,-0.522452473640442,-0.1092419475317,-0.883087515830994,-0.456314235925674,0.0947268381714821,-0.908044159412384,-0.408023059368134,-0.043047733604908,-0.895604491233826,-0.44276350736618,0.122990682721138,-0.908231377601624,-0.399986356496811,-0.0459693372249603,-0.907039165496826,-0.41852942109108,0.0935505330562592,-0.90992546081543,-0.404084056615829,
  502. 0.13251668214798,-0.862020373344421,-0.489244610071182,0.120658971369267,-0.860837340354919,-0.4943687915802,0.186043739318848,-0.865564942359924,-0.46495708823204,0.105334669351578,-0.890083432197571,-0.443459421396255,-0.0986232310533524,-0.860039532184601,-0.500605344772339,0.14002189040184,-0.89115297794342,-0.431555658578873,0.137109741568565,-0.895629525184631,-0.423141419887543,0.16321237385273,-0.894733667373657,-0.415708392858505,0.102074809372425,-0.895795702934265,-0.43258610367775,0.187609404325485,-0.65490448474884,0.732053816318512,0.181520938873291,-0.657476425170898,0.731283128261566,-0.0146479457616806,-0.723484575748444,0.690185129642487,0.203735440969467,-0.965782999992371,0.16048364341259,0.186438411474228,-0.968603610992432,0.164462223649025,0.258532494306564,-0.954685866832733,0.147430866956711,0.160838648676872,-0.473572880029678,0.865944385528564,0.0437166951596737,-0.511140108108521,0.858384907245636,-0.102726809680462,-0.546989560127258,0.830812633037567,0.204864740371704,-0.964866638183594,0.164507955312729,0.151176780462265,-0.971648514270782,0.181782424449921,0.186772257089615,-0.967510044574738,0.170412600040436,0.113664865493774,-0.965065121650696,0.236071169376373,0.188832461833954,-0.959264814853668,0.210127145051956,0.163077116012573,-0.961951613426209,0.219214305281639,0.168446823954582,-0.956976711750031,0.236265197396278,0.128056600689888,-0.95930290222168,0.251673310995102,0.117562040686607,-0.959612131118774,0.255585014820099,0.166774526238441,-0.755285799503326,0.633821487426758,0.188962683081627,-0.745460212230682,0.639204323291779,0.105051688849926,-0.779962301254272,0.616946458816528,0.126594230532646,-0.945064008235931,0.301376700401306,0.141268730163574,-0.94311910867691,0.300947666168213,0.192349746823311,-0.934689283370972,0.298927694559097,0.131821289658546,-0.904846370220184,0.404816299676895,0.0955115556716919,-0.91129732131958,0.400518089532852,0.245133653283119,-0.876314640045166,0.414707601070404,0.190007835626602,-0.963206708431244,0.19007870554924,0.301327645778656,-0.93381941318512,0.192829102277756,
  503. 0.146375387907028,-0.971133828163147,0.188343673944473,0.121310658752918,-0.946807503700256,0.298059195280075,-0.0147052276879549,-0.968837559223175,0.24726040661335,0.157861888408661,-0.937284827232361,0.310768067836761,0.02665064483881,-0.987489223480225,0.155418157577515,0.142311826348305,-0.967956900596619,0.206898003816605,0.0790710374712944,-0.980658710002899,0.179042652249336,0.12655970454216,-0.952795743942261,0.27597638964653,0.143273785710335,-0.950562417507172,0.275506317615509,0.0642455220222473,-0.958709955215454,0.277033686637878,0.0776479095220566,-0.97894674539566,0.188769906759262,0.167193040251732,-0.961168169975281,0.219550088047981,0.0208355057984591,-0.985486745834351,0.168468728661537,0.124870270490646,-0.948055148124695,0.292573034763336,0.0698827132582664,-0.953573882579803,0.292939215898514,0.141965299844742,-0.945738255977631,0.292275577783585,0.0600505731999874,-0.950939416885376,0.303493171930313,0.142040342092514,-0.946018397808075,0.291331112384796,0.0697517022490501,-0.950699925422668,0.302166283130646,0.11035643517971,-0.953554153442383,0.280278235673904,0.07011479139328,-0.958815217018127,0.275240808725357,0.122740365564823,-0.951608240604401,0.281738460063934,0.108652159571648,-0.95688396692276,0.269384026527405,0.119591265916824,-0.956580817699432,0.265802592039108,0.13148920238018,-0.95610636472702,0.26186129450798,0.0697573125362396,-0.950821816921234,0.301781266927719,0.110132910311222,-0.94898909330368,0.295449793338776,0.0600944645702839,-0.951024174690247,0.303219109773636,0.0701103284955025,-0.958712518215179,0.275599092245102,0.110431618988514,-0.95340371131897,0.280760109424591,0.110390856862068,-0.953409850597382,0.28075510263443,0.13149781525135,-0.956098139286041,0.261886864900589,0.0652130544185638,-0.956736743450165,0.283552646636963,0.108672730624676,-0.956844747066498,0.269515156745911,0.110472746193409,-0.954863727092743,0.275737106800079,0.109634131193161,-0.954984486103058,0.27565410733223,0.0630192682147026,-0.960588216781616,0.270737826824188,0.0665143132209778,-0.954358696937561,0.291162341833115,
  504. 0.133591771125793,-0.954080998897552,0.268109738826752,0.0440147705376148,-0.953380882740021,0.298542529344559,0.043743908405304,-0.953656375408173,0.297701388597488,-0.0590368285775185,-0.943591713905334,0.325805872678757,0.0664868727326393,-0.954409539699554,0.291001796722412,-0.0715387314558029,-0.967540562152863,0.242378935217857,0.110518239438534,-0.955683708190918,0.272863179445267,0.0621420443058014,-0.962073385715485,0.265618562698364,-0.0599097013473511,-0.945468068122864,0.320158064365387,0.0423728600144386,-0.955037534236908,0.29344168305397,-0.102943070232868,-0.938221752643585,0.33036744594574,-0.111312173306942,-0.949766635894775,0.292494714260101,-0.221419483423233,-0.929394125938416,0.295296639204025,-0.0644721463322639,-0.954787373542786,0.290214508771896,-0.129727348685265,-0.954269528388977,0.26933354139328,0.110384598374367,-0.953299880027771,0.281130850315094,-0.066900797188282,-0.959406077861786,0.273978590965271,-0.221359759569168,-0.92602813243866,0.305731385946274,-0.129513904452324,-0.944253981113434,0.302672237157822,-0.0631663054227829,-0.952204763889313,0.298858135938644,-0.221301630139351,-0.945059239864349,0.240600436925888,-0.0470236837863922,-0.962646722793579,0.266646087169647,-0.129769876599312,-0.958098828792572,0.255355477333069,-0.0495410971343517,-0.956149458885193,0.288658648729324,0.110333994030952,-0.952415645122528,0.284131944179535,-0.129626527428627,-0.948772728443146,0.288144707679749,-0.0448625758290291,-0.9677694439888,0.2478097230196,-0.221147060394287,-0.94876354932785,0.225702539086342,-0.119134910404682,-0.963562846183777,0.239485919475555,0.0608591176569462,-0.952487885951996,0.298434495925903,0.110184043645859,-0.949848294258118,0.292656540870667,0.125573202967644,-0.948538839817047,0.290698498487473,-0.0518686212599278,-0.949620425701141,0.309080362319946,0.125624388456345,-0.948676645755768,0.290226131677628,0.110191330313683,-0.949971497058868,0.292253345251083,0.194665431976318,-0.969173491001129,0.151023626327515,0.0908693969249725,-0.991273939609528,0.0954929515719414,
  505. 0.141462922096252,-0.982316970825195,0.122644618153572,-0.109798677265644,-0.974247872829437,0.196939826011658,0.0908497422933578,-0.964112877845764,0.249464705586433,-0.041199017316103,-0.975523352622986,0.216001957654953,0.129110977053642,-0.957700133323669,0.257178902626038,-0.0441661179065704,-0.969332695007324,0.241751044988632,0.0895180627703667,-0.96296888589859,0.254317462444305,0.138278305530548,-0.977302670478821,0.160495430231094,0.116746470332146,-0.981477379798889,0.151896581053734,0.18382316827774,-0.966618061065674,0.178489655256271,0.101429924368858,-0.97234982252121,0.210351556539536,-0.0989020019769669,-0.984025835990906,0.148025527596474,0.140145495533943,-0.965043485164642,0.221473574638367,0.137205392122269,-0.963273167610168,0.230823710560799,0.160586073994637,-0.95851069688797,0.235519453883171,0.0981170535087585,-0.969935476779938,0.222706690430641,0.22569528222084,-0.909716844558716,0.348535418510437,0.222193524241447,-0.910993456840515,0.347449243068695,0.023652870208025,-0.959918022155762,0.279281079769135,0.243025973439217,-0.921582698822021,-0.302694201469421,0.226005494594574,-0.92662250995636,-0.300486594438553,0.294752568006516,-0.904281675815582,-0.308861702680588,0.197708413004875,-0.810604512691498,0.551209330558777,0.076911598443985,-0.846820175647736,0.526289105415344,-0.067071370780468,-0.871520817279816,0.485750108957291,0.24411216378212,-0.922533750534058,-0.298899322748184,0.192522987723351,-0.938360452651978,-0.287079393863678,0.226416185498238,-0.928306400775909,-0.294928669929504,0.156506314873695,-0.959006905555725,-0.236244797706604,0.229057967662811,-0.939137697219849,-0.256033271551132,0.205002635717392,-0.946399748325348,-0.249602422118187,0.210587501525879,-0.949557781219482,-0.232363760471344,0.162575736641884,-0.962486267089844,-0.217231526970863,0.160512983798981,-0.962980985641479,-0.216571390628815,0.203612118959427,-0.955373167991638,0.214019328355789,0.230849042534828,-0.946481108665466,0.225571155548096,0.143654897809029,-0.971573889255524,0.188168540596962,
  506. 0.170099020004272,-0.971051633358002,-0.167705550789833,0.180243149399757,-0.969282686710358,-0.167342871427536,0.233703464269638,-0.958184242248535,-0.165123149752617,0.171215862035751,-0.983555018901825,-0.0574867911636829,0.137732446193695,-0.98841392993927,-0.0637789815664291,0.281525731086731,-0.958878636360168,-0.0359866246581078,0.225079849362373,-0.934638500213623,-0.275299787521362,0.335274428129196,-0.905701100826263,-0.259415805339813,0.186894908547401,-0.941668629646301,-0.279875725507736,0.162814408540726,-0.971809327602386,-0.170523151755333,0.0294732414186001,-0.973958969116211,-0.224800854921341,0.193733364343643,-0.968373954296112,-0.157223641872406,0.0697165802121162,-0.946659982204437,-0.31460240483284,0.182856529951096,-0.94786661863327,-0.260983735322952,0.115307547152042,-0.948932290077209,-0.29365262389183,0.168087035417557,-0.966528415679932,-0.193828701972961,0.182072341442108,-0.964096009731293,-0.193309724330902,0.101547718048096,-0.975381672382355,-0.195751518011093,0.11399507522583,-0.952003598213196,-0.284067630767822,0.209934234619141,-0.946287035942078,-0.245903715491295,0.064244456589222,-0.950985193252563,-0.302489697933197,0.168346345424652,-0.969735682010651,-0.176839560270309,0.105190269649029,-0.978135704994202,-0.179403230547905,0.180883318185806,-0.967584729194641,-0.176241174340248,0.0975808277726173,-0.980861008167267,-0.168492749333382,0.180952981114388,-0.967392802238464,-0.177221044898033,0.105136148631573,-0.979935526847839,-0.169330582022667,0.147566616535187,-0.970479965209961,-0.190768748521805,0.105261467397213,-0.97453111410141,-0.19801327586174,0.166291147470474,-0.968099236488342,-0.187433332204819,0.14588275551796,-0.968614935874939,-0.201254293322563,0.16264209151268,-0.964953422546387,-0.205942898988724,0.166017904877663,-0.964177548885345,-0.206881165504456,0.105138249695301,-0.979873776435852,-0.169686421751976,0.146035239100456,-0.973755061626434,-0.17457027733326,0.0976198613643646,-0.980811357498169,-0.168759003281593,0.105260454118252,-0.974603176116943,-0.197658598423004,
  507. 0.147645220160484,-0.970564723014832,-0.190276175737381,0.146236136555672,-0.970728635787964,-0.190528109669685,0.1660325974226,-0.964184522628784,-0.206836879253387,0.0967375785112381,-0.977618455886841,-0.186826154589653,0.145905569195747,-0.968640804290771,-0.201113060116768,0.146291941404343,-0.969712436199188,-0.195592656731606,0.146807298064232,-0.969650626182556,-0.195513159036636,0.0938353091478348,-0.974594414234161,-0.203373476862907,0.0981244817376137,-0.978972494602203,-0.178842067718506,0.16819041967392,-0.965189337730408,-0.200304076075554,0.0797449052333832,-0.98167484998703,-0.173076093196869,0.0794398114085197,-0.981525182723999,-0.174062430858612,-0.0218347199261189,-0.989220201969147,-0.144798666238785,0.0980527848005295,-0.978903949260712,-0.179256051778793,-0.0348201766610146,-0.972351253032684,-0.230912759900093,0.146323904395103,-0.969083309173584,-0.198663115501404,0.0928428173065186,-0.973502099514008,-0.208983272314072,-0.0227267947047949,-0.988316118717194,-0.150714531540871,0.07805485278368,-0.980832815170288,-0.178533986210823,-0.0632743835449219,-0.98826402425766,-0.139034584164619,-0.0718367695808411,-0.981417238712311,-0.177931815385818,-0.184868380427361,-0.968678176403046,-0.165789932012558,-0.0274506118148565,-0.982907831668854,-0.182040885090828,-0.0915205627679825,-0.975399374961853,-0.200549528002739,0.146228119730949,-0.970866799354553,-0.189828872680664,-0.029985761269927,-0.97957056760788,-0.198852941393852,-0.184768289327621,-0.970489144325256,-0.154956996440887,-0.0909972563385963,-0.981874525547028,-0.16625851392746,-0.0261099394410849,-0.984549343585968,-0.173150107264519,-0.185028940439224,-0.957351744174957,-0.221905469894409,-0.0113297002390027,-0.978249669075012,-0.2071213722229,-0.0917055979371071,-0.972352683544159,-0.214756473898888,-0.0136633552610874,-0.982805669307709,-0.184136658906937,0.146189451217651,-0.971510708332062,-0.186535835266113,-0.0912395268678665,-0.979192733764648,-0.181264892220497,-0.00938649848103523,-0.974052846431732,-0.226126044988632,-0.18496909737587,-0.953790307044983,-0.236792057752609,
  508. -0.0763429030776024,-0.969946622848511,-0.231030911207199,0.0983469411730766,-0.979870915412903,-0.173726469278336,0.146075621247292,-0.973210513591766,-0.177548184990883,0.16261550784111,-0.970357358455658,-0.178781569004059,-0.0158193968236446,-0.986541628837585,-0.16274356842041,0.162662342190742,-0.970262169837952,-0.179254755377769,0.146080926060677,-0.97313666343689,-0.177947863936424,0.236137360334396,-0.92105370759964,-0.309676021337509,0.125848188996315,-0.919313728809357,-0.372860014438629,0.176862716674805,-0.921964824199677,-0.344529628753662,-0.0676288083195686,-0.959606528282166,-0.273096650838852,0.13472044467926,-0.965871572494507,-0.221230030059814,-0.00604707840830088,-0.965991675853729,-0.258502900600433,0.165928408503532,-0.962830662727356,-0.213131159543991,-0.00875600520521402,-0.972612917423248,-0.232266247272491,0.133646249771118,-0.966931819915771,-0.217213064432144,0.174146175384521,-0.935160100460052,-0.308461904525757,0.159395173192024,-0.935603737831116,-0.315022259950638,0.225916773080826,-0.931636810302734,-0.284630507230759,0.144867956638336,-0.954831957817078,-0.259440094232559,-0.0574355199933052,-0.945385754108429,-0.320853739976883,0.179752930998802,-0.952080965042114,-0.247448310256004,0.176957592368126,-0.954898595809937,-0.238442167639732,0.203765049576759,-0.951355338096619,-0.231090724468231,0.141777247190475,-0.958393812179565,-0.24775093793869,0.192976087331772,-0.981172263622284,-0.0078302389010787,0.18318572640419,-0.983007967472076,-0.0117607228457928,-0.015721557661891,-0.995856881141663,-0.0895651653409004,0.206732049584389,-0.756423652172089,-0.62055230140686,0.186367303133011,-0.762161195278168,-0.61998188495636,0.265086024999619,-0.737928926944733,-0.620637059211731,0.162975490093231,-0.962869167327881,0.215225726366043,0.0409267768263817,-0.982707142829895,0.180587098002434,-0.103169560432434,-0.98530375957489,0.136134475469589,0.207768589258194,-0.75869482755661,-0.617425620555878,0.149574413895607,-0.777657985687256,-0.61063539981842,0.186718970537186,-0.765916705131531,-0.615229785442352,
  509. 0.115312933921814,-0.813222169876099,-0.570414423942566,0.188895225524902,-0.790320634841919,-0.582848131656647,0.161541357636452,-0.799440085887909,-0.578619003295898,0.166950583457947,-0.80900764465332,-0.563590466976166,0.128484755754471,-0.821482062339783,-0.555570840835571,0.119261890649796,-0.82425594329834,-0.553515076637268,0.163902923464775,-0.974764466285706,-0.151559233665466,0.190326452255249,-0.971896290779114,-0.138540580868721,0.102847918868065,-0.978114068508148,-0.180873453617096,0.128558799624443,-0.849380731582642,-0.511883974075317,0.137393981218338,-0.848421990871429,-0.511178135871887,0.192676454782486,-0.840851306915283,-0.505811095237732,0.128428384661675,-0.901029467582703,-0.414309024810791,0.0949575081467628,-0.901907384395599,-0.421362161636353,0.242133438587189,-0.889976799488068,-0.386410117149353,0.186828106641769,-0.778187274932861,-0.599599719047546,0.298565357923508,-0.76110702753067,-0.575825393199921,0.145034655928612,-0.781864762306213,-0.606343507766724,0.120429776608944,-0.848135113716125,-0.515910387039185,-0.0135416965931654,-0.824828863143921,-0.565220296382904,0.154585421085358,-0.851271152496338,-0.501438677310944,0.0275093615055084,-0.768039464950562,-0.639811515808105,0.141129225492477,-0.793443560600281,-0.592055678367615,0.0744532942771912,-0.780001044273376,-0.621333360671997,0.125503748655319,-0.83571058511734,-0.534636914730072,0.139298230409622,-0.834233939647675,-0.533525884151459,0.0592654198408127,-0.840529263019562,-0.538514733314514,0.0729629471898079,-0.786464095115662,-0.613311231136322,0.170830190181732,-0.799000263214111,-0.576555013656616,0.021759582683444,-0.776503503322601,-0.629737079143524,0.126810342073441,-0.8447505235672,-0.519919097423553,0.0715338364243507,-0.848769962787628,-0.523901224136353,0.138060063123703,-0.8436079621315,-0.51890766620636,0.0549690946936607,-0.855618178844452,-0.514680504798889,0.138089701533318,-0.843390047550201,-0.519253730773926,0.0714253112673759,-0.853682219982147,-0.515873193740845,0.109376400709152,-0.839311718940735,-0.532534182071686,
  510. 0.0717263519763947,-0.839022994041443,-0.539347648620605,0.124690532684326,-0.839076638221741,-0.529530584812164,0.107704788446426,-0.83359432220459,-0.541775226593018,0.121341913938522,-0.829983115196228,-0.544430196285248,0.131940126419067,-0.827053666114807,-0.546419262886047,0.0714303851127625,-0.853460133075714,-0.516239762306213,0.104392677545547,-0.848646342754364,-0.518557190895081,0.0550036057829857,-0.855500280857086,-0.514872610569,0.0717225968837738,-0.839228212833405,-0.539028704166412,0.109453596174717,-0.839574337005615,-0.532104134559631,0.104707673192024,-0.839598774909973,-0.53301990032196,0.131949499249458,-0.827068686485291,-0.546394288539886,0.0660926699638367,-0.843712568283081,-0.532710909843445,0.107727266848087,-0.833671569824219,-0.541651725769043,0.104795232415199,-0.836868643760681,-0.537279188632965,0.10864046216011,-0.836801469326019,-0.536619484424591,0.0639469027519226,-0.836796402931213,-0.543767035007477,0.0673938393592834,-0.847852528095245,-0.525931835174561,0.134041666984558,-0.830404043197632,-0.540797591209412,0.0380729660391808,-0.85417377948761,-0.518592000007629,0.0377462133765221,-0.85362434387207,-0.519519627094269,-0.0612376779317856,-0.867208957672119,-0.494164615869522,0.0673708766698837,-0.847779750823975,-0.526051998138428,-0.0732221230864525,-0.819754958152771,-0.568014442920685,0.104850262403488,-0.835096478462219,-0.540018737316132,0.0630713701248169,-0.833942890167236,-0.548234760761261,-0.0620719976723194,-0.864182591438293,-0.499334961175919,0.0363648273050785,-0.851290822029114,-0.523432612419128,-0.100272729992867,-0.866766631603241,-0.4885293841362,-0.108378037810326,-0.846176028251648,-0.521766543388367,-0.222494423389435,-0.834535300731659,-0.504030764102936,-0.0664635896682739,-0.847585678100586,-0.52648001909256,-0.124456256628037,-0.832267820835114,-0.540223062038422,0.104689106345177,-0.840164184570313,-0.532131969928741,-0.0688013955950737,-0.838280558586121,-0.540880799293518,-0.222444757819176,-0.84015828371048,-0.494623392820358,-0.124258369207382,-0.85036164522171,-0.511317014694214,
  511. -0.0652226880192757,-0.852390646934509,-0.518821954727173,-0.222320720553398,-0.803626596927643,-0.552048683166504,-0.0512898936867714,-0.83461731672287,-0.548437178134918,-0.124495849013329,-0.824487090110779,-0.552016139030457,-0.0538513287901878,-0.847198843955994,-0.528539657592773,0.104625776410103,-0.842061221599579,-0.529137313365936,-0.124362260103226,-0.842607140541077,-0.523972511291504,-0.049154594540596,-0.823882818222046,-0.564624667167664,-0.222150579094887,-0.794879138469696,-0.564638137817383,-0.119060486555099,-0.815256237983704,-0.566729128360748,0.0557941943407059,-0.852786421775818,-0.519271016120911,0.104452416300774,-0.847014486789703,-0.521206617355347,0.12397862970829,-0.844114422798157,-0.521632075309753,-0.0561940670013428,-0.858415246009827,-0.509868204593658,0.124031767249107,-0.843852818012238,-0.522042751312256,0.10445997864008,-0.846804976463318,-0.521545231342316,0.197932064533234,-0.753119111061096,-0.62740296125412,0.0863652899861336,-0.723832249641418,-0.684549510478973,0.140807941555977,-0.739579319953918,-0.658175945281982,-0.109765991568565,-0.790291368961334,-0.602819263935089,0.0951541066169739,-0.823418796062469,-0.559399127960205,-0.0454300083220005,-0.804641664028168,-0.592020153999329,0.127731293439865,-0.824739575386047,-0.550898730754852,-0.0484562665224075,-0.820324718952179,-0.569841504096985,0.0939981639385223,-0.825910031795502,-0.555910885334015,0.137426808476448,-0.764759123325348,-0.629489839076996,0.121089771389961,-0.761966228485107,-0.636195600032806,0.187311589717865,-0.771805644035339,-0.607643365859985,0.105752751231194,-0.799614727497101,-0.591128468513489,-0.0989302843809128,-0.759975612163544,-0.642378330230713,0.144062593579292,-0.802984654903412,-0.57832658290863,0.141206309199333,-0.808662295341492,-0.571074545383453,0.16444505751133,-0.808971583843231,-0.564378142356873,0.102499820291996,-0.807107090950012,-0.581439554691315,-0.0573161654174328,-0.696832299232483,0.714940369129181,-0.227261036634445,-0.681302726268768,0.695829749107361,-0.13620762526989,-0.692209661006927,0.708726525306702,
  512. 0.00835860427469015,-0.698256134986877,0.71579921245575,-0.0558082759380341,-0.707569062709808,0.704437077045441,-0.131679266691208,-0.714644074440002,0.686982214450836,-0.229123547673225,-0.71912282705307,0.656021952629089,-0.0556422136723995,-0.708736121654511,0.703275978565216,-0.163584187626839,-0.717913687229156,0.676638960838318,-0.20004041492939,-0.642124235630035,0.740040838718414,-0.224141150712967,-0.633486986160278,0.740577518939972,-0.158102080225945,-0.656051278114319,0.737970471382141,-0.0556402429938316,-0.708749949932098,0.703262209892273,0.00864773243665695,-0.699071884155273,0.714999198913574,0.0205470863729715,-0.696945190429688,0.71683007478714,0.0510472506284714,-0.689891815185547,0.722110450267792,0.020513528957963,-0.696767270565033,0.71700394153595,0.0087063005194068,-0.699237048625946,0.714836955070496,-0.159333914518356,-0.669246852397919,0.725755751132965,-0.0807953700423241,-0.686073005199432,0.723032414913177,-0.205291301012039,-0.657264292240143,0.725161492824554,-0.0131723284721375,-0.69739705324173,0.716563940048218,-0.200718089938164,-0.644079983234406,0.738155245780945,-0.0800368338823318,-0.681496441364288,0.727431654930115,-0.160889655351639,-0.686433434486389,0.709171116352081,-0.0573893040418625,-0.696304976940155,0.715448081493378,0.0111340768635273,-0.698683083057404,0.715344727039337,-0.0825977027416229,-0.696914255619049,0.712382018566132,-0.161509662866592,-0.693466603755951,0.702152907848358,0.0111333336681128,-0.695297360420227,0.718636035919189,-0.0575232096016407,-0.695338189601898,0.716376960277557,0.0210326183587313,-0.699514329433441,0.714309096336365,0.0111341737210751,-0.699226438999176,0.714813590049744,-0.0119709651917219,-0.694725632667542,0.719175219535828,-0.0787762776017189,-0.67387318611145,0.734635412693024,0.0232924669981003,-0.704287648200989,0.709532499313354,0.0256542637944222,-0.694909274578094,0.718639731407166,-0.0828971937298775,-0.698711216449738,0.710584759712219,0.0111334836110473,-0.695896804332733,0.718055546283722,0.0803524851799011,-0.721227169036865,0.688022434711456,
  513. -0.0107075283303857,-0.691905081272125,0.721909165382385,0.0234317108988762,-0.703738629817963,0.71007251739502,0.0111341718584299,-0.699214100837708,0.714825689792633,0.0210358444601297,-0.699531316757202,0.714292287826538,0.021506791934371,-0.699544727802277,0.71426522731781,0.0209511127322912,-0.699083507061005,0.714732944965363,0.051896408200264,-0.691654443740845,0.720361649990082,0.0214346926659346,-0.698973178863525,0.714826643466949,0.0341219715774059,-0.697263658046722,0.71600216627121,0.024935781955719,-0.697777152061462,0.715880811214447,0.0111340312287211,-0.698437511920929,0.715584516525269,0.0873077213764191,-0.704443216323853,0.704370021820068,0.0253070555627346,-0.696296811103821,0.717307686805725,0.034094326198101,-0.697623193264008,0.71565318107605,0.00952944159507751,-0.701239585876465,0.712862074375153,0.0213352385908365,-0.698184192180634,0.715600252151489,0.0510962456464767,-0.689993679523468,0.722009658813477,0.0487746149301529,-0.685154795646667,0.726762712001801,0.0588649436831474,-0.681117415428162,0.729804158210754,0.00917516648769379,-0.70013415813446,0.713952362537384,-0.0111335683614016,-0.696252584457397,0.717710554599762,0.0111339185386896,-0.697858512401581,0.716149091720581,0.0213724877685308,-0.698479771614075,0.71531069278717,0.0215258356183767,-0.699695646762848,0.714116752147675,0.00879441946744919,-0.698944211006165,0.715122103691101,-0.0111338524147868,-0.697538614273071,0.716460704803467,-0.0111299660056829,-0.685813069343567,0.727692663669586,0.0354576036334038,-0.679545640945435,0.732775866985321,0.0111286165192723,-0.683009624481201,0.730324685573578,0.0614405497908592,-0.686263918876648,0.724753022193909,0.108519017696381,-0.671283900737762,0.733213245868683,0.00938051100820303,-0.70077508687973,0.71332061290741,0.00916479621082544,-0.700101792812347,0.713984310626984,0.111359253525734,-0.700801312923431,0.704611003398895,-0.0111341495066881,-0.69908607006073,0.714950919151306,0.156183823943138,-0.656666159629822,0.737832129001617,0.108666688203812,-0.672800064086914,0.731800317764282,
  514. 0.0617881342768669,-0.686955869197845,0.724067628383636,0.163182958960533,-0.727591216564178,0.666320085525513,0.114002645015717,-0.729044377803802,0.67490565776825,0.156299501657486,-0.727904856204987,0.66762638092041,0.0412983410060406,-0.698979496955872,0.713948249816895,0.0863245576620102,-0.706848978996277,0.702077329158783,0.0340977907180786,-0.697578132152557,0.715696930885315,0.0485765933990479,-0.666020512580872,0.744350075721741,0.0362932309508324,-0.668105065822601,0.743181347846985,-0.0111239971593022,-0.675162971019745,0.737584710121155,0.0900421217083931,-0.697694003582001,0.710714876651764,0.0429220832884312,-0.6917844414711,0.720827281475067,0.0819773748517036,-0.696797490119934,0.712567925453186,0.109572365880013,-0.682141363620758,0.722964107990265,0.108702942728996,-0.68222177028656,0.723019421100616,-0.011131027713418,-0.688294351100922,0.725346148014069,0.111638955771923,-0.657733261585236,0.744931995868683,0.0484272763133049,-0.666715204715729,0.743737697601318,-0.0111222798004746,-0.672675311565399,0.739854216575623,0.111895233392715,-0.706462681293488,0.698849022388458,0.16747485101223,-0.70371425151825,0.690462529659271,0.10555986315012,-0.706633329391479,0.699661672115326,0.107886604964733,-0.688732802867889,0.716943323612213,0.084692157804966,-0.687503337860107,0.721225678920746,0.0445502959191799,-0.684479117393494,0.727669954299927,0.0819299668073654,-0.696958363056183,0.712416052818298,0.106633804738522,-0.698488771915436,0.707631766796112,0.168048843741417,-0.700371325016022,0.693714380264282,-0.0526863411068916,-0.978901922702789,-0.197421550750732,-0.225149497389793,-0.954647302627563,-0.194823563098907,-0.133348777890205,-0.971300959587097,-0.19695870578289,0.0100016938522458,-0.980195462703705,-0.197780176997185,-0.0512854158878326,-0.976101458072662,-0.211177304387093,-0.129021778702736,-0.965304434299469,-0.227026119828224,-0.22705540060997,-0.941849231719971,-0.24772173166275,-0.0511258319020271,-0.975771427154541,-0.212735176086426,-0.160621896386147,-0.95855575799942,-0.235311239957809,
  515. -0.19196230173111,-0.971312284469604,-0.140367731451988,-0.222004160284996,-0.966206192970276,-0.130995199084282,-0.1551244109869,-0.976195752620697,-0.151585683226585,-0.0511203967034817,-0.975760221481323,-0.212788224220276,0.0102935070171952,-0.979965627193451,-0.198900938034058,0.0263288095593452,-0.980421364307404,-0.195142939686775,0.0569426640868187,-0.98088926076889,-0.186047852039337,0.0262652393430471,-0.980516731739044,-0.194671779870987,0.01033715903759,-0.979931116104126,-0.19906859099865,-0.15635447204113,-0.973137855529785,-0.168985560536385,-0.0792879685759544,-0.97967255115509,-0.184269204735756,-0.196952998638153,-0.967198252677917,-0.16042785346508,-0.0147370211780071,-0.980382919311523,-0.19655068218708,-0.192642346024513,-0.970781028270721,-0.143084824085236,-0.078532449901104,-0.980858862400055,-0.178181022405624,-0.157910719513893,-0.968609511852264,-0.191989049315453,-0.0527421273291111,-0.979009747505188,-0.196870863437653,0.00771681359037757,-0.980035305023193,-0.198674201965332,-0.0810861960053444,-0.976673305034637,-0.198832184076309,-0.158528789877892,-0.9665806889534,-0.201470568776131,0.0077236401848495,-0.980902314186096,-0.194347783923149,-0.0528613850474358,-0.979239523410797,-0.195692718029022,0.0270267836749554,-0.979358553886414,-0.200316160917282,0.00771578773856163,-0.979905009269714,-0.199315294623375,-0.0134959444403648,-0.981141924858093,-0.192816942930222,-0.0772748813033104,-0.98273891210556,-0.168086022138596,0.0260309129953384,-0.977850675582886,-0.207679152488709,0.028697956353426,-0.98067045211792,-0.193550825119019,-0.0813861191272736,-0.976148664951324,-0.201271206140518,0.00772229814901948,-0.980731844902039,-0.195206165313721,0.0807026028633118,-0.969185471534729,-0.232737079262733,-0.0121775642037392,-0.98193085193634,-0.188847959041595,0.0261218026280403,-0.977950036525726,-0.207198828458786,0.0077158366329968,-0.979911208152771,-0.199284985661507,0.0270332973450422,-0.979348421096802,-0.20036444067955,0.0252568814903498,-0.979415535926819,-0.200268313288689,0.0266813151538372,-0.979888260364532,-0.197755634784698,
  516. 0.05776297301054,-0.980396091938019,-0.188379853963852,0.0250824335962534,-0.979834139347076,-0.198232024908066,0.0292486436665058,-0.979873538017273,-0.197464987635612,0.0279472284018993,-0.979897320270538,-0.197535201907158,0.00771695887669921,-0.980053782463074,-0.198583051562309,0.0876953974366188,-0.973839104175568,-0.209635213017464,0.0281714983284473,-0.980130016803741,-0.196345537900925,0.0292961224913597,-0.980045437812805,-0.196603283286095,0.00643760338425636,-0.979085803031921,-0.203346148133278,0.0249753370881081,-0.980088949203491,-0.196982160210609,0.0568718835711479,-0.980931520462036,-0.185846626758575,0.0542717166244984,-0.982450485229492,-0.178453728556633,0.0571870803833008,-0.982548832893372,-0.17699570953846,0.0061683738604188,-0.979325592517853,-0.202196672558784,-0.00772141385823488,-0.980619549751282,-0.195769444108009,0.00771901058033109,-0.980314314365387,-0.197292298078537,0.0251442883163691,-0.979686200618744,-0.19895401597023,0.0252865944057703,-0.979343712329865,-0.20061519742012,0.00536729814484715,-0.980030596256256,-0.198774933815002,-0.00771864550188184,-0.980267941951752,-0.197522699832916,-0.00774421403184533,-0.983515202999115,-0.180659562349319,0.0305263809859753,-0.984259247779846,-0.174074277281761,0.00774799380451441,-0.983995199203491,-0.178026393055916,0.0597260370850563,-0.981141746044159,-0.183830454945564,0.107865415513515,-0.980160713195801,-0.166283026337624,0.00628208741545677,-0.979224443435669,-0.202682182192802,0.00576325180009007,-0.979683697223663,-0.200466513633728,0.110604546964169,-0.972210943698883,-0.206330880522728,-0.00771540915593505,-0.979856908321381,-0.199551746249199,0.160878255963326,-0.975575566291809,-0.149567902088165,0.108008213341236,-0.979798316955566,-0.168314009904861,0.0600683726370335,-0.980947732925415,-0.184751898050308,0.162618398666382,-0.954596221446991,-0.24960270524025,0.113164938986301,-0.962605893611908,-0.246137320995331,0.160773813724518,-0.954939544200897,-0.24948425590992,0.0401802137494087,-0.979087054729462,-0.199434518814087,
  517. 0.0867053270339966,-0.973213911056519,-0.212924435734749,0.0293172001838684,-0.980121433734894,-0.196220502257347,0.0473554059863091,-0.986651003360748,-0.15581226348877,0.0313424877822399,-0.986794948577881,-0.158913195133209,-0.00776412850245833,-0.98604428768158,-0.166302070021629,0.090429998934269,-0.97550755739212,-0.200518399477005,0.0417897887527943,-0.980947375297546,-0.189726412296295,0.079812616109848,-0.976906418800354,-0.198201388120651,0.108872227370739,-0.977488279342651,-0.180730924010277,0.111192531883717,-0.977245628833771,-0.180630162358284,-0.00773859210312366,-0.982801198959351,-0.184504419565201,0.114176049828529,-0.982377111911774,-0.147983551025391,0.0472158193588257,-0.98652184009552,-0.156669393181801,-0.00776814669370651,-0.986554622650146,-0.163247153162956,0.111123099923134,-0.970450282096863,-0.214191541075706,0.166974484920502,-0.961908638477325,-0.216451942920685,0.107991836965084,-0.970835983753204,-0.214045017957687,0.110320642590523,-0.975587785243988,-0.189889311790466,0.0824678614735603,-0.979109466075897,-0.185859501361847,0.0433996096253395,-0.982713878154755,-0.179972276091576,0.0797343924641609,-0.976839244365692,-0.198563531041145,0.109050109982491,-0.973052144050598,-0.203168913722038,0.167560115456581,-0.962828934192657,-0.211858406662941,-0.051704365760088,-0.964588642120361,0.258641690015793,-0.22622275352478,-0.941427409648895,0.250075727701187,-0.136844545602798,-0.95708030462265,0.255481988191605,0.00766958203166723,-0.966018259525299,0.258360147476196,-0.0503038540482521,-0.968147695064545,0.245274484157562,-0.132303729653358,-0.965286552906036,0.225205764174461,-0.227782234549522,-0.953596711158752,0.196897700428963,-0.0501447543501854,-0.968538761138916,0.243758752942085,-0.156680434942245,-0.96358048915863,0.21671199798584,-0.197910577058792,-0.930716931819916,0.307567119598389,-0.223470062017441,-0.923173904418945,0.312747746706009,-0.151220709085464,-0.942637801170349,0.297601222991943,-0.0501384437084198,-0.968554139137268,0.243698671460152,0.00796231254935265,-0.9663125872612,0.257248252630234,
  518. 0.0206060074269772,-0.965368211269379,0.260076284408569,0.0513255931437016,-0.96197384595871,0.268275886774063,0.0205717999488115,-0.965303897857666,0.260317504405975,0.00802846252918243,-0.96637886762619,0.256996929645538,-0.152439370751381,-0.947521209716797,0.281008511781693,-0.0807717144489288,-0.959196090698242,0.270959079265594,-0.203066691756248,-0.936081409454346,0.287255138158798,-0.016105905175209,-0.96536123752594,0.260419458150864,-0.198578476905823,-0.931430816650391,0.304964601993561,-0.0800008997321129,-0.957509279251099,0.277084678411484,-0.153977781534195,-0.9535311460495,0.258977144956589,-0.0517581254243851,-0.964447796344757,0.259155750274658,0.00760718388482928,-0.966112375259399,0.258009821176529,-0.0826045200228691,-0.963076651096344,0.256241947412491,-0.154585838317871,-0.955853223800659,0.249895691871643,0.00759818451479077,-0.964969396591187,0.262252479791641,-0.0518751665949821,-0.964140057563782,0.260275065898895,0.0211002826690674,-0.966290712356567,0.256587415933609,0.00760852079838514,-0.966282188892365,0.257373005151749,-0.0148363206535578,-0.964342653751373,0.264241009950638,-0.0787286311388016,-0.954655587673187,0.287114202976227,0.0228059031069279,-0.967926502227783,0.250196397304535,0.0251736808568239,-0.96456903219223,0.262626856565475,-0.082907035946846,-0.963699221611023,0.253791868686676,0.00760000664740801,-0.965200841426849,0.261399239301682,0.0783337950706482,-0.971466779708862,0.223866388201714,-0.0134935025125742,-0.963247358798981,0.268277138471603,0.0229546930640936,-0.967720627784729,0.250978201627731,0.00760845560580492,-0.966273903846741,0.257404178380966,0.0211035311222076,-0.96629673242569,0.256564497947693,0.0256737489253283,-0.966264426708221,0.256269425153732,0.0210172049701214,-0.966136515140533,0.257174223661423,0.0521766096353531,-0.962596654891968,0.265867084264755,0.0254747364670038,-0.965692937374115,0.25843408703804,0.0315229073166847,-0.965338230133057,0.259091556072235,0.0244454480707645,-0.965619921684265,0.258806139230728,0.00760704698041081,-0.966094970703125,0.258075058460236,
  519. 0.0852520763874054,-0.965500056743622,0.246052667498589,0.02484848536551,-0.965040326118469,0.260920941829681,0.0315366499125957,-0.965275049209595,0.259325563907623,0.00717293005436659,-0.967267990112305,0.253655582666397,0.0253598615527153,-0.965361058712006,0.259682357311249,0.0513733923435211,-0.962009072303772,0.268140643835068,0.049035906791687,-0.960266590118408,0.274742692708969,0.0590965524315834,-0.958352863788605,0.279405415058136,0.00688953977078199,-0.966952443122864,0.254863619804382,-0.00760119175538421,-0.965351343154907,0.260843008756638,0.00760432379320264,-0.965749144554138,0.259366154670715,0.025556568056345,-0.965928435325623,0.257544308900833,0.0257069282233715,-0.966359257698059,0.255908221006393,0.00619428884238005,-0.966171681880951,0.257825255393982,-0.00760484207421541,-0.96581494808197,0.259121000766754,-0.00756857311353087,-0.961208760738373,0.275718003511429,0.0328805297613144,-0.958766460418701,0.282286763191223,0.00756287202239037,-0.960484743118286,0.278229951858521,0.0617347061634064,-0.960192918777466,0.272430926561356,0.111616611480713,-0.951036214828491,0.288221895694733,0.00702295638620853,-0.967101216316223,0.254294961690903,0.00657909270375967,-0.966605007648468,0.25618639588356,0.114329010248184,-0.962168037891388,0.247308537364006,-0.00760902790352702,-0.966346502304077,0.257131665945053,0.155083134770393,-0.941758692264557,0.298395305871964,0.111758701503277,-0.951640844345093,0.286163955926895,0.0620926022529602,-0.960438251495361,0.271482706069946,0.157288253307343,-0.966710686683655,0.201818734407425,0.116758324205875,-0.971290409564972,0.207274183630943,0.155069798231125,-0.967004656791687,0.202127158641815,0.0430128425359726,-0.965711772441864,0.256028831005096,0.0842966586351395,-0.966359674930573,0.242987781763077,0.0315504260361195,-0.965211451053619,0.259560137987137,0.0503731742501259,-0.952658593654633,0.299840331077576,0.0337387733161449,-0.95427018404007,0.297035455703735,-0.00753608904778957,-0.957083284854889,0.289714932441711,0.0880256369709969,-0.962938845157623,0.254951655864716,
  520. 0.044643122702837,-0.963012516498566,0.265732884407043,0.0832113996148109,-0.963042140007019,0.256175398826599,0.112658701837063,-0.955417394638062,0.272920548915863,0.108359977602959,-0.955904960632324,0.272953867912292,-0.0075770472176373,-0.962285041809082,0.271937668323517,0.111301369965076,-0.946080029010773,0.304211497306824,0.0501977056264877,-0.952995955944061,0.298795878887177,-0.00752904592081904,-0.956188857555389,0.292653828859329,0.114821068942547,-0.964086949825287,0.239483952522278,0.161529242992401,-0.95857185125351,0.234623894095421,0.105204358696938,-0.964952230453491,0.24041511118412,0.10754083096981,-0.958394885063171,0.264413058757782,0.085988350212574,-0.959456503391266,0.268420219421387,0.0462750419974327,-0.960201978683472,0.275446683168411,0.0831725522875786,-0.963091015815735,0.256004273891449,0.106282405555248,-0.962024211883545,0.251422733068466,0.162173181772232,-0.957203567028046,0.239710956811905,-0.247368022799492,0.860022306442261,0.446285486221313,-0.171195045113564,0.871185600757599,0.460139244794846,-0.29034024477005,0.851253509521484,0.437115550041199,-0.36257016658783,0.828597187995911,0.426579028367996,-0.246979951858521,0.863759100437164,0.439227879047394,-0.290283143520355,0.852206110954285,0.435293555259705,-0.361453235149384,0.823886513710022,0.436534941196442,-0.414224028587341,0.797310829162598,0.438992202281952,-0.292529284954071,0.85351550579071,0.431205242872238,-0.289934515953064,0.857562184333801,0.424882411956787,-0.318440407514572,0.845986723899841,0.42767059803009,-0.362059324979782,0.826432049274445,0.431187987327576,-0.413550764322281,0.799620926380157,0.43541032075882,-0.361861109733582,0.825596809387207,0.432950884103775,-0.319239020347595,0.844551503658295,0.429905951023102,-0.399458765983582,0.840278685092926,0.366557747125626,-0.318736612796783,0.845455706119537,0.428499281406403,-0.464743316173553,0.829038739204407,0.310979723930359,-0.289589315652847,0.862249612808228,0.415528327226639,-0.243466421961784,0.867700099945068,0.43338280916214,-0.310930132865906,0.858965218067169,0.406818360090256,
  521. -0.461979866027832,0.83201277256012,0.307130873203278,-0.317105501890183,0.848361492156982,0.423942029476166,-0.319015920162201,0.848339557647705,0.422550439834595,-0.317140579223633,0.848299443721771,0.424039900302887,-0.264468610286713,0.846188426017761,0.462624490261078,-0.319045603275299,0.848308086395264,0.422591209411621,-0.317789345979691,0.849636733531952,0.420864999294281,-0.262003481388092,0.84881603717804,0.459200918674469,-0.266746997833252,0.849035143852234,0.456054151058197,-0.247172236442566,0.950068235397339,-0.190463304519653,-0.175130575895309,0.966645896434784,-0.186882749199867,-0.292771905660629,0.936663329601288,-0.19221442937851,-0.36815556883812,0.91107451915741,-0.185484811663628,-0.246779710054398,0.948559522628784,-0.198329612612724,-0.29272586107254,0.93633097410202,-0.193896800279617,-0.366879552602768,0.913925290107727,-0.173608690500259,-0.415786415338516,0.89592319726944,-0.156344041228294,-0.292116910219193,0.935596346855164,-0.198310732841492,-0.292406469583511,0.934108436107636,-0.204792216420174,-0.321423679590225,0.926603496074677,-0.195173799991608,-0.36749479174614,0.912583529949188,-0.179273709654808,-0.415132790803909,0.895484030246735,-0.160540506243706,-0.367296010255814,0.913023352622986,-0.177431628108025,-0.32219073176384,0.926881313323975,-0.192572668194771,-0.400988459587097,0.88376259803772,-0.241188555955887,-0.321016281843185,0.926453471183777,-0.196551501750946,-0.462354838848114,0.842870891094208,-0.275311946868896,-0.292026102542877,0.931611776351929,-0.216380372643471,-0.245291948318481,0.947365283966064,-0.205745041370392,-0.313604891300201,0.923439383506775,-0.221160307526588,-0.459610849618912,0.842789709568024,-0.280113190412521,-0.319428533315659,0.92585301399231,-0.201895147562027,-0.320379704236984,0.925407826900482,-0.20242840051651,-0.319441080093384,0.925857901573181,-0.201853007078171,-0.265968471765518,0.948878169059753,-0.169973507523537,-0.320386707782745,0.925408124923706,-0.202416330575943,-0.319173842668533,0.925365924835205,-0.204514384269714,
  522. -0.263553738594055,0.948784112930298,-0.174207136034966,-0.264141917228699,0.948561489582062,-0.174528375267982,-0.282161116600037,0.920907139778137,0.268914729356766,-0.212014064192772,0.936445236206055,0.279500365257263,-0.323841840028763,0.909160256385803,0.261828422546387,-0.401818573474884,0.879451990127563,0.255158752202988,-0.28182926774025,0.923291325569153,0.260970294475555,-0.32380935549736,0.909854590892792,0.259445786476135,-0.400528341531754,0.876628041267395,0.266646355390549,-0.445590913295746,0.852501451969147,0.273294895887375,-0.325177878141403,0.910803198814392,0.254355847835541,-0.323617607355118,0.913235604763031,0.247532546520233,-0.356882244348526,0.899102807044983,0.253474146127701,-0.401172488927841,0.878037869930267,0.260979235172272,-0.444984674453735,0.854067802429199,0.269363731145859,-0.400963217020035,0.877579867839813,0.262834966182709,-0.357614070177078,0.898118913173676,0.255919009447098,-0.432376086711884,0.880100011825562,0.196150630712509,-0.356645673513412,0.899418711662292,0.252685159444809,-0.500280559062958,0.854302883148193,0.141017898917198,-0.323452115058899,0.915540874004364,0.239089235663414,-0.287555664777756,0.924010813236237,0.252023220062256,-0.349546581506729,0.908416330814362,0.229340136051178,-0.497645616531372,0.856534838676453,0.136736825108528,-0.355141788721085,0.901401877403259,0.247687190771103,-0.355974316596985,0.901237487792969,0.247089564800262,-0.355158537626266,0.901380002498627,0.247742742300034,-0.30687016248703,0.908664464950562,0.28312474489212,-0.355991005897522,0.901223540306091,0.247116357088089,-0.354791730642319,0.902221083641052,0.245193719863892,-0.304606080055237,0.91055828332901,0.279461652040482,-0.300489097833633,0.911083817481995,0.282192468643188,-0.24633976817131,0.769608199596405,0.589084088802338,-0.16871689260006,0.778245449066162,0.604870736598969,-0.289671450853348,0.762538373470306,0.578468322753906,-0.363972783088684,0.741466164588928,0.563694775104523,-0.245940655469894,0.774605453014374,0.582666039466858,-0.289612025022507,0.763853788375854,0.576760113239288,
  523. -0.362815022468567,0.734955728054047,0.572892129421234,-0.413366347551346,0.709462642669678,0.570781111717224,-0.290711641311646,0.766431748867035,0.572773337364197,-0.289261698722839,0.771013855934143,0.567331671714783,-0.319521754980087,0.758392035961151,0.56810861825943,-0.363420099020004,0.738337457180023,0.568140506744385,-0.412715494632721,0.71230936050415,0.567698240280151,-0.363222271203995,0.737226843833923,0.569707095623016,-0.320303857326508,0.756612539291382,0.570037722587585,-0.398962080478668,0.76385885477066,0.507295727729797,-0.319558143615723,0.758309543132782,0.568198323249817,-0.465155988931656,0.76242196559906,0.449825286865234,-0.288933008909225,0.77699875831604,0.559277057647705,-0.245449930429459,0.77916032075882,0.576769948005676,-0.31191274523735,0.775142073631287,0.549422740936279,-0.462370425462723,0.766026496887207,0.446561545133591,-0.317933917045593,0.761971056461334,0.564196944236755,-0.319068044424057,0.762101054191589,0.563380479812622,-0.317960560321808,0.761911332607269,0.564262449741364,-0.266070276498795,0.753333449363709,0.601411283016205,-0.319095611572266,0.762065708637238,0.563412666320801,-0.31785860657692,0.763650238513947,0.561964571475983,-0.263661503791809,0.756446480751038,0.598557889461517,-0.264356434345245,0.756558418273926,0.598109662532806,-0.0150519944727421,0.747002124786377,-0.664651334285736,-0.106169566512108,0.742894291877747,-0.660935819149017,-0.030048068612814,0.746754288673401,-0.664420902729034,-0.138794347643852,0.739898264408112,-0.658245146274567,-0.0150521844625473,0.746997654438019,-0.664656221866608,-0.0300478637218475,0.746750593185425,-0.664425134658813,-0.129346698522568,0.746771514415741,-0.652381658554077,-0.0159745179116726,0.725094199180603,-0.688464462757111,-0.139672309160233,0.748216032981873,-0.648586511611938,-0.137954965233803,0.73203045129776,-0.667158007621765,-0.031156525015831,0.766411960124969,-0.641593396663666,-0.218338489532471,0.699226438999176,-0.680742800235748,-0.128586113452911,0.748178958892822,-0.650917708873749,-0.139906957745552,0.750455439090729,-0.645943224430084,
  524. -0.321031838655472,0.770661175251007,-0.550472617149353,-0.335526674985886,0.699524819850922,-0.630941271781921,-0.138871341943741,0.740624010562897,-0.657412230968475,-0.229496687650681,0.725632607936859,-0.648682177066803,-0.219769418239594,0.106254458427429,-0.969748139381409,-0.21410208940506,0.102620363235474,-0.971405982971191,-0.118871547281742,0.0417978800833225,-0.9920294880867,-0.219353258609772,0.107357434928417,-0.969720840454102,-0.111359186470509,0.0604680143296719,-0.991938889026642,-0.175516381859779,0.0883451849222183,-0.980504512786865,-0.370879262685776,0.0865942761301994,-0.924635171890259,-0.218941867351532,0.108446858823299,-0.969692647457123,-0.170446112751961,0.114690825343132,-0.978669583797455,-0.108625814318657,0.0672274753451347,-0.991806983947754,-0.0818320289254189,0.057538203895092,-0.994983911514282,-0.174987867474556,0.0911256223917007,-0.980344593524933,-0.366583347320557,0.0621543638408184,-0.928306818008423,-0.16890387237072,0.122563757002354,-0.977982401847839,-0.120308548212051,0.136244669556618,-0.983342945575714,-0.17200779914856,0.106652915477753,-0.97930520772934,-0.0683499425649643,0.104907959699631,-0.99213033914566,-0.120034195482731,0.105919808149338,-0.987103223800659,-0.0143579440191388,0.963629186153412,0.266857117414474,-0.107282213866711,0.958153545856476,0.265390843153,-0.0353522822260857,0.963123261928558,0.266728341579437,-0.141955867409706,0.95395040512085,0.264248251914978,-0.0143581917509437,0.963630974292755,0.266850650310516,-0.0353520773351192,0.963124573230743,0.266723304986954,-0.127979904413223,0.953494608402252,0.272890418767929,-0.0155417192727327,0.971778213977814,0.235384061932564,-0.142872542142868,0.950011432170868,0.277607440948486,-0.141066044569016,0.957495093345642,0.251602232456207,-0.0364373177289963,0.955219328403473,0.293646901845932,-0.224144995212555,0.950462162494659,0.215361803770065,-0.127261698246002,0.953054130077362,0.274758547544479,-0.143115803599358,0.948913633823395,0.281213104724884,-0.321218699216843,0.880445897579193,0.348760336637497,
  525. -0.335684388875961,0.909496009349823,0.245220556855202,-0.14201982319355,0.953685402870178,0.265168935060501,-0.235985025763512,0.937186002731323,0.256892055273056,-0.213014543056488,0.871525049209595,-0.441666126251221,-0.213399142026901,0.87156617641449,-0.441399157047272,-0.112962834537029,0.854625642299652,-0.506808042526245,-0.212124466896057,0.872769296169281,-0.439632743597031,-0.10496049374342,0.865274846553802,-0.490186452865601,-0.175751954317093,0.871589660644531,-0.457649230957031,-0.36659699678421,0.825410604476929,-0.429306358098984,-0.210128501057625,0.875532269477844,-0.435073882341385,-0.170603707432747,0.884273290634155,-0.434689730405808,-0.102048769593239,0.869037091732025,-0.484108090400696,-0.0839220136404037,0.867246150970459,-0.490755885839462,-0.175218462944031,0.872947692871094,-0.455259084701538,-0.362429052591324,0.815500855445862,-0.451224446296692,-0.169041678309441,0.887940764427185,-0.427768796682358,-0.116684004664421,0.900697767734528,-0.418483436107636,-0.172206282615662,0.880424559116364,-0.441811859607697,-0.0707621052861214,0.890159130096436,-0.450121462345123,-0.116287618875504,0.886951982975006,-0.446982681751251,-0.0137032670900226,0.981758236885071,-0.189639151096344,-0.103749707341194,0.976560235023499,-0.188589572906494,-0.0326649993658066,0.981328248977661,-0.189546525478363,-0.14025916159153,0.972157061100006,-0.187718003988266,-0.013703465461731,0.981756925582886,-0.189645782113075,-0.0326647907495499,0.9813272356987,-0.189551800489426,-0.129246115684509,0.975279450416565,-0.179235845804214,-0.0146617908030748,0.974990129470825,-0.221764296293259,-0.141133934259415,0.974467277526855,-0.174627378582954,-0.139415219426155,0.969831109046936,-0.199977949261665,-0.0337669290602207,0.986394166946411,-0.16089254617691,-0.219250857830048,0.948603808879852,-0.228210180997849,-0.128490090370178,0.975738644599915,-0.177269369363785,-0.141366392374039,0.975062787532806,-0.171079158782959,-0.317986041307449,0.944627225399017,-0.0810208916664124,-0.332610905170441,0.924733877182007,-0.185033634305,
  526. -0.140326932072639,0.972339868545532,-0.186718299984932,-0.23045489192009,0.954974830150604,-0.186852261424065,-0.217076569795609,0.585761308670044,-0.780872225761414,-0.21498367190361,0.584919095039368,-0.782081663608551,-0.117348849773407,0.542098641395569,-0.832080721855164,-0.216477811336517,0.587118208408356,-0.780018985271454,-0.109619796276093,0.558307945728302,-0.82235985994339,-0.174783945083618,0.576764762401581,-0.797993063926697,-0.371965855360031,0.546548068523407,-0.750284314155579,-0.215423762798309,0.589499354362488,-0.778513371944427,-0.16955041885376,0.598849892616272,-0.782707810401917,-0.106801584362984,0.564136922359467,-0.818744778633118,-0.0841183140873909,0.558463275432587,-0.825253248214722,-0.174238100647926,0.579114735126495,-0.796409010887146,-0.36758753657341,0.527270376682281,-0.766071319580078,-0.167962893843651,0.605358302593231,-0.778029441833496,-0.121778927743435,0.619148075580597,-0.77577418088913,-0.171184286475182,0.592060267925262,-0.787502765655518,-0.0708518624305725,0.597001194953918,-0.79910546541214,-0.121313348412514,0.59528523683548,-0.794303953647614,-0.399431079626083,0.0881474837660789,-0.912515640258789,-0.548598766326904,-0.0118099525570869,-0.836002349853516,-0.591774225234985,-0.0435858815908432,-0.804924607276917,-0.496543496847153,0.128793686628342,-0.858403563499451,-0.566033780574799,0.0885441452264786,-0.819613218307495,-0.434588313102722,0.162088513374329,-0.885923504829407,-0.582714319229126,0.285625100135803,-0.760829985141754,-0.509562373161316,0.277043789625168,-0.814612150192261,-0.480062365531921,0.273097336292267,-0.833641529083252,-0.509275317192078,0.271206468343735,-0.816753149032593,-0.478236049413681,0.273247689008713,-0.834641218185425,-0.480055868625641,0.273138761520386,-0.833631694316864,-0.510161340236664,0.290772825479507,-0.809435904026031,-0.423236519098282,0.295888453722,-0.856341540813446,-0.476948916912079,0.293100774288177,-0.828620314598084,-0.455766260623932,0.20962655544281,-0.865062892436981,-0.391390562057495,0.252750307321548,-0.884833753108978,
  527. -0.502005696296692,0.176500350236893,-0.846662878990173,-0.423008978366852,0.30347004532814,-0.853797137737274,-0.509890019893646,0.284245640039444,-0.811921656131744,-0.402799129486084,0.307409882545471,-0.862120747566223,-0.400259792804718,0.294714838266373,-0.867718517780304,-0.473411679267883,0.251385807991028,-0.844207644462585,-0.364879757165909,0.314246118068695,-0.876420080661774,-0.337597250938416,0.301147729158401,-0.891817390918732,-0.423288553953171,0.29401233792305,-0.856961786746979,-0.400557160377502,0.296184360980988,-0.867080688476563,-0.343458622694016,0.300400763750076,-0.88982892036438,-0.395842760801315,0.273389667272568,-0.876679241657257,-0.356498330831528,0.293838888406754,-0.886886477470398,-0.395538985729218,0.271955341100693,-0.877262353897095,-0.342414200305939,0.297615349292755,-0.89116644859314,-0.337266743183136,0.300012528896332,-0.892324924468994,-0.399100780487061,0.814580976963043,-0.420923352241516,-0.550474107265472,0.694077908992767,-0.46393346786499,-0.591904103755951,0.652381002902985,-0.473337829113007,-0.494691044092178,0.792299032211304,-0.357131898403168,-0.567749559879303,0.735080480575562,-0.370563209056854,-0.434385538101196,0.83228075504303,-0.34440952539444,-0.583973705768585,0.793292224407196,-0.172226816415787,-0.507870554924011,0.835424721240997,-0.210078656673431,-0.475622832775116,0.850406050682068,-0.22492790222168,-0.507588326931,0.834142565727234,-0.215778768062592,-0.481443762779236,0.847760260105133,-0.222518309950829,-0.475476264953613,0.850729525089264,-0.224012732505798,-0.508517622947693,0.838596522808075,-0.195360630750656,-0.422345519065857,0.880253076553345,-0.21628400683403,-0.480224192142487,0.853434026241302,-0.202571630477905,-0.455655187368393,0.840499043464661,-0.293154805898666,-0.395338147878647,0.878179132938385,-0.269275367259979,-0.500249743461609,0.808340966701508,-0.310378849506378,-0.422079294919968,0.882279098033905,-0.208404943346977,-0.508243262767792,0.837205469608307,-0.201930120587349,-0.406942278146744,0.889148890972137,-0.20931413769722,
  528. -0.404151350259781,0.886694252490997,-0.224577814340591,-0.473323315382004,0.84557569026947,-0.246914699673653,-0.368351519107819,0.905011653900146,-0.212770015001297,-0.33498227596283,0.913393139839172,-0.231300458312035,-0.422405451536179,0.879756569862366,-0.218178793787956,-0.404810756444931,0.887285888195038,-0.221024855971336,-0.347521990537643,0.908586144447327,-0.231732100248337,-0.399806976318359,0.882630109786987,-0.247221946716309,-0.360028386116028,0.902734160423279,-0.235479682683945,-0.399544537067413,0.882375955581665,-0.248549938201904,-0.346534878015518,0.908224403858185,-0.234610512852669,-0.334931910037994,0.913363456726074,-0.231490269303322,-0.397575378417969,0.543390572071075,-0.739364922046661,-0.550964117050171,0.414774656295776,-0.724155128002167,-0.590337574481964,0.375361025333405,-0.714566826820374,-0.495620459318161,0.550045073032379,-0.672168731689453,-0.568496882915497,0.492870420217514,-0.6587033867836,-0.432790726423264,0.593224883079529,-0.67880517244339,-0.585240960121155,0.633491396903992,-0.506144046783447,-0.508262753486633,0.654715478420258,-0.559478998184204,-0.479992002248764,0.660762548446655,-0.577062129974365,-0.507994532585144,0.650897741317749,-0.564157545566559,-0.482448756694794,0.659904301166534,-0.575994312763214,-0.479998767375946,0.660730481147766,-0.577093243598938,-0.508843302726746,0.664002418518066,-0.547886252403259,-0.422151923179626,0.692175328731537,-0.585389673709869,-0.481241703033447,0.673856616020203,-0.560645818710327,-0.454147338867188,0.623524367809296,-0.636370599269867,-0.389648199081421,0.670632600784302,-0.631210207939148,-0.500992059707642,0.585248351097107,-0.637566804885864,-0.421871960163116,0.697604298591614,-0.57911342382431,-0.508597493171692,0.659866452217102,-0.553086698055267,-0.400840699672699,0.705521583557129,-0.584436476230621,-0.398421943187714,0.697813332080841,-0.595244884490967,-0.471778780221939,0.648593664169312,-0.597286403179169,-0.367248177528381,0.716534733772278,-0.593048691749573,-0.340531438589096,0.713874280452728,-0.611900389194489,
  529. -0.422209352254868,0.690981805324554,-0.586756825447083,-0.398564964532852,0.698266267776489,-0.59461772441864,-0.347842663526535,0.710480153560638,-0.611738085746765,-0.394015789031982,0.684021770954132,-0.613894045352936,-0.358883082866669,0.704387187957764,-0.612406432628632,-0.393717348575592,0.683098495006561,-0.615112245082855,-0.346861779689789,0.70888888835907,-0.614136338233948,-0.339904010295868,0.712502062320709,-0.613845348358154,0.59815514087677,-0.700112998485565,0.389938801527023,0.371116131544113,-0.815851807594299,0.443462073802948,0.505028605461121,-0.756037533283234,0.416357427835464,0.594392895698547,-0.719934642314911,0.358317255973816,0.373085141181946,-0.793305695056915,0.481117010116577,0.372396171092987,-0.793440222740173,0.48142883181572,0.50482565164566,-0.755293667316437,0.417950332164764,0.370015442371368,-0.828398704528809,0.420528501272202,0.25966003537178,-0.871630668640137,0.41573640704155,0.372471898794174,-0.791454911231995,0.484627574682236,0.373995661735535,-0.791181445121765,0.483899980783463,0.18032793700695,-0.807266771793365,0.561962962150574,0.255681097507477,-0.860015869140625,0.44158810377121,0.370715022087097,-0.820835709571838,0.434510111808777,0.169442102313042,-0.880551397800446,0.442627221345901,0.431195199489594,-0.630419135093689,0.645478427410126,0.37756085395813,-0.646995484828949,0.662453591823578,0.494344770908356,-0.607368469238281,0.621873676776886,0.427103221416473,-0.649389445781708,0.629186928272247,0.145888090133667,-0.646358072757721,0.748957991600037,0.377397209405899,-0.65346896648407,0.656162917613983,0.487782627344131,-0.578576982021332,0.653694808483124,0.37769216299057,-0.640557587146759,0.668606519699097,0.242136850953102,-0.699527263641357,0.67233282327652,0.377519100904465,-0.648773670196533,0.66073602437973,0.138401120901108,-0.674807786941528,0.724899768829346,0.0593773797154427,-0.674313127994537,0.736054480075836,0.377629816532135,-0.643803954124451,0.665516555309296,0.0623068064451218,-0.727342665195465,0.683440208435059,0.239458486437798,-0.690426051616669,0.68262106180191,
  530. 0.314932376146317,-0.941589295864105,0.119277611374855,0.264851838350296,-0.955267548561096,0.13159567117691,0.391593456268311,-0.914765059947968,0.0992946997284889,0.306389987468719,-0.946922659873962,0.0972760394215584,0.0477854795753956,-0.970151245594025,0.237746015191078,0.262933820486069,-0.956999003887177,0.122551277279854,0.392720520496368,-0.908249318599701,0.144408389925957,0.266713470220566,-0.953484296798706,0.140470042824745,0.124847292900085,-0.983172416687012,0.133361175656319,0.26432278752327,-0.955755829811096,0.129090830683708,0.033788688480854,-0.978253602981567,0.20464164018631,-0.0376253426074982,-0.973522365093231,0.225474059581757,0.265775412321091,-0.954395771026611,0.135986298322678,-0.0486402362585068,-0.986631989479065,0.155536562204361,0.124609731137753,-0.981301605701447,0.146695494651794,-0.0709268152713776,0.725791096687317,-0.684248983860016,-0.0577587112784386,0.725722372531891,-0.6855588555336,0.134224787354469,0.710334897041321,-0.690947234630585,-0.180185809731483,0.734498083591461,-0.654251992702484,-0.0579459965229034,0.724878191947937,-0.686435580253601,-0.0708668753504753,0.726440846920013,-0.683565378189087,0.0696357563138008,0.725722312927246,-0.684454500675201,-0.0707717165350914,0.727469384670258,-0.68248051404953,0.134959727525711,0.719984948635101,-0.680740475654602,-0.0729151517152786,0.703457176685333,-0.70698755979538,-0.173254191875458,0.719208002090454,-0.672846853733063,-0.186344459652901,0.720669806003571,-0.667765557765961,0.0688705816864967,0.730584442615509,-0.679340362548828,-0.16759267449379,0.692043900489807,-0.702131032943726,-0.0721104890108109,0.712683320045471,-0.697769820690155,-0.209707200527191,0.728475987911224,-0.652185320854187,-0.184236764907837,0.725455164909363,-0.663152813911438,-0.174274891614914,0.724125504493713,-0.667285919189453,-0.181982144713402,0.70048600435257,-0.690073907375336,-0.170484244823456,0.705894887447357,-0.687493681907654,0.0592069774866104,0.787196040153503,-0.613854169845581,-0.211953818798065,0.687176823616028,-0.69488388299942,
  531. -0.170587986707687,0.706392824649811,-0.686956286430359,-0.182408362627029,0.701073408126831,-0.689364433288574,-0.18653316795826,0.622271776199341,-0.760252058506012,-0.250963687896729,0.64408951997757,-0.722610592842102,-0.361240178346634,0.673135161399841,-0.645286440849304,-0.187566548585892,0.620619714260101,-0.761347532272339,-0.0657183453440666,0.580917656421661,-0.811304986476898,-0.250973522663116,0.636968553066254,-0.728891849517822,-0.388373792171478,0.590043008327484,-0.707824230194092,-0.250809997320175,0.609845995903015,-0.75178599357605,-0.321243047714233,0.601429164409637,-0.731495678424835,-0.250912010669708,0.620600879192352,-0.742898285388947,-0.0602227300405502,0.598386943340302,-0.79894083738327,-0.18217059969902,0.615352988243103,-0.766912400722504,-0.250519067049026,0.591002106666565,-0.766783356666565,-0.181575611233711,0.610061943531036,-0.771268248558044,-0.312612354755402,0.570855140686035,-0.759208798408508,-0.0588642358779907,0.602645993232727,-0.79583466053009,-0.0273015908896923,0.5980184674263,-0.801017165184021,-0.182097852230072,0.614703476428986,-0.767450392246246,-0.125018015503883,0.635302305221558,-0.762077212333679,-0.30118802189827,0.531700670719147,-0.791568279266357,-0.181071221828461,0.605613231658936,-0.774884402751923,-0.181633368134499,0.610573470592499,-0.770849764347076,-0.0203903838992119,0.634478211402893,-0.772671759128571,-0.121606647968292,0.621466398239136,-0.773945391178131,-0.202741265296936,0.797923564910889,-0.567638993263245,-0.271831393241882,0.79675704240799,-0.539709150791168,-0.391570538282394,0.783622086048126,-0.482295572757721,-0.203340515494347,0.796358704566956,-0.569618701934814,-0.0660745427012444,0.793161988258362,-0.605415761470795,-0.269555002450943,0.792036890983582,-0.54773873090744,-0.392876923084259,0.722370445728302,-0.569059431552887,-0.26079273223877,0.773677051067352,-0.577417552471161,-0.32548999786377,0.750755786895752,-0.574823439121246,-0.2642902135849,0.781040489673615,-0.565797209739685,-0.0658630952239037,0.806370973587036,-0.587731122970581,
  532. -0.186931163072586,0.794885218143463,-0.577247083187103,-0.18539234995842,0.792500376701355,-0.581010222434998,-0.307649284601212,0.732565879821777,-0.607206046581268,-0.254653006792068,0.760644614696503,-0.597136199474335,-0.0658058375120163,0.809577822685242,-0.583312332630157,-0.033808920532465,0.811518609523773,-0.583347678184509,-0.186746880412102,0.794600248336792,-0.577698945999146,-0.141104593873024,0.819743156433105,-0.555077135562897,-0.284872502088547,0.708360075950623,-0.645812451839447,-0.184077769517899,0.790454089641571,-0.584206938743591,-0.185503512620926,0.792672991752625,-0.580739200115204,-0.0385111682116985,0.83752304315567,-0.545043349266052,-0.13318258523941,0.811078548431396,-0.569573521614075,-0.0503039360046387,0.783345341682434,-0.619547843933105,-0.0469754636287689,0.78313809633255,-0.620070993900299,0.141184687614441,0.756965041160584,-0.638020992279053,-0.165792644023895,0.796722590923309,-0.581159114837646,-0.0472327917814255,0.782468616962433,-0.62089604139328,-0.0503869317471981,0.78300666809082,-0.619969069957733,0.0810250714421272,0.775102436542511,-0.626618802547455,-0.0498565211892128,0.785166084766388,-0.61727511882782,0.143075540661812,0.765558183193207,-0.627255976200104,-0.0554750226438046,0.76167231798172,-0.64558333158493,-0.165156707167625,0.783314168453217,-0.599284887313843,-0.173662424087524,0.78452730178833,-0.59527999162674,0.0808422714471817,0.77959531545639,-0.621044158935547,-0.162619650363922,0.757037162780762,-0.632811009883881,-0.0528051778674126,0.773008048534393,-0.632194876670837,-0.201727479696274,0.793232619762421,-0.574532926082611,-0.170963570475578,0.788758337497711,-0.590450584888458,-0.165580302476883,0.787879943847656,-0.593151152133942,-0.17612162232399,0.764360845088959,-0.620269000530243,-0.163795068860054,0.769002437591553,-0.617904841899872,0.0782924070954323,0.830931544303894,-0.550838470458984,-0.20945417881012,0.752402484416962,-0.624515533447266,-0.16384568810463,0.769525170326233,-0.617240428924561,-0.176507323980331,0.764973402023315,-0.619403660297394,
  533. -0.190938830375671,0.476107090711594,-0.858408093452454,-0.267931580543518,0.497436612844467,-0.825087547302246,-0.378839582204819,0.522278130054474,-0.764006674289703,-0.191685259342194,0.47421196103096,-0.859290242195129,-0.064227856695652,0.442783981561661,-0.894324958324432,-0.266585230827332,0.48889297246933,-0.830611884593964,-0.39163076877594,0.428313553333282,-0.814354419708252,-0.261275768280029,0.456333369016647,-0.850584983825684,-0.317111134529114,0.445529401302338,-0.837224125862122,-0.263437479734421,0.46938544511795,-0.842779934406281,-0.0616090781986713,0.462206810712814,-0.884629368782043,-0.187913507223129,0.469019114971161,-0.862965643405914,-0.257488876581192,0.434068351984024,-0.863298535346985,-0.186182051897049,0.462383955717087,-0.866912543773651,-0.303848505020142,0.413919568061829,-0.858106434345245,-0.060956209897995,0.466981112957001,-0.882163822650909,-0.0278633274137974,0.465402275323868,-0.884660601615906,-0.187708556652069,0.468232959508896,-0.863436937332153,-0.129368707537651,0.497642785310745,-0.857680201530457,-0.286809176206589,0.373997509479523,-0.881967425346375,-0.184754133224487,0.456923753023148,-0.870107233524323,-0.186365529894829,0.463086307048798,-0.866498053073883,-0.0271508041769266,0.506115794181824,-0.862038016319275,-0.12308956682682,0.481872737407684,-0.867552638053894,-0.113257423043251,0.970948278903961,-0.210789516568184,-0.106940023601055,0.971728980541229,-0.210491567850113,0.0839668214321136,0.976680278778076,-0.197598367929459,-0.290802270174026,0.939743757247925,-0.179766103625298,-0.106862485408783,0.973429799079895,-0.202521562576294,-0.113918848335743,0.972781598567963,-0.201788544654846,0.0183027666062117,0.981031954288483,-0.192980244755745,-0.11344038695097,0.971460998058319,-0.20831461250782,0.0826546400785446,0.979400932788849,-0.184234082698822,-0.113192588090897,0.970765650272369,-0.211664095520973,-0.228322923183441,0.955008625984192,-0.189280897378922,-0.290453553199768,0.94060093164444,-0.175802811980248,0.0167869664728642,0.982160329818726,-0.187294945120811,
  534. -0.20892208814621,0.943388283252716,-0.257624119520187,-0.111903689801693,0.967028498649597,-0.22876513004303,-0.453983664512634,0.875608742237091,-0.164949104189873,-0.290580153465271,0.940292775630951,-0.177235990762711,-0.23077529668808,0.956163585186005,-0.180260851979256,-0.184293985366821,0.957740664482117,-0.220836102962494,-0.214185908436775,0.946955144405365,-0.239583969116211,-0.00490622408688068,0.994413256645203,-0.105443350970745,-0.412799626588821,0.839983105659485,-0.35217148065567,-0.214425042271614,0.947110116481781,-0.238755911588669,-0.184258535504341,0.957735061645508,-0.220889821648598,0.492088586091995,-0.065655454993248,0.868065774440765,0.4418044090271,-0.0680282413959503,0.894528388977051,0.55743932723999,-0.0621156468987465,0.827890753746033,0.488562524318695,-0.089235857129097,0.867953777313232,0.22091181576252,-0.015373632311821,0.975172638893127,0.441775619983673,-0.0760155916213989,0.893899261951447,0.550712585449219,-0.0196510851383209,0.834463596343994,0.441804945468903,-0.0601184591650963,0.895094454288483,0.307303667068481,-0.105337090790272,0.945763468742371,0.441799819469452,-0.0700423195958138,0.894375205039978,0.214039549231529,-0.0521425157785416,0.975432336330414,0.136055678129196,-0.0455591790378094,0.989653050899506,0.44180816411972,-0.0641347169876099,0.894814133644104,0.139258414506912,-0.119243159890175,0.983050465583801,0.304388552904129,-0.0910434424877167,0.948187112808228,0.672667026519775,-0.510778725147247,0.535373091697693,0.454774022102356,-0.650923073291779,0.607848584651947,0.585732042789459,-0.575136721134186,0.571083068847656,0.67341136932373,-0.537524461746216,0.507528007030487,0.461434125900269,-0.617808759212494,0.636703193187714,0.450637489557266,-0.620563626289368,0.641737222671509,0.585278332233429,-0.574025809764862,0.57266366481781,0.456783413887024,-0.668329536914825,0.58709841966629,0.356265276670456,-0.726036906242371,0.588171362876892,0.450239241123199,-0.617901742458344,0.644578993320465,0.461854130029678,-0.615186035633087,0.638934254646301,0.265016317367554,-0.645723402500153,0.716105997562408,
  535. 0.349393635988235,-0.710119485855103,0.611272811889648,0.455603301525116,-0.657817602157593,0.599751353263855,0.271764785051346,-0.740880072116852,0.614199221134186,0.502507567405701,-0.526110827922821,0.686071217060089,0.452743768692017,-0.542596518993378,0.707539618015289,0.569849371910095,-0.500031471252441,0.652104496955872,0.498939841985703,-0.545339703559875,0.673545598983765,0.239285960793495,-0.543149709701538,0.804817080497742,0.452605217695236,-0.548506379127502,0.703057050704956,0.563412487506866,-0.467816829681396,0.680965304374695,0.452857255935669,-0.53665816783905,0.711982011795044,0.322206288576126,-0.601121664047241,0.731324732303619,0.452711343765259,-0.544082641601563,0.706418216228485,0.232465267181396,-0.573543846607208,0.785498142242432,0.152654558420181,-0.576337933540344,0.802827000617981,0.452803075313568,-0.539657652378082,0.709745764732361,0.154880538582802,-0.634102940559387,0.757578730583191,0.319426625967026,-0.590586543083191,0.741062998771667,0.601038813591003,-0.425396233797073,0.676602125167847,0.559082686901093,-0.44120192527771,0.701973974704742,0.661678194999695,-0.399244457483292,0.63465416431427,0.597786366939545,-0.445768475532532,0.666289687156677,0.348909825086594,-0.446413218975067,0.824000716209412,0.558947801589966,-0.448632121086121,0.697356879711151,0.655707597732544,-0.365405201911926,0.66070157289505,0.559173941612244,-0.433815747499466,0.706490218639374,0.441083014011383,-0.501773118972778,0.744089722633362,0.559051334857941,-0.443160742521286,0.700764060020447,0.342474311590195,-0.479492902755737,0.807959198951721,0.265079498291016,-0.485297799110413,0.833198010921478,0.559133231639862,-0.437539607286453,0.70422238111496,0.267698377370834,-0.547646760940552,0.79272985458374,0.438754469156265,-0.49153658747673,0.752254247665405,0.604459404945374,-0.685542821884155,0.405783146619797,0.555385947227478,-0.714019894599915,0.426288723945618,0.667249441146851,-0.643115520477295,0.375740230083466,0.599897027015686,-0.7003133893013,0.386891037225723,0.349129199981689,-0.765266120433807,0.540811061859131,
  536. 0.554960191249847,-0.718117296695709,0.419912874698639,0.662730634212494,-0.622743010520935,0.415907889604568,0.555777609348297,-0.709905087947845,0.432603925466537,0.438072383403778,-0.783364713191986,0.440944850444794,0.555281817913055,-0.715054869651794,0.4246866106987,0.341016829013824,-0.788347840309143,0.512069582939148,0.26725971698761,-0.802170634269714,0.533942341804504,0.555582702159882,-0.711998999118805,0.429400980472565,0.2663554251194,-0.841047465801239,0.470843821763992,0.436273723840714,-0.777474701404572,0.452988237142563,0.687966227531433,-0.664285778999329,0.29227888584137,0.649851262569427,-0.698846042156219,0.298843860626221,0.746740102767944,-0.603426337242126,0.279742538928986,0.687518239021301,-0.673547089099884,0.271390795707703,0.456409990787506,-0.80823028087616,0.372093796730042,0.650663793087006,-0.701451301574707,0.2908656001091,0.736231207847595,-0.594934284687042,0.322516322135925,0.649001836776733,-0.696219265460968,0.306717157363892,0.542340874671936,-0.790850818157196,0.283586472272873,0.650068461894989,-0.699533045291901,0.296756774187088,0.454520463943481,-0.823461771011353,0.339590758085251,0.378083974123001,-0.856895208358765,0.350404173135757,0.649437785148621,-0.69755607843399,0.302731215953827,0.388525396585464,-0.877521216869354,0.28107738494873,0.538591325283051,-0.788599014282227,0.296700239181519,0.787973344326019,0.0594026818871498,0.612837195396423,0.596207618713379,0.0222990028560162,0.802520513534546,0.714693486690521,0.0443748086690903,0.698028743267059,0.788634479045868,0.0206807926297188,0.614514470100403,0.603350222110748,0.0663689821958542,0.794709861278534,0.592607259750366,0.0686140581965446,0.802563846111298,0.71423864364624,0.0465514063835144,0.698352515697479,0.597740232944489,-0.00529939820989966,0.801672399044037,0.507920682430267,-0.0410169251263142,0.860426723957062,0.592241048812866,0.0725570023059845,0.802487373352051,0.603715181350708,0.0697920396924019,0.794139206409454,0.420151978731155,0.109339475631714,0.900842487812042,0.501801252365112,-0.0131225120276213,0.864883363246918,
  537. 0.596861720085144,0.0115001769736409,0.802261710166931,0.425501793622971,-0.0316000320017338,0.90440571308136,0.608398020267487,-0.791739523410797,-0.0547761470079422,0.560854732990265,-0.826628267765045,-0.0461284890770912,0.666507303714752,-0.742603242397308,-0.0656387135386467,0.601292312145233,-0.795214056968689,-0.0779894888401031,0.369495987892151,-0.928081154823303,0.046242069453001,0.559596836566925,-0.827007055282593,-0.0539513006806374,0.667017817497253,-0.74473112821579,-0.0215152408927679,0.562066972255707,-0.826201260089874,-0.0383693724870682,0.43663090467453,-0.897902488708496,-0.0558977536857128,0.560539543628693,-0.826729118824005,-0.0481096059083939,0.358042776584625,-0.933627426624298,0.0120544657111168,0.281508535146713,-0.958983957767487,0.0332063809037209,0.561456561088562,-0.826424181461334,-0.042304627597332,0.273075014352798,-0.961164474487305,-0.0399116463959217,0.436227560043335,-0.898867428302765,-0.0417472273111343,0.681386590003967,0.0813767090439796,0.727385878562927,0.455026090145111,0.0587088689208031,0.888540804386139,0.587766766548157,0.0721291750669479,0.805808663368225,0.680768549442291,0.0420467332005501,0.731290876865387,0.473144382238388,0.101255670189857,0.875146687030792,0.45255720615387,0.106333807110786,0.885372936725616,0.587577641010284,0.0731124803423882,0.805857956409454,0.456001788377762,0.0303113423287869,0.889462530612946,0.361415207386017,0.0012601314811036,0.932404100894928,0.452298104763031,0.110394597053528,0.885008156299591,0.473684787750244,0.104493960738182,0.874473392963409,0.274792671203613,0.154397085309029,0.949026048183441,0.355559319257736,0.0293973460793495,0.934191286563873,0.455451935529709,0.0475956276059151,0.888987243175507,0.275959849357605,0.0151920523494482,0.96104907989502,-0.206931725144386,0.11997777223587,0.970971047878265,-0.405113905668259,0.174049571156502,0.897546350955963,-0.256230801343918,0.133708402514458,0.957323312759399,-0.207463726401329,0.117687731981277,0.971137702465057,-0.255448162555695,0.126888141036034,0.958460092544556,
  538. -0.0781647339463234,0.0919389650225639,0.992692053318024,-0.404924303293228,0.0656987130641937,0.911986827850342,-0.316087365150452,0.0861866772174835,0.944807231426239,-0.252252250909805,0.100022561848164,0.962478220462799,-0.254705727100372,0.120509877800941,0.959480285644531,-0.151612803339958,0.122052535414696,0.980875492095947,-0.0779076665639877,0.12232718616724,0.989427328109741,-0.249451696872711,0.077630989253521,0.965270638465881,-0.30030569434166,0.0447358563542366,0.95279335975647,-0.154966369271278,0.136421516537666,0.978455185890198,-0.0779157876968384,0.121485441923141,0.989530503749847,-0.150586664676666,0.117679230868816,0.981567740440369,-0.0548852980136871,0.122551932930946,0.990943312644959,-0.296739667654037,0.0355732068419456,0.954295635223389,-0.14843912422657,0.116305738687515,0.982058465480804,-0.150063201785088,0.11545242369175,0.981912314891815,-0.150220423936844,0.116120927035809,0.981809437274933,-0.148586586117744,0.116681925952435,0.981991529464722,-0.0578570067882538,0.147050306200981,0.987435519695282,0.775488555431366,-0.615043222904205,0.142616212368011,0.574118912220001,-0.80615371465683,0.143190965056419,0.693927407264709,-0.705449402332306,0.144242629408836,0.775103688240051,-0.623362064361572,0.103120923042297,0.580450236797333,-0.792755126953125,0.186056405305862,0.571430087089539,-0.798540592193604,0.189210399985313,0.693653643131256,-0.705391108989716,0.145835772156715,0.575120031833649,-0.809830665588379,0.11580715328455,0.485302537679672,-0.869332730770111,0.093499094247818,0.571141600608826,-0.797806978225708,0.193135529756546,0.580926835536957,-0.791610360145569,0.189412131905556,0.39956122636795,-0.882023096084595,0.249772131443024,0.479883849620819,-0.868868589401245,0.121568724513054,0.574563503265381,-0.807667791843414,0.132474899291992,0.400651037693024,-0.909379243850708,0.111839979887009,0.654190719127655,-0.730633616447449,0.195471361279488,0.613782823085785,-0.764462471008301,0.197149217128754,0.709832549095154,-0.67768269777298,0.19205179810524,0.653349816799164,-0.737066924571991,0.172818958759308,
  539. 0.404363840818405,-0.877816438674927,0.256765246391296,0.614581286907196,-0.766027390956879,0.188392892479897,0.699840843677521,-0.674870610237122,0.234035402536392,0.612946331501007,-0.762857258319855,0.205780372023582,0.494676202535629,-0.852845251560211,0.167183890938759,0.614001929759979,-0.764888405799866,0.194801062345505,0.401928871870041,-0.888662040233612,0.220755994319916,0.332005321979523,-0.915796995162964,0.226027205586433,0.613372206687927,-0.76367050409317,0.201449930667877,0.341765344142914,-0.927037596702576,0.15426504611969,0.490757554769516,-0.852206289768219,0.181387424468994,0.688646793365479,-0.722726285457611,0.0585862919688225,0.645087242126465,-0.76139909029007,0.0642953440546989,0.746101975440979,-0.663937628269196,0.0501881539821625,0.684779405593872,-0.727871060371399,0.0357897467911243,0.456458508968353,-0.878198623657227,0.142873406410217,0.644754350185394,-0.762262046337128,0.0569959431886673,0.741789698600769,-0.663887679576874,0.0948745086789131,0.645384192466736,-0.760498702526093,0.0715624392032623,0.531233966350555,-0.845992028713226,0.0456947907805443,0.6450075507164,-0.76161801815033,0.0624769404530525,0.44941857457161,-0.886796474456787,0.107772834599018,0.370819121599197,-0.920525789260864,0.122985556721687,0.645237982273102,-0.760960102081299,0.067879818379879,0.371015191078186,-0.927362740039825,0.0484368801116943,0.529399693012238,-0.846251368522644,0.0599546767771244,0.730003476142883,-0.427761524915695,-0.533024370670319,0.689633846282959,-0.452124655246735,-0.56567519903183,0.77988189458847,-0.393245935440063,-0.486972093582153,0.727377533912659,-0.410620629787445,-0.549829721450806,0.502714693546295,-0.580764770507813,-0.640304863452911,0.689652681350708,-0.445700496435165,-0.570727825164795,0.77387535572052,-0.430282860994339,-0.464729607105255,0.689569532871246,-0.458482891321182,-0.560613393783569,0.581081986427307,-0.48076468706131,-0.656665146350861,0.689643144607544,-0.450486749410629,-0.566969275474548,0.497662842273712,-0.555160105228424,-0.666430056095123,0.42795392870903,-0.58272123336792,-0.690862834453583,
  540. 0.689607799053192,-0.455269336700439,-0.563179314136505,0.431460499763489,-0.523967742919922,-0.734370291233063,0.57858544588089,-0.492949545383453,-0.649799823760986,0.787479221820831,-0.56156051158905,-0.254020392894745,0.587145924568176,-0.72795033454895,-0.354045361280441,0.709046304225922,-0.638433575630188,-0.299426257610321,0.785332918167114,-0.546376883983612,-0.291074603796005,0.598628759384155,-0.738388299942017,-0.310526013374329,0.587049663066864,-0.747451424598694,-0.310948878526688,0.70880788564682,-0.639477968215942,-0.297757178544998,0.586579561233521,-0.715569198131561,-0.379322022199631,0.494144350290298,-0.756195545196533,-0.428940176963806,0.586980402469635,-0.749041140079498,-0.30723175406456,0.599248230457306,-0.73929226398468,-0.307162284851074,0.423425197601318,-0.854178190231323,-0.301812499761581,0.48993194103241,-0.772061347961426,-0.40483084321022,0.586980044841766,-0.723182857036591,-0.363951921463013,0.418359100818634,-0.799989461898804,-0.430107831954956,-0.203032150864601,0.701239109039307,0.683404505252838,-0.401536524295807,0.698063015937805,0.592854499816895,-0.255542933940887,0.703637003898621,0.663017988204956,-0.203477784991264,0.699798166751862,0.684747636318207,-0.254809081554413,0.6990727186203,0.668108999729156,-0.0778849422931671,0.693206191062927,0.716518759727478,-0.401332437992096,0.623870849609375,0.670609712600708,-0.321589648723602,0.656721234321594,0.682127118110657,-0.251800119876862,0.680765569210052,0.687862634658813,-0.254113912582397,0.694786667823792,0.672828078269959,-0.158023074269295,0.708605587482452,0.687682271003723,-0.0775494575500488,0.714865386486053,0.694948613643646,-0.249144732952118,0.665088832378387,0.703977108001709,-0.305257529020309,0.628003537654877,0.715841829776764,-0.160580798983574,0.716060936450958,0.679316341876984,-0.0775593370199203,0.714296996593475,0.695531785488129,-0.156938299536705,0.70543384552002,0.691182732582092,-0.0577549077570438,0.715790808200836,0.695922374725342,-0.301880061626434,0.622040152549744,0.722450435161591,-0.147267818450928,0.70611572265625,0.692613065242767,
  541. -0.155806258320808,0.702117800712585,0.694805800914764,-0.156180813908577,0.703215658664703,0.693610370159149,-0.147329613566399,0.706220388412476,0.692493140697479,-0.0606642998754978,0.732146501541138,0.678440392017365,0.775398671627045,-0.390334755182266,0.496382743120193,0.57597815990448,-0.537842690944672,0.615609049797058,0.694746732711792,-0.459100246429443,0.553673207759857,0.774840474128723,-0.421625316143036,0.471014142036438,0.582857012748718,-0.500951290130615,0.639785528182983,0.573496878147125,-0.503605425357819,0.646129190921783,0.694438874721527,-0.457936555147171,0.555021464824677,0.576876521110535,-0.557636499404907,0.596871018409729,0.483255833387375,-0.620546519756317,0.61756443977356,0.573228240013123,-0.500624656677246,0.648678958415985,0.583338558673859,-0.498017579317093,0.641634345054626,0.40573251247406,-0.530678033828735,0.744151830673218,0.477891981601715,-0.602402150630951,0.639320731163025,0.576381802558899,-0.54565954208374,0.608308851718903,0.406860291957855,-0.63633406162262,0.655395865440369,0.656962335109711,-0.445489346981049,0.608226716518402,0.611009299755096,-0.474296391010284,0.633806467056274,0.711391568183899,-0.406992077827454,0.57295686006546,0.656141698360443,-0.4655641913414,0.59390926361084,0.407074511051178,-0.523390054702759,0.748567461967468,0.611716508865356,-0.480266869068146,0.628606915473938,0.701400399208069,-0.377914041280746,0.604333162307739,0.610269010066986,-0.468338847160339,0.638929188251495,0.495378911495209,-0.559784352779388,0.664259970188141,0.611194014549255,-0.475827395915985,0.63247948884964,0.404640138149261,-0.553944230079651,0.727607190608978,0.332312226295471,-0.572498917579651,0.74954229593277,0.610647797584534,-0.471352159976959,0.636346280574799,0.342220902442932,-0.626042306423187,0.700682520866394,0.491473734378815,-0.550484120845795,0.674848735332489,0.691864967346191,-0.5247682929039,0.495924592018127,0.644947171211243,-0.553526043891907,0.52692699432373,0.745299875736237,-0.486898690462112,0.455475360155106,0.687816441059113,-0.543991446495056,0.480605870485306,
  542. 0.454155385494232,-0.595511376857758,0.662653148174286,0.644595503807068,-0.558710157871246,0.521861612796783,0.740988790988922,-0.459125906229019,0.490039974451065,0.645265221595764,-0.548306524753571,0.531970620155334,0.526285469532013,-0.63420045375824,0.566404044628143,0.644864201545715,-0.554799020290375,0.525688469409943,0.447227448225021,-0.624528765678406,0.640274584293365,0.372380435466766,-0.640483260154724,0.671650230884552,0.64510840177536,-0.550953984260559,0.529419362545013,0.372342526912689,-0.692298114299774,0.618129789829254,0.524310231208801,-0.625036478042603,0.578297674655914,0.731302440166473,-0.665926873683929,-0.147439181804657,0.688400745391846,-0.707848906517029,-0.158285856246948,0.780945777893066,-0.610239505767822,-0.133160203695297,0.728648662567139,-0.662979781627655,-0.171840280294418,0.508248209953308,-0.850307166576386,-0.136606991291046,0.688422977924347,-0.706105947494507,-0.165795609354973,0.774828553199768,-0.625409305095673,-0.0922174602746964,0.688338041305542,-0.709541141986847,-0.150805220007896,0.581785976886749,-0.785593807697296,-0.210635751485825,0.688410341739655,-0.707405209541321,-0.160215705633163,0.503217279911041,-0.846888542175293,-0.171908065676689,0.427404224872589,-0.887177526950836,-0.17390139400959,0.688374698162079,-0.70869368314743,-0.154575645923615,0.431392371654511,-0.86838710308075,-0.244549438357353,0.57936030626297,-0.790727198123932,-0.197717547416687,0.789182901382446,-0.594743430614471,0.153201401233673,0.589533388614655,-0.787546157836914,0.179503470659256,0.708849489688873,-0.685480833053589,0.166278690099716,0.786892056465149,-0.606457114219666,0.114065244793892,0.602286159992218,-0.767800390720367,0.218481510877609,0.589287996292114,-0.77610194683075,0.224512010812759,0.708617806434631,-0.685256779193878,0.16817869246006,0.589077413082123,-0.793539583683014,0.152587413787842,0.498626172542572,-0.85549396276474,0.13964968919754,0.58920806646347,-0.775046229362488,0.228335916996002,0.60289591550827,-0.766440749168396,0.221551910042763,0.42769330739975,-0.853435933589935,0.297868371009827,
  543. 0.494655162096024,-0.85273414850235,0.167811423540115,0.589408159255981,-0.789965629577637,0.168974906206131,0.422540634870529,-0.891080737113953,0.165634512901306,0.601936161518097,-0.704994916915894,-0.375040054321289,0.365723878145218,-0.816962838172913,-0.445889919996262,0.503953635692596,-0.760485112667084,-0.409503519535065,0.597954094409943,-0.688653171062469,-0.410131305456162,0.373930722475052,-0.834168434143066,-0.405387341976166,0.366955697536469,-0.837538719177246,-0.404811471700668,0.503778040409088,-0.761293053627014,-0.408216387033463,0.364629209041595,-0.803953051567078,-0.469792813062668,0.256591022014618,-0.822517514228821,-0.507568717002869,0.367025047540665,-0.839215815067291,-0.401259809732437,0.374833524227142,-0.8353471159935,-0.402113288640976,0.177843734622002,-0.910739064216614,-0.372727900743485,0.252546101808548,-0.838124871253967,-0.483494818210602,0.365327388048172,-0.811938762664795,-0.455292642116547,0.167162239551544,-0.849808156490326,-0.499883085489273,0.429063647985458,-0.885249555110931,-0.17954857647419,0.37445279955864,-0.908743679523468,-0.184309616684914,0.496958315372467,-0.850457012653351,-0.172497153282166,0.425054937601089,-0.881956934928894,-0.20366707444191,0.150462061166763,-0.978971719741821,-0.137751951813698,0.374352425336838,-0.907146453857422,-0.19221256673336,0.490139752626419,-0.861850321292877,-0.130295962095261,0.374528348445892,-0.910269141197205,-0.176461428403854,0.237158790230751,-0.945196449756622,-0.224409520626068,0.37442934513092,-0.908339440822601,-0.186338841915131,0.143172413110733,-0.974309742450714,-0.173845648765564,0.0621357820928097,-0.983952403068542,-0.167262956500053,0.37449324131012,-0.909506738185883,-0.180422618985176,0.064719520509243,-0.968666255474091,-0.23978579044342,0.234350055456162,-0.949073433876038,-0.210569933056831,0.319883525371552,-0.609209716320038,-0.725629508495331,0.258273541927338,-0.631032228469849,-0.731500685214996,0.393011510372162,-0.579107940196991,-0.714266002178192,0.310854643583298,-0.592646300792694,-0.743061125278473,
  544. 0.0478684827685356,-0.726077973842621,-0.685944259166718,0.25678363442421,-0.625820517539978,-0.736485481262207,0.394095480442047,-0.613803744316101,-0.68405693769455,0.25973716378212,-0.63616669178009,-0.726518154144287,0.123864620923996,-0.645499467849731,-0.753649830818176,0.257903069257736,-0.629734933376312,-0.73274827003479,0.0339083448052406,-0.702676117420197,-0.7107013463974,-0.0371844805777073,-0.717556238174438,-0.695507287979126,0.258987814188004,-0.633536159992218,-0.729079723358154,-0.0479623042047024,-0.665986299514771,-0.74442058801651,0.123680964112282,-0.655777990818024,-0.744753837585449,-0.0655699074268341,0.969029426574707,0.238080948591232,-0.0607234910130501,0.969415009021759,0.237796694040298,0.132614210247993,0.966000556945801,0.221938222646713,-0.176915660500526,0.948895931243896,0.261337906122208,-0.0608376860618591,0.969584226608276,0.237076491117477,-0.0655667558312416,0.969018042087555,0.238128200173378,0.0637865588068962,0.969065368175507,0.238419353961945,-0.0653915852308273,0.968382477760315,0.240747407078743,0.133296370506287,0.962690114974976,0.235499128699303,-0.0676934346556664,0.976293444633484,0.205593749880791,-0.17537185549736,0.954874813556671,0.239706143736839,-0.183120936155319,0.952822625637054,0.242066010832787,0.063162662088871,0.967672526836395,0.244172886013985,-0.169395089149475,0.965049207210541,0.199963316321373,-0.0666904523968697,0.972965896129608,0.221110239624977,-0.207572057843208,0.943762600421906,0.257344096899033,-0.181063488125801,0.951560139656067,0.248494118452072,-0.176432594656944,0.952835857868195,0.246931880712509,-0.185344770550728,0.959484875202179,0.212217152118683,-0.172284975647926,0.960398495197296,0.218981057405472,0.0539497211575508,0.943865180015564,0.325895667076111,-0.209955528378487,0.956789135932922,0.20117960870266,-0.17239885032177,0.960205078125,0.219737932085991,-0.185810923576355,0.959182977676392,0.213172227144241,-0.190079495310783,0.975326240062714,0.112287551164627,-0.253495216369629,0.955568492412567,0.150429546833038,-0.360309302806854,0.907788515090942,0.214702486991882,
  545. -0.191267237067223,0.975353717803955,0.110008902847767,-0.0611355490982533,0.997094452381134,0.045443020761013,-0.253559142351151,0.957018315792084,0.140796601772308,-0.387381434440613,0.915153384208679,0.111489310860634,-0.253584235906601,0.961654663085938,0.104477107524872,-0.315943270921707,0.942614197731018,0.107973948121071,-0.25361493229866,0.959971606731415,0.118886359035969,-0.0552446246147156,0.996166527271271,0.0678253024816513,-0.184884265065193,0.977508783340454,0.101461067795753,-0.253408163785934,0.964062213897705,0.0798026025295258,-0.184147611260414,0.978444695472717,0.0934657230973244,-0.307571232318878,0.949046313762665,0.0686366781592369,-0.0537853464484215,0.995855093002319,0.0733467862010002,-0.0298210307955742,0.997221887111664,0.0682588592171669,-0.18479585647583,0.97762531042099,0.100495025515556,-0.120118051767349,0.985119521617889,0.12292817234993,-0.296541571617126,0.95481139421463,0.0199579130858183,-0.183530867099762,0.979168474674225,0.0868657156825066,-0.184221819043159,0.978353917598724,0.0942655652761459,-0.0232177898287773,0.993279635906219,0.113386496901512,-0.116309478878975,0.987888216972351,0.102708734571934,-0.19918118417263,0.910855412483215,0.361482113599777,-0.276616662740707,0.883793115615845,0.377349972724915,-0.394064426422119,0.828961431980133,0.396908283233643,-0.199714094400406,0.911573171615601,0.359372764825821,-0.0718157440423965,0.938106894493103,0.338818788528442,-0.274224102497101,0.888207316398621,0.36863112449646,-0.394934684038162,0.869271278381348,0.297311455011368,-0.264963537454605,0.904026031494141,0.335457175970078,-0.322106838226318,0.891095221042633,0.319681853055954,-0.268692404031754,0.897889852523804,0.348709493875504,-0.0716075822710991,0.930818438529968,0.358398348093033,-0.190670937299728,0.915488243103027,0.354296624660492,-0.188586354255676,0.918005406856537,0.348857402801514,-0.304663479328156,0.908014893531799,0.28755709528923,-0.258517980575562,0.913939118385315,0.312863796949387,-0.0715510547161102,0.92894583940506,0.363235741853714,-0.0303087048232555,0.930384814739227,0.365329325199127,
  546. -0.190424174070358,0.915788590908051,0.353652447462082,-0.141973838210106,0.911232769489288,0.386650234460831,-0.282450258731842,0.926868140697479,0.247259929776192,-0.186861887574196,0.920053005218506,0.344362139701843,-0.188789740204811,0.917761743068695,0.349387913942337,-0.0349681600928307,0.911835730075836,0.409063369035721,-0.13431890308857,0.918524563312531,0.371848225593567,-0.0495841130614281,0.945520520210266,0.321764528751373,-0.0448744930326939,0.945976614952087,0.321114391088486,0.141834199428558,0.946595668792725,0.289551109075546,-0.165151238441467,0.920638620853424,0.353764921426773,-0.0452182702720165,0.946409285068512,0.319788634777069,-0.049683541059494,0.945726811885834,0.32114252448082,0.0745814368128777,0.947184205055237,0.311897218227386,-0.0491359494626522,0.944586277008057,0.32456511259079,0.143717303872108,0.942205607891083,0.302645206451416,-0.0547312088310719,0.955705463886261,0.289191573858261,-0.170946195721626,0.926589906215668,0.33497554063797,-0.173061460256577,0.925910294055939,0.335767537355423,0.0744370445609093,0.945350468158722,0.317445427179337,-0.16826169192791,0.941585838794708,0.291726231575012,-0.0520314387977123,0.950489044189453,0.306371182203293,-0.205022588372231,0.911767363548279,0.355873763561249,-0.170368924736977,0.924153625965118,0.341927587985992,-0.171371340751648,0.923816740512848,0.342336922883987,-0.173751935362816,0.935866057872772,0.306537091732025,-0.169333830475807,0.936064720153809,0.308397471904755,0.0720407292246819,0.914917230606079,0.397160679101944,-0.213204428553581,0.932465553283691,0.291636645793915,-0.169392749667168,0.935744643211365,0.309335112571716,-0.174114808440208,0.935493230819702,0.307468205690384,-0.192430675029755,0.979146003723145,-0.065143771469593,-0.266657382249832,0.963310718536377,-0.0304387863725424,-0.379021793603897,0.925069510936737,0.0242672953754663,-0.193219795823097,0.978842616081238,-0.0673302710056305,-0.0617143251001835,0.991542279720306,-0.11417193710804,-0.265329480171204,0.963307976722717,-0.0404752381145954,-0.391911745071411,0.916332125663757,-0.0821008458733559,
  547. -0.260093063116074,0.962413787841797,-0.078175276517868,-0.322206407785416,0.94326639175415,-0.0801966264843941,-0.262222707271576,0.962936818599701,-0.0631813630461693,-0.0590250715613365,0.994001388549805,-0.0920719131827354,-0.184884414076805,0.979917645454407,-0.0746938586235046,-0.256363034248352,0.961029529571533,-0.103442117571831,-0.183463215827942,0.979673206806183,-0.0811275094747543,-0.308523267507553,0.94370448589325,-0.119311422109604,-0.0583571344614029,0.994531393051147,-0.0866131260991097,-0.0327516756951809,0.995520651340485,-0.0886902287602425,-0.184713706374168,0.979890465736389,-0.0754687413573265,-0.133246287703514,0.989807605743408,-0.0502622723579407,-0.290839850902557,0.941999852657318,-0.167477175593376,-0.182267516851425,0.979435861110687,-0.086509957909584,-0.183596938848495,0.979697942733765,-0.0805239081382751,-0.0321399308741093,0.998521327972412,-0.0438429117202759,-0.127691671252251,0.989542365074158,-0.0670885294675827,-0.116886645555496,0.703773617744446,0.700742602348328,-0.106048777699471,0.704081594944,0.702155888080597,0.0827271118760109,0.69605165719986,0.713209927082062,-0.294012725353241,0.660000383853912,0.691343724727631,-0.105913043022156,0.698406517505646,0.707821190357208,-0.117585837841034,0.696794509887695,0.707566916942596,0.018315127119422,0.694383203983307,0.719372391700745,-0.117055043578148,0.702109158039093,0.702382326126099,0.0814182683825493,0.686338305473328,0.722710728645325,-0.11688219755888,0.70381760597229,0.700699269771576,-0.23016656935215,0.67666631937027,0.699389815330505,-0.29364013671875,0.656983971595764,0.694368541240692,0.0167902633547783,0.69024670124054,0.723379373550415,-0.210474938154221,0.728409051895142,0.652012765407562,-0.115465745329857,0.717426359653473,0.686998724937439,-0.458091527223587,0.61221444606781,0.644473195075989,-0.293815165758133,0.658397138118744,0.692954480648041,-0.232544615864754,0.669938743114471,0.705056846141815,-0.184133008122444,0.705078661441803,0.684805989265442,-0.215639650821686,0.715487718582153,0.664512574672699,
  548. -0.00514097465202212,0.628233194351196,0.778008162975311,-0.416235744953156,0.751791417598724,0.511426866054535,-0.215892150998116,0.714844584465027,0.665122389793396,-0.184095233678818,0.705124080181122,0.68476939201355,0.49190753698349,-0.764896631240845,0.415884763002396,0.443579196929932,-0.787546515464783,0.427794605493546,0.557984590530396,-0.72881418466568,0.396841406822205,0.488325655460358,-0.777571618556976,0.396132111549377,0.218700736761093,-0.827571749687195,0.517005920410156,0.44348993897438,-0.791623294353485,0.420296847820282,0.551156580448151,-0.711295008659363,0.436217725276947,0.443635821342468,-0.783441483974457,0.435209035873413,0.309948116540909,-0.850509881973267,0.424929767847061,0.443558722734451,-0.788627982139587,0.425818651914597,0.211858153343201,-0.847976624965668,0.485851585865021,0.1341902166605,-0.856171011924744,0.498963057994843,0.443611413240433,-0.785502910614014,0.43150207400322,0.137565806508064,-0.890772759914398,0.433127611875534,0.307098805904388,-0.844903349876404,0.437982648611069,0.673513472080231,-0.726135075092316,-0.138229936361313,0.453493177890778,-0.864343106746674,-0.217381820082664,0.584253489971161,-0.792736709117889,-0.17382837831974,0.674379765987396,-0.717075109481812,-0.176111966371536,0.457841783761978,-0.871971786022186,-0.17333810031414,0.4493508040905,-0.876443326473236,-0.173005625605583,0.583874225616455,-0.793344616889954,-0.172323629260063,0.455494999885559,-0.856287658214569,-0.243507564067841,0.357932984828949,-0.887572050094604,-0.289999693632126,0.448951691389084,-0.877392113208771,-0.16919033229351,0.458278000354767,-0.872434437274933,-0.169822111725807,0.267186284065247,-0.951252460479736,-0.154046595096588,0.351067274808884,-0.898285388946533,-0.264263719320297,0.45431712269783,-0.861268281936646,-0.227624669671059,0.273763597011566,-0.917516231536865,-0.288474351167679,0.506362080574036,-0.859515964984894,-0.0694961175322533,0.456966936588287,-0.886588931083679,-0.0717031732201576,0.572217047214508,-0.817436635494232,-0.0660686865448952,0.502524435520172,-0.859470367431641,-0.0937017872929573,
  549. 0.237195760011673,-0.971275568008423,-0.0190252456814051,0.456844627857208,-0.885894298553467,-0.0805255100131035,0.565829157829285,-0.824215173721313,-0.0225131884217262,0.457052707672119,-0.887207627296448,-0.062972255051136,0.322354108095169,-0.940431118011475,-0.108061090111732,0.456937789916992,-0.886410415172577,-0.0740568786859512,0.230348154902458,-0.97153103351593,-0.0553827881813049,0.152371555566788,-0.987133264541626,-0.0484854765236378,0.457014113664627,-0.88690572977066,-0.0673539042472839,0.154861554503441,-0.980422794818878,-0.121610142290592,0.319550037384033,-0.94289630651474,-0.0939912796020508,0.60141134262085,-0.798879563808441,0.00978986918926239,0.560321986675262,-0.828211188316345,0.0102706886827946,0.660780251026154,-0.750525295734406,0.00901331659406424,0.598035514354706,-0.801364421844482,-0.0129903275519609,0.351034432649612,-0.933629989624023,0.0714834108948708,0.560171604156494,-0.828375935554504,0.00110934104304761,0.654868304729462,-0.754004240036011,0.0512369833886623,0.560424327850342,-0.827980279922485,0.0193185787647963,0.437624126672745,-0.89896148443222,-0.0187993794679642,0.560285806655884,-0.828262805938721,0.00778344552963972,0.344602733850479,-0.938082873821259,0.0353478007018566,0.266850084066391,-0.962723076343536,0.0442188158631325,0.560378849506378,-0.828104376792908,0.014790347777307,0.269242465496063,-0.962615430355072,-0.0296647101640701,0.435244381427765,-0.900297045707703,-0.00525322556495667,0.604649186134338,-0.712690532207489,-0.355628550052643,0.55850213766098,-0.743544638156891,-0.36771833896637,0.664999127388,-0.66643750667572,-0.33710128068924,0.600096344947815,-0.704781889915466,-0.378374069929123,0.351608395576477,-0.868329286575317,-0.349822402000427,0.558014333248138,-0.739942908287048,-0.37563881278038,0.660459160804749,-0.688794851303101,-0.298923790454865,0.558943152427673,-0.747053205966949,-0.359852910041809,0.43740102648735,-0.795667827129364,-0.419038265943527,0.558378159999847,-0.742604434490204,-0.36980065703392,0.343598693609238,-0.856875896453857,-0.384322345256805,
  550. 0.265617668628693,-0.884272217750549,-0.384070456027985,0.558725714683533,-0.745288252830505,-0.363828539848328,0.264638006687164,-0.852202236652374,-0.451351463794708,0.435577988624573,-0.80262815952301,-0.40750440955162,0.689792573451996,-0.604712247848511,-0.39813220500946,0.647836208343506,-0.631420791149139,-0.426164567470551,0.74432510137558,-0.564353048801422,-0.357051730155945,0.689407169818878,-0.591718018054962,-0.417836844921112,0.455607891082764,-0.751488506793976,-0.477165043354034,0.648612678050995,-0.626581430435181,-0.432084977626801,0.733955860137939,-0.59504622220993,-0.327458113431931,0.647031188011169,-0.636166870594025,-0.420288592576981,0.542294919490814,-0.66733705997467,-0.510467886924744,0.648035168647766,-0.630206763744354,-0.427656412124634,0.453814387321472,-0.73233163356781,-0.507683932781219,0.377704203128815,-0.759393930435181,-0.529773890972137,0.647447228431702,-0.633745789527893,-0.423294603824615,0.387705653905869,-0.712358593940735,-0.585003912448883,0.538514077663422,-0.677133619785309,-0.501490533351898,0.789824843406677,-0.480294048786163,0.381437510251999,0.593990445137024,-0.663613259792328,0.454744845628738,0.71233195066452,-0.564562380313873,0.416956424713135,0.790536880493164,-0.503196537494659,0.349062502384186,0.606219410896301,-0.630040228366852,0.485332190990448,0.590208470821381,-0.638063132762909,0.494499146938324,0.712009131908417,-0.563916862010956,0.418378889560699,0.595606207847595,-0.678095936775208,0.430626630783081,0.51099157333374,-0.742900252342224,0.432419806718826,0.589824318885803,-0.635816633701324,0.49783980846405,0.606578588485718,-0.627761960029602,0.487829238176346,0.421133160591125,-0.697077214717865,0.580284595489502,0.504825532436371,-0.731740295886993,0.457938313484192,0.594679176807404,-0.669345676898956,0.445346146821976,0.426296174526215,-0.776432931423187,0.464137583971024,0.610742568969727,-0.382215231657028,-0.693473279476166,0.560981392860413,-0.409702450037003,-0.719335675239563,0.665184855461121,-0.348655223846436,-0.660279214382172,0.603484392166138,-0.363902509212494,-0.709493935108185,
  551. 0.368351101875305,-0.543115675449371,-0.754548132419586,0.559734284877777,-0.403282225131989,-0.72392064332962,0.665559053421021,-0.386488795280457,-0.638480722904205,0.56217747926712,-0.416015207767487,-0.714764177799225,0.436759531497955,-0.440201044082642,-0.784515261650085,0.560663104057312,-0.40804859995842,-0.720522999763489,0.356701165437698,-0.517274737358093,-0.777940452098846,0.283420205116272,-0.547480285167694,-0.787361621856689,0.561575770378113,-0.4128198325634,-0.717086136341095,0.275543928146362,-0.487567633390427,-0.828464508056641,0.436359763145447,-0.452602535486221,-0.777651011943817,0.681826710700989,-0.566482186317444,0.462828576564789,0.456774175167084,-0.713665783405304,0.531073033809662,0.588691651821136,-0.637124955654144,0.497507750988007,0.681243717670441,-0.59117716550827,0.431759834289551,0.472008973360062,-0.680511176586151,0.560457110404968,0.454357087612152,-0.685520648956299,0.568877100944519,0.58845466375351,-0.636523187160492,0.498557239770889,0.457728803157806,-0.729640066623688,0.508044958114624,0.359867602586746,-0.783285021781921,0.506912112236023,0.454103708267212,-0.683045864105225,0.572047412395477,0.472541213035584,-0.678170084953308,0.56284111738205,0.280121743679047,-0.712916970252991,0.642869591712952,0.354065120220184,-0.769388496875763,0.531675934791565,0.457190006971359,-0.719975054264069,0.522123873233795,0.281435072422028,-0.797153174877167,0.534173369407654,-0.214699566364288,0.299180060625076,0.929728746414185,-0.422780692577362,0.331136763095856,0.84356677532196,-0.262702763080597,0.307761371135712,0.914478182792664,-0.215066611766815,0.297320246696472,0.930240273475647,-0.261750340461731,0.301858186721802,0.916716158390045,-0.0914710015058517,0.282223790884018,0.954977929592133,-0.418110728263855,0.22588112950325,0.879864275455475,-0.327885240316391,0.256911069154739,0.909113883972168,-0.257906526327133,0.278554737567902,0.925144135951996,-0.260954082012177,0.296963632106781,0.918540000915527,-0.165827617049217,0.305995404720306,0.937479615211487,-0.0923480316996574,0.310925751924515,0.945937097072601,
  552. -0.254656434059143,0.259447753429413,0.931577682495117,-0.310437649488449,0.218096688389778,0.925236344337463,-0.169424533843994,0.318598419427872,0.932625532150269,-0.0923222452402115,0.310045570135117,0.946228504180908,-0.164632186293602,0.301818609237671,0.93904310464859,-0.0701112002134323,0.312230348587036,0.947415769100189,-0.306583344936371,0.209650814533234,0.928468227386475,-0.158275470137596,0.30225345492363,0.939995646476746,-0.163826286792755,0.299006134271622,0.940083146095276,-0.164074689149857,0.299872696399689,0.939763724803925,-0.158260941505432,0.302222073078156,0.940008163452148,-0.0739376917481422,0.334698677062988,0.939420104026794,0.795703828334808,-0.546410799026489,0.261324852705002,0.603660523891449,-0.739098489284515,0.298877090215683,0.720905721187592,-0.634020388126373,0.27984493970871,0.795846343040466,-0.562000393867493,0.225353389978409,0.611420094966888,-0.715800702571869,0.337334930896759,0.600565910339355,-0.722480058670044,0.342554003000259,0.72056770324707,-0.633598506450653,0.281664907932281,0.604871273040771,-0.7481968998909,0.272639483213425,0.519567549228668,-0.813043475151062,0.2626973092556,0.600240409374237,-0.720986187458038,0.346252113580704,0.61183899641037,-0.714019119739532,0.340337783098221,0.433786332607269,-0.798432290554047,0.417534828186035,0.513978958129883,-0.807307660579681,0.289965510368347,0.604189693927765,-0.742725849151611,0.288640469312668,0.436745524406433,-0.85208922624588,0.288439393043518,0.684110403060913,-0.648167073726654,0.334473341703415,0.644496262073517,-0.683359920978546,0.342992573976517,0.738125383853912,-0.593737006187439,0.320386230945587,0.683737695217133,-0.659526407718658,0.312294483184814,0.43570077419281,-0.793700039386749,0.424505919218063,0.645500421524048,-0.687005281448364,0.333696067333221,0.727367699146271,-0.582697153091431,0.36249178647995,0.643439829349518,-0.679688930511475,0.352148026227951,0.525978624820709,-0.783233821392059,0.331498622894287,0.644778609275818,-0.68436861038208,0.340441197156906,0.433876544237137,-0.811580181121826,0.391265600919724,
  553. 0.368653923273087,-0.838506996631622,0.401248455047607,0.643975436687469,-0.681531071662903,0.347578853368759,0.379394292831421,-0.862936019897461,0.333768427371979,0.521869838237762,-0.779999971389771,0.345328658819199,0.715235829353333,-0.669739544391632,0.199716657400131,0.671790599822998,-0.709365963935852,0.213301315903664,0.771861553192139,-0.609953820705414,0.179404973983765,0.711747705936432,-0.679326474666595,0.178691759705544,0.486000597476959,-0.815464615821838,0.314358204603195,0.671560645103455,-0.711408019065857,0.207135245203972,0.76720404624939,-0.601201832294464,0.223504453897476,0.671993255615234,-0.707281768321991,0.219494163990021,0.558912873268127,-0.8020299077034,0.210628807544708,0.6717409491539,-0.709831655025482,0.211903899908066,0.479522287845612,-0.831317365169525,0.28101572394371,0.405704498291016,-0.862841963768005,0.301509290933609,0.671892642974854,-0.708357214927673,0.216310918331146,0.406840801239014,-0.884138405323029,0.229739218950272,0.556833207607269,-0.799470663070679,0.225352451205254,0.75426459312439,-0.49123939871788,-0.435624688863754,0.711812317371368,-0.526075839996338,-0.465368151664734,0.802602350711823,-0.445601314306259,-0.396571576595306,0.750889599323273,-0.47690886259079,-0.456861913204193,0.531073987483978,-0.673980414867401,-0.513527870178223,0.711614727973938,-0.520601093769073,-0.471782952547073,0.797798693180084,-0.479032814502716,-0.366121411323547,0.711958289146423,-0.53146880865097,-0.458973258733749,0.60086590051651,-0.578062474727631,-0.552090585231781,0.71176540851593,-0.52464371919632,-0.467053681612015,0.525398969650269,-0.654257416725159,-0.543969869613647,0.454687893390656,-0.690020203590393,-0.563143908977509,0.711890995502472,-0.528755962848663,-0.462199538946152,0.456467628479004,-0.64061439037323,-0.617454886436462,0.598729014396667,-0.589191317558289,-0.54256534576416,0.810545563697815,-0.568993330001831,-0.138789355754852,0.620060920715332,-0.757706105709076,-0.203484550118446,0.733765125274658,-0.658099234104156,-0.16880214214325,0.807949900627136,-0.561732470989227,-0.177970558404922,
  554. 0.628643035888672,-0.76121723651886,-0.159237220883369,0.620130360126495,-0.76838219165802,-0.158200174570084,0.733615159988403,-0.658599317073822,-0.167498633265495,0.619384706020355,-0.750590682029724,-0.23016557097435,0.525935053825378,-0.805767059326172,-0.27227184176445,0.620073854923248,-0.769219756126404,-0.15430361032486,0.629283607006073,-0.761412143707275,-0.155736178159714,0.459143608808517,-0.87907999753952,-0.128084018826485,0.522235870361328,-0.81672465801239,-0.245419472455978,0.619852066040039,-0.75498378276825,-0.213969200849533,0.453302562236786,-0.851253211498261,-0.264357268810272,0.599408447742462,-0.800128281116486,-0.022458516061306,0.369010776281357,-0.92873626947403,-0.035777572542429,0.503922939300537,-0.863279223442078,-0.0284742303192616,0.595589756965637,-0.801024377346039,-0.060274001210928,0.378764659166336,-0.925469934940338,0.0065368264913559,0.370215594768524,-0.928902149200439,0.00901206582784653,0.503744781017303,-0.863432288169861,-0.0269444994628429,0.367946863174438,-0.927757740020752,-0.0622953921556473,0.261465817689896,-0.961231052875519,-0.0875810235738754,0.370284169912338,-0.928829848766327,0.0128423217684031,0.379636287689209,-0.92508339881897,0.00985885504633188,0.178411334753037,-0.981384038925171,0.0710968375205994,0.25744104385376,-0.964452028274536,-0.0596359968185425,0.368624985218048,-0.928430914878845,-0.0461696721613407,0.167508065700531,-0.98340767621994,-0.0696461126208305,0.427725732326508,-0.873323082923889,0.233146876096725,0.377165466547012,-0.894807517528534,0.238884389400482,0.493026256561279,-0.840576469898224,0.224402084946632,0.4238121509552,-0.880954384803772,0.210481941699982,0.152247220277786,-0.937949240207672,0.31156387925148,0.377043217420578,-0.897107601165771,0.230296388268471,0.486490696668625,-0.832181811332703,0.266083598136902,0.377256989479065,-0.892465114593506,0.247352138161659,0.240677937865257,-0.945298969745636,0.220190733671188,0.377135694026947,-0.895430266857147,0.236587017774582,0.144890338182449,-0.949746370315552,0.277468264102936,
  555. 0.0609216690063477,-0.955682039260864,0.288028448820114,0.377214729785919,-0.893648564815521,0.243107631802559,0.0639411807060242,-0.974291026592255,0.216029360890388,0.237895339727402,-0.942714393138886,0.233870431780815,0.316828668117523,-0.869597196578979,-0.378708779811859,0.259287744760513,-0.890222609043121,-0.374531298875809,0.388995617628098,-0.838312208652496,-0.381988316774368,0.308064758777618,-0.862785458564758,-0.400870710611343,0.0439066514372826,-0.956154584884644,-0.289552420377731,0.257722944021225,-0.887657999992371,-0.381630837917328,0.390206336975098,-0.85543417930603,-0.340545743703842,0.260818183422089,-0.892703652381897,-0.367497056722641,0.118939898908138,-0.913773536682129,-0.388421475887299,0.258890122175217,-0.889573574066162,-0.376343905925751,0.0294900201261044,-0.946022152900696,-0.322757542133331,-0.0408077798783779,-0.952224612236023,-0.302659869194031,0.260032296180725,-0.89143306016922,-0.371120601892471,-0.0518202632665634,-0.927485346794128,-0.370250910520554,0.118675269186497,-0.919257700443268,-0.375341892242432,-0.0713288560509682,0.97349613904953,-0.217296287417412,-0.0583295375108719,0.974104702472687,-0.218443915247917,0.134003236889839,0.96368682384491,-0.23097825050354,-0.173835948109627,0.966490149497986,-0.188886180520058,-0.0584989972412586,0.97384774684906,-0.21954157948494,-0.0712633058428764,0.973719596862793,-0.216313943266869,0.0645436197519302,0.973917901515961,-0.217527091503143,-0.0711717382073402,0.974029779434204,-0.214943081140518,0.134661555290222,0.966773986816406,-0.217288449406624,-0.0733563080430031,0.965946078300476,-0.248127236962318,-0.171817898750305,0.96216893196106,-0.211446493864059,-0.180240273475647,0.961343050003052,-0.208165869116783,0.0638934671878815,0.975261867046356,-0.211617827415466,-0.166146576404572,0.953952252864838,-0.249740749597549,-0.0725471079349518,0.969110369682312,-0.235716357827187,-0.210121303796768,0.95938766002655,-0.188213646411896,-0.17817847430706,0.963053226470947,-0.201942935585976,-0.172855824232101,0.963547706604004,-0.204197704792023,
  556. -0.179536297917366,0.95546168088913,-0.234221488237381,-0.169151604175568,0.958445310592651,-0.22971798479557,0.0545004084706306,0.990314483642578,-0.127698600292206,-0.212501257658005,0.945576310157776,-0.246431916952133,-0.169252216815948,0.958590447902679,-0.229037329554558,-0.179936990141869,0.955594658851624,-0.233369678258896,-0.19065947830677,0.92348700761795,-0.332897514104843,-0.248975723981857,0.922972857952118,-0.29348286986351,-0.359701663255692,0.90866607427597,-0.211992233991623,-0.191865786910057,0.922474920749664,-0.335003763437271,-0.0632404983043671,0.913535833358765,-0.401812016963959,-0.24899610877037,0.920115947723389,-0.302304148674011,-0.386738538742065,0.869448840618134,-0.307395577430725,-0.248882710933685,0.908744752407074,-0.335022926330566,-0.317598730325699,0.891776919364929,-0.322280943393707,-0.248962968587875,0.913350224494934,-0.322193771600723,-0.0574308298528194,0.922466576099396,-0.381781578063965,-0.184710875153542,0.920621454715729,-0.344003200531006,-0.24863500893116,0.900388360023499,-0.357045352458954,-0.183963000774384,0.917923331260681,-0.35153141617775,-0.309354394674301,0.879840731620789,-0.360804975032806,-0.0559883564710617,0.924603641033173,-0.376793682575226,-0.0284005403518677,0.923417747020721,-0.382744133472443,-0.184622213244438,0.920302391052246,-0.344902992248535,-0.121137633919716,0.936676383018494,-0.328577280044556,-0.298436939716339,0.863022267818451,-0.407588064670563,-0.183344975113869,0.915681540966034,-0.357647687196732,-0.184042781591415,0.918211877346039,-0.350735157728195,-0.0214383956044912,0.940146327018738,-0.340095937252045,-0.117414027452469,0.930303454399109,-0.347490280866623,-0.206291437149048,0.975292384624481,-0.0790481194853783,-0.279145956039429,0.958712697029114,-0.0542908608913422,-0.393422394990921,0.919258832931519,-0.0134955914691091,-0.206959366798401,0.974920451641083,-0.0818410143256187,-0.0720126181840897,0.990891635417938,-0.113788850605488,-0.276713043451309,0.958799123764038,-0.0642975047230721,-0.394459426403046,0.911005854606628,-0.120292037725449,
  557. -0.267266571521759,0.958208918571472,-0.102002188563347,-0.323144942522049,0.939913153648376,-0.110184036195278,-0.271080583333969,0.958617746829987,-0.0869905948638916,-0.0718401446938515,0.993066132068634,-0.0930519476532936,-0.1850815564394,0.978585004806519,-0.0900897681713104,-0.183800458908081,0.978478014469147,-0.093799389898777,-0.305441528558731,0.940845489501953,-0.14668133854866,-0.26069051027298,0.956998467445374,-0.127257362008095,-0.0717924833297729,0.993539154529572,-0.0878967344760895,-0.0312579944729805,0.995745360851288,-0.0866849720478058,-0.184932515025139,0.978573381900787,-0.0905218347907066,-0.138735130429268,0.988742589950562,-0.056043479591608,-0.282944798469543,0.93986451625824,-0.191303297877312,-0.182705968618393,0.978374719619751,-0.0969610139727592,-0.183882474899292,0.978485286235809,-0.0935621932148933,-0.035855732858181,0.998572707176209,-0.0395867601037025,-0.13032728433609,0.988697290420532,-0.0741120055317879,-0.0527753457427025,0.989860713481903,-0.131873771548271,-0.0407050400972366,0.990160584449768,-0.133885324001312,0.138289466500282,0.977178275585175,-0.161241576075554,-0.162004500627518,0.98232102394104,-0.0938081741333008,-0.0412015542387962,0.989861190319061,-0.135931000113487,-0.0527942851185799,0.989843428134918,-0.131995603442192,0.0744213312864304,0.987069249153137,-0.1419717669487,-0.0523490980267525,0.990244626998901,-0.129132926464081,0.140099301934242,0.979050576686859,-0.147756978869438,-0.0578609183430672,0.984644830226898,-0.164701789617538,-0.167801141738892,0.979246973991394,-0.11365818977356,-0.170081064105034,0.978979408740997,-0.112569466233253,0.0742982998490334,0.987888216972351,-0.136222779750824,-0.165068760514259,0.973650574684143,-0.157343626022339,-0.0553872548043728,0.987329363822937,-0.14870448410511,-0.203778833150864,0.975099384784698,-0.087495431303978,-0.167415916919708,0.980131864547729,-0.106365069746971,-0.168248802423477,0.980035603046417,-0.105936519801617,-0.167910605669022,0.975856900215149,-0.13967652618885,-0.166252315044403,0.97622537612915,-0.139083608984947,
  558. 0.072201207280159,0.99607390165329,-0.0512224584817886,-0.211994409561157,0.965188205242157,-0.153199806809425,-0.166309148073196,0.97634357213974,-0.138182878494263,-0.168226838111877,0.975924968719482,-0.138817295432091,-0.192356169223785,0.847969233989716,-0.493910431861877,-0.263482570648193,0.849295258522034,-0.457465320825577,-0.383626639842987,0.838575303554535,-0.386810183525085,-0.193141505122185,0.846725106239319,-0.495734840631485,-0.0664477124810219,0.837888300418854,-0.541782379150391,-0.262226134538651,0.844951629638672,-0.466148376464844,-0.396084696054459,0.782499670982361,-0.480428099632263,-0.25728040933609,0.827906787395477,-0.498374491930008,-0.320173859596252,0.809782862663269,-0.491671144962311,-0.259285449981689,0.834807455539703,-0.485662013292313,-0.0639470145106316,0.849362015724182,-0.523922681808472,-0.181763902306557,0.844700217247009,-0.503431618213654,-0.25373849272728,0.815745174884796,-0.519785106182098,-0.180599480867386,0.842246472835541,-0.507941663265228,-0.30673885345459,0.792934596538544,-0.526465535163879,-0.0633242428302765,0.852139055728912,-0.51947021484375,-0.0298756994307041,0.852119565010071,-0.522493720054626,-0.18162539601326,0.844409048557281,-0.50396990776062,-0.130295500159264,0.865532636642456,-0.483607828617096,-0.289381146430969,0.770218551158905,-0.568350076675415,-0.179617717862129,0.840167701244354,-0.511718332767487,-0.180696040391922,0.842450499534607,-0.507568955421448,-0.0289900749921799,0.875243365764618,-0.482813239097595,-0.124319665133953,0.857197046279907,-0.499757826328278,-0.117183290421963,0.9419926404953,0.314512521028519,-0.104814656078815,0.943019211292267,0.315798729658127,0.0836061760783196,0.940558552742004,0.329180210828781,-0.294930219650269,0.898344218730927,0.325567007064819,-0.104732669889927,0.940514922142029,0.323207139968872,-0.117928832769394,0.938760280609131,0.323762118816376,0.0204054266214371,0.94177383184433,0.335627287626266,-0.117359280586243,0.941242158412933,0.316686153411865,0.0822917595505714,0.936076045036316,0.342037796974182,
  559. -0.117185160517693,0.941984593868256,0.314535766839981,-0.227740585803986,0.917804896831512,0.325220853090286,-0.294550240039825,0.896952211856842,0.329722434282303,0.0188061241060495,0.939700543880463,0.341481149196625,-0.208636552095413,0.942606449127197,0.260698825120926,-0.115673467516899,0.948124945163727,0.296105891466141,-0.454746872186661,0.836591601371765,0.305482923984528,-0.294738590717316,0.897641777992249,0.32767128944397,-0.230189085006714,0.914156794548035,0.333662122488022,-0.183612927794456,0.936084151268005,0.300054728984833,-0.213876038789749,0.936417818069458,0.278170257806778,-0.00276155769824982,0.908081710338593,0.418783932924271,-0.413308650255203,0.901820302009583,0.1260796636343,-0.214110016822815,0.936131179332733,0.278954178094864,-0.183566689491272,0.936113953590393,0.299990057945251,0.493885397911072,-0.499395042657852,0.711815893650055,0.446293711662292,-0.514247417449951,0.732373833656311,0.554616212844849,-0.477522641420364,0.681449294090271,0.490160137414932,-0.520102918148041,0.699454128742218,0.223777249455452,-0.511811673641205,0.82944118976593,0.446219384670258,-0.521979987621307,0.726928651332855,0.547903835773468,-0.445134311914444,0.708277463912964,0.446328163146973,-0.5065558552742,0.737694025039673,0.310003817081451,-0.572648406028748,0.758927822113037,0.446277797222137,-0.516319334506989,0.730924427509308,0.217092841863632,-0.543080568313599,0.811131417751312,0.137081891298294,-0.544822573661804,0.827270746231079,0.446315765380859,-0.510414242744446,0.735037088394165,0.140423223376274,-0.604559123516083,0.784085214138031,0.307149201631546,-0.561869502067566,0.768089830875397,0.672761917114258,-0.712538719177246,0.199198544025421,0.455727964639664,-0.869615435600281,0.189950406551361,0.585648715496063,-0.78626012802124,0.197004094719887,0.673662841320038,-0.721170961856842,0.161526501178741,0.457333385944366,-0.858294010162354,0.232760846614838,0.45157790184021,-0.860915124416351,0.234313130378723,0.585199892520905,-0.786109924316406,0.198928415775299,0.457746475934982,-0.873930692672729,0.163442075252533,
  560. 0.356594771146774,-0.924497783184052,0.13469985127449,0.451179206371307,-0.860087513923645,0.238089919090271,0.457770347595215,-0.857140362262726,0.236128866672516,0.268649458885193,-0.920158624649048,0.28484320640564,0.349730342626572,-0.922619700431824,0.162670224905014,0.456558346748352,-0.87138158082962,0.17957915365696,0.274913847446442,-0.949701964855194,0.149961814284325,0.507967352867126,-0.799829006195068,0.319754362106323,0.455081939697266,-0.826832830905914,0.330526828765869,0.56922435760498,-0.763425707817078,0.305229008197784,0.504098415374756,-0.81075394153595,0.297595053911209,0.239736050367355,-0.878073871135712,0.414141446352005,0.454969853162766,-0.829893529415131,0.322923123836517,0.562781155109406,-0.750573396682739,0.346290320158005,0.455162882804871,-0.823744297027588,0.338041603565216,0.320208549499512,-0.891231715679169,0.321205049753189,0.455055713653564,-0.827633321285248,0.328553438186646,0.233003556728363,-0.894271969795227,0.382082641124725,0.154361173510551,-0.905448377132416,0.395393371582031,0.45512580871582,-0.82530802488327,0.334256112575531,0.156940877437592,-0.93177741765976,0.327353745698929,0.317402303218842,-0.887074172496796,0.335194259881973,0.601771652698517,-0.710896968841553,0.364000678062439,0.558427691459656,-0.738329410552979,0.378190696239471,0.663821578025818,-0.665787875652313,0.340686917304993,0.598372638225555,-0.723339378833771,0.344572603702545,0.350843101739883,-0.804437458515167,0.479363560676575,0.558295786380768,-0.742258965969086,0.370617747306824,0.657688438892365,-0.649788320064545,0.381078869104385,0.558518171310425,-0.734389305114746,0.385655045509338,0.438844412565231,-0.812790751457214,0.383127629756927,0.558396458625793,-0.739384233951569,0.376170635223389,0.344390660524368,-0.824519574642181,0.448957085609436,0.267008066177368,-0.842554450035095,0.467769950628281,0.558477759361267,-0.736371099948883,0.381916522979736,0.269109606742859,-0.875363111495972,0.401645869016647,0.436421632766724,-0.808058738708496,0.395698487758636,0.603602468967438,-0.797284245491028,-0.00141699612140656,
  561. 0.554785966873169,-0.831991493701935,0.00164110376499593,0.666816294193268,-0.745201170444489,-0.00558888912200928,0.599176943302155,-0.800227880477905,-0.0249490737915039,0.350294232368469,-0.933755993843079,0.073441669344902,0.554388463497162,-0.832238256931305,-0.00573500199243426,0.662332713603973,-0.748183310031891,0.0392079018056393,0.555150926113129,-0.831701219081879,0.00897100660949945,0.434258550405502,-0.90051543712616,-0.0221690516918898,0.554690003395081,-0.832057118415833,-0.000192200765013695,0.342117339372635,-0.938921391963959,0.0371822230517864,0.268880724906921,-0.961933970451355,0.0488491132855415,0.554969072341919,-0.831854462623596,0.00524391606450081,0.267997413873672,-0.963099241256714,-0.0248442459851503,0.432351112365723,-0.901667296886444,-0.00828199088573456,0.688954055309296,-0.719460248947144,-0.0878597050905228,0.649500906467438,-0.753715813159943,-0.100304752588272,0.746539354324341,-0.66186398267746,-0.0679354667663574,0.688553512096405,-0.716648161411285,-0.110948406159878,0.454657852649689,-0.885798931121826,-0.0929858759045601,0.650339066982269,-0.75187349319458,-0.1083764731884,0.735959529876709,-0.67648833990097,-0.0269657671451569,0.648629903793335,-0.75548243522644,-0.0923344045877457,0.540762782096863,-0.825575828552246,-0.161246076226234,0.649723529815674,-0.753240942955017,-0.102408058941364,0.452818393707275,-0.882215142250061,-0.129042506217957,0.379963606595993,-0.914879620075226,-0.136466801166534,0.649076581001282,-0.754594027996063,-0.096372552216053,0.390149146318436,-0.897370755672455,-0.206178069114685,0.536943256855011,-0.83042711019516,-0.148602843284607,0.789925336837769,-0.260390192270279,0.555171132087708,0.595854103565216,-0.391059815883636,0.701448619365692,0.715612232685089,-0.317862242460251,0.621982932090759,0.790639400482178,-0.295400828123093,0.536309540271759,0.606113076210022,-0.348448544740677,0.714989960193634,0.592129766941071,-0.351171761751175,0.725300490856171,0.71511846780777,-0.315992563962936,0.623501718044281,0.597456395626068,-0.414403766393662,0.686524212360382,
  562. 0.511342287063599,-0.472791641950607,0.717633068561554,0.591751456260681,-0.347724944353104,0.727267265319824,0.606475114822388,-0.345289617776871,0.716214418411255,0.420383810997009,-0.366266191005707,0.830136597156525,0.505298256874084,-0.45142126083374,0.735454022884369,0.596536636352539,-0.400242567062378,0.695665121078491,0.425526559352875,-0.489273220300674,0.761274516582489,0.608944833278656,-0.652174115180969,-0.451503157615662,0.563893854618073,-0.684916615486145,-0.461425065994263,0.664599061012268,-0.606486022472382,-0.436443507671356,0.601782381534576,-0.643222153186798,-0.47341650724411,0.369917005300522,-0.821161806583405,-0.434574127197266,0.562435925006866,-0.680753111839294,-0.469298541545868,0.665026485919952,-0.63052886724472,-0.400216549634933,0.56529027223587,-0.688978314399719,-0.453603148460388,0.432494431734085,-0.744698703289032,-0.50830352306366,0.563507258892059,-0.683805108070374,-0.463540971279144,0.358304262161255,-0.808575332164764,-0.466716110706329,0.283094763755798,-0.840694189071655,-0.461617469787598,0.564594924449921,-0.686946094036102,-0.457534372806549,0.274649620056152,-0.805436253547668,-0.525204718112946,0.432043075561523,-0.753098964691162,-0.496166229248047,0.682383477687836,-0.301177501678467,0.666066765785217,0.454941421747208,-0.403609067201614,0.793806076049805,0.58886992931366,-0.349255949258804,0.728870809078217,0.681897461414337,-0.337299108505249,0.649034142494202,0.471003800630569,-0.360211819410324,0.805234670639038,0.452601283788681,-0.360970705747604,0.815384685993195,0.588632225990295,-0.348216444253922,0.72955983877182,0.455839395523071,-0.428531259298325,0.780109882354736,0.361383944749832,-0.475372403860092,0.802136361598969,0.452353864908218,-0.357297748327255,0.817137837409973,0.471546560525894,-0.357028782367706,0.806333899497986,0.273614555597305,-0.352106720209122,0.895073115825653,0.355573326349258,-0.452073693275452,0.818044602870941,0.455336153507233,-0.413386732339859,0.788530588150024,0.274678707122803,-0.478397130966187,0.834078967571259,-0.20636773109436,-0.0506183281540871,0.977164387702942,
  563. -0.402221173048019,0.0145545769482851,0.915426790714264,-0.249890983104706,-0.036608874797821,0.967581689357758,-0.206875160336494,-0.0528450757265091,0.97693920135498,-0.249196380376816,-0.0429288037121296,0.967501044273376,-0.0795116946101189,-0.0815142765641212,0.993495583534241,-0.402066886425018,-0.0932693630456924,0.910847425460815,-0.316323429346085,-0.0792946442961693,0.945331692695618,-0.246372312307358,-0.0677215978503227,0.966806352138519,-0.248618602752686,-0.048116497695446,0.967405676841736,-0.150343030691147,-0.0501903668045998,0.987359046936035,-0.0791974365711212,-0.0513630583882332,0.995534837245941,-0.243950128555298,-0.0879538059234619,0.965791165828705,-0.300662338733673,-0.121651723980904,0.945940256118774,-0.153858304023743,-0.0349561423063278,0.987474381923676,-0.0792078226804733,-0.0522589385509491,0.995487451553345,-0.149331748485565,-0.0545414425432682,0.987281739711761,-0.057173989713192,-0.0514908097684383,0.997035622596741,-0.297145336866379,-0.130908966064453,0.945815861225128,-0.147063359618187,-0.0553294457495213,0.987578392028809,-0.148930013179779,-0.0562660694122314,0.987245678901672,-0.149038031697273,-0.0558025613427162,0.98725563287735,-0.147117957472801,-0.0551904663443565,0.987578094005585,-0.0600901953876019,-0.0274111498147249,0.997816503047943,0.77489560842514,-0.631198942661285,0.0335393287241459,0.57447624206543,-0.818520605564117,0.00107944756746292,0.69162917137146,-0.721998274326324,0.0191732402890921,0.774514675140381,-0.632522642612457,-0.00651175808161497,0.583418488502502,-0.81093156337738,0.0448641739785671,0.572030961513519,-0.818854212760925,0.0475226119160652,0.69145005941391,-0.722142279148102,0.0201849266886711,0.575340092182159,-0.817485213279724,-0.0264905281364918,0.481739550828934,-0.874251008033752,-0.0601018816232681,0.571764469146729,-0.818800508975983,0.0514894351363182,0.583881020545959,-0.810402631759644,0.0482748299837112,0.400747001171112,-0.9115030169487,0.0925427079200745,0.476340115070343,-0.878681540489197,-0.0319181233644485,0.574866473674774,-0.81818962097168,-0.0097118578851223,
  564. 0.402020037174225,-0.914398550987244,-0.0474897809326649,0.657311022281647,-0.750727832317352,0.0659542083740234,0.610461831092834,-0.78968870639801,0.0610594041645527,0.71308034658432,-0.697396576404572,0.0717955753207207,0.656423687934875,-0.753258168697357,0.0413540080189705,0.404028624296188,-0.909210443496704,0.100485645234585,0.611163139343262,-0.789702296257019,0.0533853881061077,0.70280933380127,-0.702046573162079,0.11484682559967,0.609730422496796,-0.789628863334656,0.0686675831675529,0.491986781358719,-0.870466649532318,0.0153888147324324,0.610642373561859,-0.789696455001831,0.0591216236352921,0.401452600955963,-0.913704097270966,0.0630928352475166,0.333593666553497,-0.940571784973145,0.0635608062148094,0.610105812549591,-0.789664924144745,0.0648093223571777,0.343465715646744,-0.939125657081604,-0.0086207315325737,0.487960815429688,-0.872354209423065,0.0298746600747108,0.690161049365997,-0.720476508140564,-0.0677598863840103,0.644054234027863,-0.761869072914124,-0.0689189881086349,0.745380282402039,-0.663374960422516,-0.0658936053514481,0.686208188533783,-0.721602261066437,-0.0916979983448982,0.454769372940063,-0.890538156032562,-0.0112510547041893,0.643728613853455,-0.76148384809494,-0.0758664980530739,0.741172015666962,-0.670950472354889,-0.0221251547336578,0.64434814453125,-0.762216806411743,-0.0619748122990131,0.529528558254242,-0.84208220243454,-0.102455370128155,0.643977701663971,-0.76177853345871,-0.0706124156713486,0.447768092155457,-0.892877995967865,-0.0476716123521328,0.370888322591782,-0.927868843078613,-0.0387471579015255,0.644202649593353,-0.762044608592987,-0.0655063018202782,0.370962113142014,-0.921706140041351,-0.11333591490984,0.52761572599411,-0.844889998435974,-0.088219441473484,0.732244849205017,-0.327610582113266,-0.597066819667816,0.688046872615814,-0.347693502902985,-0.636946439743042,0.780790686607361,-0.302186608314514,-0.546853840351105,0.729495763778687,-0.307079464197159,-0.611177682876587,0.508876442909241,-0.457440853118896,-0.729241132736206,0.688066422939301,-0.341059774160385,-0.640502035617828,
  565. 0.774809956550598,-0.342870473861694,-0.531139731407166,0.68798840045929,-0.354301184415817,-0.633358180522919,0.579091429710388,-0.359446495771408,-0.731745481491089,0.688055276870728,-0.346073478460312,-0.637819051742554,0.503966212272644,-0.428746044635773,-0.749796569347382,0.431389302015305,-0.452860236167908,-0.780269861221313,0.688022971153259,-0.350946754217148,-0.635185658931732,0.435233026742935,-0.388229221105576,-0.812311708927155,0.576569139957428,-0.372929751873016,-0.726974189281464,0.786933660507202,-0.509463012218475,-0.348113209009171,0.586714684963226,-0.655659556388855,-0.475264638662338,0.710181355476379,-0.575882613658905,-0.404971182346344,0.784640073776245,-0.488430052995682,-0.381806313991547,0.60248726606369,-0.670252799987793,-0.433324694633484,0.586349725723267,-0.682636618614197,-0.436120688915253,0.709904551506042,-0.577389061450958,-0.403308123350143,0.586304068565369,-0.638941705226898,-0.497997105121613,0.498966872692108,-0.668841660022736,-0.551074385643005,0.586256861686707,-0.684875845909119,-0.432721644639969,0.60308450460434,-0.671673595905304,-0.430283278226852,0.428764492273331,-0.785993337631226,-0.445393681526184,0.494965583086014,-0.688181817531586,-0.530485570430756,0.586609363555908,-0.649166464805603,-0.484223544597626,0.423721373081207,-0.711592674255371,-0.560442745685577,-0.24864736199379,0.227379113435745,-0.94152706861496,-0.313055038452148,0.214783146977425,-0.925129592418671,-0.308493077754974,0.215717270970345,-0.926443815231323,-0.313484013080597,0.217722296714783,-0.924296915531158,-0.248429149389267,0.232310652732849,-0.940380096435547,-0.208776369690895,0.240551233291626,-0.947917461395264,-0.308608591556549,0.217494308948517,-0.925989747047424,-0.263544678688049,0.208617329597473,-0.94181901216507,-0.24952520430088,0.205781102180481,-0.946251153945923,-0.248600468039513,0.228452205657959,-0.941279768943787,-0.24190217256546,0.22899104654789,-0.942892611026764,-0.20745575428009,0.231576710939407,-0.950439035892487,-0.26328319311142,0.209562703967094,-0.94168221950531,
  566. -0.309762597084045,0.220460936427116,-0.924902319908142,-0.249507114291191,0.206260725855827,-0.946151614189148,-0.245051681995392,0.246462777256966,-0.937659740447998,-0.247822090983391,0.245308086276054,-0.937234401702881,-0.310040056705475,0.218514233827591,-0.925271213054657,-0.310184419155121,0.217497184872627,-0.925462365150452,-0.264075875282288,0.206693530082703,-0.942094326019287,-0.291265875101089,0.213108599185944,-0.932603299617767,-0.308998227119446,0.225775152444839,-0.923875331878662,-0.520736575126648,0.165563061833382,-0.837509572505951,-0.244065418839455,0.240950286388397,-0.939348161220551,-0.36137056350708,0.231865704059601,-0.90313321352005,-0.309916347265244,0.219383269548416,-0.925106942653656,-0.29078397154808,0.214623108506203,-0.932406365871429,-0.515670955181122,0.141166195273399,-0.845077276229858,-0.309656292200089,0.221204176545143,-0.924760341644287,-0.436074793338776,0.174375414848328,-0.882854461669922,-0.422338664531708,0.269047230482101,-0.865588665008545,-0.309971868991852,0.218993350863457,-0.925180792808533,-0.358107566833496,0.240620329976082,-0.902142345905304,-0.169941693544388,0.831705749034882,-0.528569340705872,-0.119094133377075,0.807896316051483,-0.57716566324234,-0.265325427055359,0.864633738994598,-0.426627308130264,-0.101360186934471,0.821601629257202,-0.560978531837463,-0.26856192946434,0.824593245983124,-0.497916162014008,-0.308836579322815,0.821251273155212,-0.479756504297256,-0.0426838658750057,0.882000625133514,-0.469311058521271,0.0107773169875145,0.744726717472076,-0.667282581329346,-0.0355808585882187,0.866527140140533,-0.497860193252563,-0.312396228313446,0.767685830593109,-0.559523940086365,-0.286821663379669,0.770381987094879,-0.569425106048584,-0.15831583738327,0.775105595588684,-0.611675798892975,-0.202349200844765,0.734072208404541,-0.648222804069519,-0.192132756114006,0.6944939494133,-0.693370878696442,-0.24039551615715,0.884020626544952,-0.400895953178406,-0.0959609597921371,0.825638115406036,-0.555979430675507,-0.330329239368439,0.792916238307953,-0.512021899223328,
  567. -0.304258167743683,0.799042105674744,-0.518612325191498,-0.260734736919403,0.891263365745544,-0.371035039424896,-0.248428836464882,0.877161145210266,-0.410939961671829,-0.137788206338882,0.711220502853394,-0.689333021640778,-0.286198288202286,0.841693878173828,-0.457866847515106,-0.435939371585846,0.802528858184814,-0.407313585281372,-0.290921062231064,0.840821266174316,-0.45649179816246,-0.134736835956573,0.954245328903198,-0.266949146986008,-0.0992600172758102,0.943028390407562,-0.31756117939949,-0.19783878326416,0.964976072311401,-0.17228239774704,-0.386732220649719,0.899600923061371,-0.202870517969131,-0.152821838855743,0.944713950157166,-0.290105283260345,-0.274135857820511,0.929247140884399,-0.247687876224518,0.155526801943779,0.921791672706604,-0.355121910572052,-0.0102171199396253,0.929897606372833,-0.367676645517349,0.212819039821625,0.912878274917603,-0.348369508981705,0.153244584798813,0.928899765014648,-0.337136954069138,-0.0226894114166498,0.929079115390778,-0.369184702634811,-0.0102153159677982,0.930047273635864,-0.367297857999802,0.211074411869049,0.897799491882324,-0.38652777671814,-0.010200540535152,0.931262612342834,-0.364206075668335,0.066487543284893,0.925023436546326,-0.374047160148621,-0.0102182067930698,0.929807245731354,-0.367904990911484,-0.0225140657275915,0.928724765777588,-0.370085716247559,-0.157548725605011,0.90714156627655,-0.390221297740936,0.0652241557836533,0.922717094421387,-0.379919767379761,-0.0102027021348476,0.93108594417572,-0.36465722322464,-0.120673231780529,0.933259189128876,-0.338327169418335,-0.123828455805779,0.921324670314789,-0.368547737598419,-0.010232238098979,0.92863130569458,-0.370862811803818,-0.159826934337616,0.91646808385849,-0.366799384355545,0.164397090673447,-0.67076563835144,-0.723219931125641,-0.016538655385375,-0.686943173408508,-0.726522922515869,0.208211272954941,-0.663372874259949,-0.71873813867569,0.161995187401772,-0.656075298786163,-0.737104296684265,-0.0219263639301062,-0.687876343727112,-0.725496709346771,-0.016541501507163,-0.687285959720612,-0.726198673248291,
  568. 0.206409096717834,-0.6924147605896,-0.691344380378723,-0.0165071804076433,-0.683169007301331,-0.730073809623718,0.055691085755825,-0.690026760101318,-0.721638202667236,-0.0165463965386152,-0.687876641750336,-0.72563910484314,-0.0217533316463232,-0.68855345249176,-0.724859416484833,-0.161667421460152,-0.699442028999329,-0.696164131164551,0.0546119064092636,-0.693998336791992,-0.717902421951294,-0.016506826505065,-0.683127045631409,-0.73011302947998,-0.111704669892788,-0.662843704223633,-0.740378558635712,-0.114704988896847,-0.684936463832855,-0.719517171382904,-0.0165560375899076,-0.689042329788208,-0.724532067775726,-0.164088577032089,-0.680319547653198,-0.714311063289642,0.164438456296921,-0.722974717617035,0.671019852161407,-0.016540827229619,-0.726275444030762,0.687204778194427,0.20819678902626,-0.718500792980194,0.663634538650513,0.162016555666924,-0.736983895301819,0.656205356121063,-0.0218932162970304,-0.725374698638916,0.688006043434143,-0.0165426079183817,-0.726072192192078,0.687419533729553,0.206390619277954,-0.691082060337067,0.692682147026062,-0.0165095794945955,-0.72980535030365,0.683455646038055,0.0556161105632782,-0.721379220485687,0.690303504467011,-0.0165476575493813,-0.725494563579559,0.688028991222382,-0.0217157062143087,-0.72472071647644,0.688700497150421,-0.161648243665695,-0.696021854877472,0.699588060379028,0.0545289367437363,-0.717614531517029,0.694302558898926,-0.0165095198899508,-0.729812204837799,0.683448374271393,-0.111747995018959,-0.740087270736694,0.663161635398865,-0.114756979048252,-0.719142913818359,0.685320675373077,-0.0165592525154352,-0.724161148071289,0.689431965351105,-0.164040774106979,-0.713949203491211,0.680710852146149,0.158656135201454,-0.741089344024658,-0.652391612529755,-0.0170619804412127,-0.756619155406952,-0.653633177280426,0.204447746276855,-0.733104228973389,-0.648659706115723,0.156316876411438,-0.728200435638428,-0.667299926280975,-0.0204875376075506,-0.757195115089417,-0.652867317199707,-0.0170636121183634,-0.756865322589874,-0.653348088264465,0.202748984098434,-0.75860995054245,-0.619196057319641,
  569. -0.0170378815382719,-0.753012716770172,-0.657785296440125,0.0640496462583542,-0.759477972984314,-0.647372305393219,-0.0170674007385969,-0.757437705993652,-0.652684330940247,-0.0203159209340811,-0.757809996604919,-0.652158975601196,-0.159771785140038,-0.765915870666504,-0.622772812843323,0.0628269910812378,-0.763508379459381,-0.64273464679718,-0.0170376989990473,-0.752985775470734,-0.657816112041473,-0.110707126557827,-0.734163045883179,-0.669886946678162,-0.113719291985035,-0.7541384100914,-0.646794617176056,-0.0170753300189972,-0.758640587329865,-0.651285529136658,-0.16184176504612,-0.749211668968201,-0.642253160476685,0.14860026538372,-0.815448224544525,0.559430241584778,-0.0154735585674644,-0.819552958011627,0.572794437408447,0.20741468667984,-0.808460593223572,0.550790905952454,0.146389603614807,-0.826102793216705,0.544173061847687,-0.0202728044241667,-0.818936288356781,0.573526203632355,-0.0154747441411018,-0.819472014904022,0.572910189628601,0.205470949411392,-0.78578919172287,0.583366990089417,-0.0154312653467059,-0.822416067123413,0.568677246570587,0.0633927285671234,-0.814115285873413,0.577232658863068,-0.0154815698042512,-0.819005310535431,0.573576986789703,-0.0201079677790403,-0.818413853645325,0.574277281761169,-0.159850209951401,-0.791873872280121,0.58939266204834,0.0621595159173012,-0.810642838478088,0.582232356071472,-0.0154320038855076,-0.822366297245026,0.568749129772186,-0.116157904267311,-0.829807877540588,0.545826196670532,-0.1193672940135,-0.811735570430756,0.571696519851685,-0.0154994260519743,-0.817778706550598,0.575324177742004,-0.162064626812935,-0.806650042533875,0.568375587463379,0.148599877953529,-0.815450131893158,0.559427499771118,-0.0154735222458839,-0.819555401802063,0.57279098033905,0.207414835691452,-0.808462202548981,0.550788462162018,0.146390408277512,-0.82609897851944,0.544178664684296,-0.0202714931219816,-0.818932175636292,0.573532223701477,-0.0154748074710369,-0.819467723369598,0.572916328907013,0.205467611551285,-0.785752236843109,0.583417892456055,-0.0154318669810891,-0.822375655174255,0.568735718727112,
  570. 0.06337920576334,-0.814077377319336,0.577287614345551,-0.0154815753921866,-0.819004952907562,0.573577523231506,-0.020107863470912,-0.818413555622101,0.574277758598328,-0.159850224852562,-0.791873931884766,0.58939254283905,0.0621489211916924,-0.810612857341766,0.582275211811066,-0.015432464890182,-0.822335362434387,0.568793833255768,-0.116163343191147,-0.829778492450714,0.545869708061218,-0.119363352656364,-0.811758816242218,0.571664452552795,-0.0154991047456861,-0.81780081987381,0.575292706489563,-0.162067979574203,-0.8066725730896,0.568342626094818,0.165508434176445,0.98485654592514,-0.0516198091208935,-0.00834360998123884,0.998067855834961,-0.0615705139935017,0.203064605593681,0.977927446365356,-0.0492206215858459,0.163071975111961,0.986122190952301,-0.0311551503837109,-0.0203497987240553,0.997810125350952,-0.0629354491829872,-0.00833878479897976,0.998107969760895,-0.0609177649021149,0.201014325022697,0.975620985031128,-0.0880736634135246,-0.00831813551485538,0.998274445533752,-0.0581288523972034,0.0591104663908482,0.99592798948288,-0.0680688843131065,-0.00834329426288605,0.998070597648621,-0.0615277402102947,-0.0201801415532827,0.997755646705627,-0.0638480186462402,-0.157979488372803,0.983312785625458,-0.0902131795883179,0.0579755157232285,0.995586097240448,-0.0738046169281006,-0.00832279305905104,0.998237729072571,-0.0587570294737816,-0.113854169845581,0.992907822132111,-0.0342243537306786,-0.116832658648491,0.991013526916504,-0.0651327967643738,-0.00836922693997622,0.997847259044647,-0.0650445371866226,-0.160272806882858,0.984933614730835,-0.0649503618478775,0.160264045000076,-0.819397628307343,0.550366401672363,-0.0153956227004528,-0.824792742729187,0.565225601196289,0.207810834050179,-0.813435852527618,0.543264985084534,0.15805459022522,-0.830594480037689,0.533977091312408,-0.0218600612133741,-0.823933601379395,0.566264569759369,-0.0153977498412132,-0.824651658535004,0.565431296825409,0.205930322408676,-0.790927648544312,0.576217114925385,-0.0153538659214973,-0.827536225318909,0.56120240688324,0.0543337687849998,-0.820531129837036,0.569013833999634,
  571. -0.0154046630486846,-0.824192881584167,0.56609970331192,-0.0216878578066826,-0.823394417762756,0.56705504655838,-0.156163930892944,-0.798115789890289,0.581914186477661,0.0532419383525848,-0.81751948595047,0.573434591293335,-0.0153542123734951,-0.827513575553894,0.561235725879669,-0.110224992036819,-0.834579706192017,0.539747297763824,-0.113105684518814,-0.817548394203186,0.564643025398254,-0.0154224764555693,-0.823004961013794,0.567824721336365,-0.158445045351982,-0.812305927276611,0.561296999454498,-0.228866904973984,0.93254280090332,0.279256105422974,-0.32004576921463,0.919943392276764,0.226439580321312,-0.256667464971542,0.92984676361084,0.263641566038132,-0.226944670081139,0.937169551849365,0.264970660209656,-0.405201226472855,0.86155378818512,0.305838376283646,-0.327712535858154,0.899455428123474,0.289109736680985,-0.256329238414764,0.930182814598084,0.262783706188202,-0.209919825196266,0.93682187795639,0.279818952083588,-0.22806590795517,0.934512138366699,0.273263782262802,-0.411520749330521,0.867185413837433,0.280428469181061,-0.226236999034882,0.938789188861847,0.259791702032089,-0.164896354079247,0.953843414783478,0.250981986522675,-0.243714481592178,0.932248413562775,0.267425060272217,-0.228035271167755,0.9345862865448,0.273035675287247,-0.20979055762291,0.936964154243469,0.2794389128685,-0.243545442819595,0.934507369995117,0.259579718112946,-0.167515307664871,0.956851661205292,0.237431168556213,-0.225499600172043,0.940431118011475,0.254439026117325,-0.24371001124382,0.932311534881592,0.267209053039551,-0.209755033254623,0.937003314495087,0.279334485530853,-0.242229163646698,0.932542860507965,0.267747670412064,-0.162076368927956,0.950437068939209,0.265331625938416,-0.243622735142708,0.93350887298584,0.263076364994049,-0.214192464947701,0.940409004688263,0.264107078313828,-0.377400934696198,0.896939992904663,0.230363577604294,-0.243697211146355,0.93249237537384,0.266589045524597,-0.242034286260605,0.932808518409729,0.266997575759888,-0.243617758154869,0.933574855327606,0.262846708297729,-0.373033881187439,0.884349703788757,0.280662477016449,
  572. -0.215253859758377,0.94176197052002,0.258360743522644,-0.373619168996811,0.885025560855865,0.277738273143768,-0.243693992495537,0.93253767490387,0.266433447599411,-0.371499001979828,0.885963201522827,0.277592748403549,-0.210526436567307,0.642828941345215,0.736511766910553,-0.239195004105568,0.639901101589203,0.730282366275787,-0.206351742148399,0.643207371234894,0.737362384796143,-0.206361070275307,0.644066095352173,0.736609816551209,-0.238054931163788,0.63176441192627,0.737701594829559,-0.228943824768066,0.635386765003204,0.737474322319031,-0.206015944480896,0.620667159557343,0.756524741649628,-0.152071207761765,0.616719007492065,0.772354960441589,-0.215110495686531,0.621141791343689,0.753598272800446,-0.281611144542694,0.612096726894379,0.738940358161926,-0.206314712762833,0.640011787414551,0.740148067474365,-0.227758884429932,0.632530868053436,0.740290939807892,-0.160809397697449,0.593218207359314,0.788817226886749,-0.205589279532433,0.601101994514465,0.772275567054749,-0.244842618703842,0.606908798217773,0.756117522716522,-0.246804818511009,0.587203741073608,0.770895183086395,-0.20574115216732,0.607457935810089,0.767245292663574,-0.26774987578392,0.576289236545563,0.772140324115753,-0.244072243571281,0.61416620016098,0.750485718250275,-0.159607663750649,0.600592434406281,0.783462882041931,-0.158202514052391,0.600326120853424,0.783951938152313,-0.427913725376129,0.424379587173462,0.797992348670959,-0.253721863031387,0.494858741760254,0.83110773563385,-0.237949416041374,0.500199615955353,0.832574605941772,-0.160277664661407,0.599137008190155,0.784439861774445,-0.243657097220421,0.617977142333984,0.747486174106598,-0.267762333154678,0.622495949268341,0.735392570495605,-0.330549299716949,0.0163811780512333,0.943646550178528,-0.24812376499176,0.047738790512085,0.967551410198212,-0.301409035921097,0.0276035591959953,0.953095316886902,-0.209115117788315,0.936173379421234,0.282577931880951,-0.238919958472252,0.925764858722687,0.293047219514847,-0.298362404108047,0.901594698429108,0.313220053911209,-0.380789309740067,0.899080157279968,0.215996235609055,
  573. -0.207888156175613,0.931326925754547,0.299019426107407,-0.302319943904877,0.918308198451996,0.255563855171204,-0.238548070192337,0.925477027893066,0.294256836175919,-0.208630904555321,0.934264659881592,0.28917595744133,-0.191530674695969,0.938844561576843,0.286158889532089,-0.20751179754734,0.929834008216858,0.303887397050858,-0.388357907533646,0.889919221401215,0.23921112716198,-0.160285025835037,0.934285879135132,0.318462908267975,-0.225504711270332,0.929401576519012,0.292164862155914,-0.191421806812286,0.938741326332092,0.286570072174072,-0.208611845970154,0.93418937921524,0.2894327044487,-0.163202032446861,0.929846942424774,0.329772144556046,-0.225813522934914,0.926587700843811,0.300738245248795,-0.207059353590012,0.928035736083984,0.309638679027557,-0.231900617480278,0.927445113658905,0.293373167514801,-0.191401168704033,0.938721716403961,0.286648005247116,-0.225511312484741,0.929343998432159,0.292342990636826,-0.225677952170372,0.927853345870972,0.296913713216782,-0.157236456871033,0.938730955123901,0.306693464517593,-0.197531521320343,0.932899415493011,0.301131159067154,-0.365855842828751,0.882080793380737,0.296788096427917,-0.231890991330147,0.927432298660278,0.293421030044556,-0.225540027022362,0.929091811180115,0.293121188879013,-0.352196335792542,0.902006983757019,0.249682545661926,-0.225695729255676,0.927690327167511,0.297409206628799,-0.198919326066971,0.93081933259964,0.306604772806168,-0.225564673542976,0.928873956203461,0.293792098760605,-0.352890282869339,0.901004731655121,0.252307653427124,-0.357079744338989,0.899767816066742,0.250822573900223,0.106992952525616,0.0863707885146141,0.990501165390015,-0.0625505447387695,0.0836027860641479,0.994534075260162,0.163924962282181,0.0867467597126961,0.982651352882385,0.106081038713455,0.066990427672863,0.992098331451416,-0.0701912343502045,0.0842752233147621,0.993967294692993,-0.0625483840703964,0.0835764408111572,0.994536459445953,0.159141525626183,0.126714617013931,0.979090094566345,-0.0621541887521744,0.0787972286343575,0.994951188564301,0.00640098378062248,0.0941537842154503,0.995537161827087,
  574. -0.0626168102025986,0.08440762758255,0.994461953639984,-0.0700797438621521,0.0852948799729347,0.993888139724731,-0.204176232218742,0.100481264293194,0.973763644695282,0.0049321805126965,0.0993655696511269,0.995038866996765,-0.0621572062373161,0.078833781182766,0.994948089122772,-0.161182284355164,0.0476394928991795,0.985774278640747,-0.166552096605301,0.0787444412708282,0.982883453369141,-0.0627992451190948,0.0866261273622513,0.994259655475616,-0.204627588391304,0.0755970850586891,0.97591632604599,0.0927752107381821,0.946622312068939,-0.308705449104309,-0.0718528926372528,0.94212394952774,-0.327474743127823,0.146246552467346,0.942439079284668,-0.30070024728775,0.0893877223134041,0.952551960945129,-0.290954798460007,-0.076042152941227,0.941511273384094,-0.328289598226547,-0.0718540474772453,0.942130327224731,-0.327456027269363,0.146875292062759,0.929846107959747,-0.337363094091415,-0.0721490085124969,0.943763017654419,-0.322654545307159,0.00311677111312747,0.944146811962128,-0.329510539770126,-0.0718074068427086,0.941870868206024,-0.328211754560471,-0.0758242905139923,0.941238522529602,-0.329121023416519,-0.203926995396614,0.912262260913849,-0.355234444141388,0.00231863535009325,0.942192852497101,-0.335063070058823,-0.0721412822604179,0.943720459938049,-0.322780758142471,-0.169249475002289,0.937560439109802,-0.3038669526577,-0.170262679457664,0.927537560462952,-0.332692980766296,-0.0716842859983444,0.941184401512146,-0.330202013254166,-0.207494169473648,0.91989529132843,-0.332774698734283,0.0813976973295212,0.992038190364838,0.0960970520973206,-0.0892385542392731,0.992705047130585,0.081075631082058,0.127680867910385,0.986789762973785,0.0997173115611076,0.0784072354435921,0.990192472934723,0.11563366651535,-0.0986928418278694,0.9919553399086,0.0792738348245621,-0.0892439484596252,0.992686450481415,0.0812966376543045,0.1271603256464,0.99003130197525,0.0605668053030968,-0.0893391147255898,0.992348492145538,0.0852239429950714,-0.0116413533687592,0.996979475021362,0.076788455247879,-0.089227207005024,0.992743849754334,0.0806114450097084,
  575. -0.0984930843114853,0.992047548294067,0.078363373875618,-0.237124189734459,0.970501005649567,0.0435902029275894,-0.0126573853194714,0.997431039810181,0.0705059915781021,-0.0893302336335182,0.992380976676941,0.0848546847701073,-0.191768869757652,0.975981593132019,0.103366412222385,-0.193749785423279,0.978375673294067,0.072403185069561,-0.0891598984599113,0.992968380451202,0.0778737515211105,-0.240415632724762,0.968167364597321,0.0696588158607483,0.238228738307953,-0.8879434466362,-0.393450826406479,0.0660885348916054,-0.915393948554993,-0.397097319364548,0.29145559668541,-0.873566567897797,-0.389788836240768,0.236205473542213,-0.880402207374573,-0.411216378211975,0.0633555799722672,-0.915961980819702,-0.396231949329376,0.0660802945494652,-0.915626227855682,-0.396562725305557,0.28923636674881,-0.889748990535736,-0.353113412857056,0.0661670193076134,-0.913133084774017,-0.402255982160568,0.142205074429512,-0.910630345344543,-0.387982040643692,0.0660674497485161,-0.91598641872406,-0.395732253789902,0.0635213926434517,-0.916328310966492,-0.395357519388199,-0.0750134289264679,-0.925572633743286,-0.371063798666,0.141030192375183,-0.912975192070007,-0.382866531610489,0.0661699175834656,-0.913048267364502,-0.402448326349258,-0.0277063958346844,-0.905480146408081,-0.423483163118362,-0.0310450978577137,-0.917961835861206,-0.39545214176178,0.066046915948391,-0.916557729244232,-0.394410789012909,-0.0770502686500549,-0.915598928928375,-0.39464145898819,-0.229955017566681,0.901534855365753,-0.366545587778091,-0.320846170186996,0.858658850193024,-0.399703234434128,-0.260124295949936,0.888552725315094,-0.377901196479797,-0.228197678923607,0.896566808223724,-0.379597008228302,-0.40614652633667,0.863016247749329,-0.300413101911545,-0.3289954662323,0.882122278213501,-0.337078928947449,-0.260000199079514,0.888449430465698,-0.378229409456253,-0.207681402564049,0.906351506710052,-0.367961198091507,-0.229186072945595,0.899367094039917,-0.372306972742081,-0.41247570514679,0.85146176815033,-0.323847025632858,-0.227484732866287,0.894537389278412,-0.38477748632431,
  576. -0.163895592093468,0.900997996330261,-0.401672512292862,-0.2483069896698,0.892705976963043,-0.376058161258698,-0.229156702756882,0.89928412437439,-0.372525572776794,-0.207543656229973,0.906215906143188,-0.36837249994278,-0.248213037848473,0.890812456607819,-0.380583196878433,-0.166511818766594,0.89479786157608,-0.414259135723114,-0.226787537336349,0.892545342445374,-0.389782279729843,-0.248303964734077,0.892643094062805,-0.376209229230881,-0.207533523440361,0.906205952167511,-0.368402749300003,-0.246557980775833,0.893262326717377,-0.375887811183929,-0.161095842719078,0.907347798347473,-0.388288646936417,-0.248251423239708,0.8915736079216,-0.378771603107452,-0.208088725805283,0.899767935276031,-0.383558213710785,-0.377731442451477,0.843463003635406,-0.381954252719879,-0.248302340507507,0.892609894275665,-0.376289248466492,-0.246486946940422,0.893167018890381,-0.376160800457001,-0.248264715075493,0.891841650009155,-0.378131210803986,-0.374817728996277,0.864770352840424,-0.334191530942917,-0.209339469671249,0.896723568439484,-0.389953583478928,-0.375417411327362,0.863422751426697,-0.336991041898727,-0.248329848051071,0.893181920051575,-0.374911099672318,-0.371692448854446,0.864551663398743,-0.338223606348038,-0.217617467045784,0.960923612117767,0.171080350875854,-0.237857013940811,0.95649641752243,0.168933779001236,-0.206137537956238,0.963241279125214,0.172260642051697,-0.206153333187103,0.963461220264435,0.171007037162781,-0.236765280365944,0.954884350299835,0.179270952939987,-0.227912351489067,0.957478284835815,0.1768938601017,-0.205673515796661,0.957658171653748,0.201467588543892,-0.154037088155746,0.964242577552795,0.215659156441689,-0.221983596682549,0.954977691173553,0.196827456355095,-0.284397840499878,0.938981890678406,0.193470805883408,-0.206084489822388,0.962523341178894,0.176289930939674,-0.226693674921989,0.957018911838531,0.18089970946312,-0.162713915109634,0.956283032894135,0.242996081709862,-0.205137714743614,0.952262222766876,0.226086646318436,-0.244501933455467,0.946677803993225,0.209809452295303,-0.24637670814991,0.940691530704498,0.233233779668808,
  577. -0.205334946513176,0.954169154167175,0.217712610960007,-0.270594120025635,0.931715071201324,0.242251962423325,-0.2437504529953,0.948810398578644,0.200859785079956,-0.163327276706696,0.958544373512268,0.233488500118256,-0.160104230046272,0.958780288696289,0.234748899936676,-0.428763777017593,0.830072999000549,0.356567680835724,-0.253075063228607,0.906439423561096,0.338113486766815,-0.241325080394745,0.910243630409241,0.336479872465134,-0.163829103112221,0.958150267601013,0.23475107550621,-0.243332177400589,0.949938535690308,0.19597539305687,-0.269355982542038,0.945545434951782,0.182732701301575,-0.333886653184891,0.601704597473145,0.725583493709564,-0.246639683842659,0.643508791923523,0.724613904953003,-0.299274355173111,0.619146406650543,0.726011455059052,-0.206853091716766,0.907005071640015,-0.366815537214279,-0.243353605270386,0.905049204826355,-0.348805099725723,-0.298614203929901,0.899119436740875,-0.320021718740463,-0.383249998092651,0.834873020648956,-0.395103245973587,-0.2055304646492,0.914178431034088,-0.349335134029388,-0.303046256303787,0.875693500041962,-0.375930666923523,-0.243240162730217,0.905210673809052,-0.348464995622635,-0.206356316804886,0.909785389900208,-0.360149651765823,-0.192720472812653,0.911119818687439,-0.364307135343552,-0.205176144838333,0.915981590747833,-0.344790607690811,-0.390947312116623,0.842377841472626,-0.370890527963638,-0.159898474812508,0.927990436553955,-0.336550384759903,-0.229229986667633,0.907136678695679,-0.35292574763298,-0.192613869905472,0.91129207611084,-0.363932281732559,-0.206336051225662,0.909896433353424,-0.359880566596985,-0.162860810756683,0.931618452072144,-0.324905216693878,-0.229472130537033,0.909444510936737,-0.346775472164154,-0.204703778028488,0.918313980102539,-0.338815301656723,-0.230977654457092,0.906973361968994,-0.352205365896225,-0.192595839500427,0.911321222782135,-0.363868832588196,-0.229237079620361,0.907203614711761,-0.352749228477478,-0.229368835687637,0.908453404903412,-0.349431335926056,-0.156789347529411,0.924060225486755,-0.348611176013947,
  578. -0.192381516098976,0.917067050933838,-0.349252492189407,-0.369745880365372,0.872347474098206,-0.319840312004089,-0.230951085686684,0.907029926776886,-0.352077096700668,-0.229250326752663,0.907328605651855,-0.352418959140778,-0.353942483663559,0.85882443189621,-0.370331436395645,-0.229360371828079,0.908372521400452,-0.349647164344788,-0.194026321172714,0.919166088104248,-0.342764765024185,-0.229226261377335,0.907101631164551,-0.353018254041672,-0.354665338993073,0.859714269638062,-0.367564797401428,-0.360868006944656,0.856888473033905,-0.368125528097153,0.110550612211227,0.687264561653137,0.717945694923401,-0.0652145743370056,0.687699794769287,0.723060250282288,0.164225891232491,0.682834148406982,0.711876034736633,0.109601244330406,0.672869861125946,0.731596708297729,-0.0698806345462799,0.688023626804352,0.722315907478333,-0.0652381926774979,0.687912940979004,0.72285532951355,0.159573912620544,0.71183830499649,0.683975517749786,-0.0647880882024765,0.683849275112152,0.726741135120392,0.00418396340683103,0.696386456489563,0.717654883861542,-0.0653105154633522,0.688565671443939,0.722227036952972,-0.0697693675756454,0.688760697841644,0.72162389755249,-0.206534937024117,0.687885761260986,0.695813655853271,0.00277325510978699,0.700020253658295,0.714117586612701,-0.0647740438580513,0.683722496032715,0.726861715316772,-0.159720480442047,0.654853999614716,0.738685131072998,-0.165126338601112,0.677018046379089,0.71720290184021,-0.0654479190707207,0.689805328845978,0.721030712127686,-0.206854939460754,0.669536411762238,0.71339476108551,0.101577326655388,0.545236229896545,-0.832105457782745,-0.0730511099100113,0.529418110847473,-0.845210015773773,0.145957455039024,0.546582818031311,-0.824586927890778,0.0979954972863197,0.561809837818146,-0.821441769599915,-0.0716466382145882,0.529651403427124,-0.845184147357941,-0.0730443373322487,0.529317378997803,-0.845273673534393,0.146667093038559,0.513845205307007,-0.845252573490143,-0.0733528137207031,0.533913493156433,-0.842351317405701,0.00251200399361551,0.529925167560577,-0.848040640354156,
  579. -0.0729967653751373,0.528610050678253,-0.84572035074234,-0.0714562013745308,0.529016017913818,-0.845598042011261,-0.208486676216125,0.487349152565002,-0.847952902317047,0.00170243508182466,0.524971306324005,-0.851118206977844,-0.0733509510755539,0.533885717391968,-0.842369079589844,-0.172899320721626,0.540966749191284,-0.823080122470856,-0.173994809389114,0.51436460018158,-0.839734971523285,-0.0728893950581551,0.527015089988709,-0.846724390983582,-0.212155938148499,0.508113622665405,-0.834751725196838,0.082761786878109,0.833670496940613,-0.546025633811951,-0.089727059006691,0.82475471496582,-0.558326780796051,0.133230745792389,0.831529855728149,-0.539265871047974,0.0796829760074615,0.84454607963562,-0.529521048069,-0.0947655141353607,0.823874473571777,-0.558793842792511,-0.0897306948900223,0.824845314025879,-0.558192312717438,0.132665634155273,0.808928072452545,-0.572743594646454,-0.0898216515779495,0.8271204829216,-0.554800689220428,-0.0151636488735676,0.825640738010406,-0.563992381095886,-0.0897149294614792,0.824453294277191,-0.558773636817932,-0.094588115811348,0.823435068130493,-0.559471011161804,-0.237292766571045,0.783973753452301,-0.573652744293213,-0.0161514040082693,0.822214603424072,-0.56894838809967,-0.0898143649101257,0.82693749666214,-0.555074632167816,-0.192089080810547,0.825706541538239,-0.530387163162231,-0.19397184252739,0.80817061662674,-0.556089103221893,-0.0896549299359322,0.822967648506165,-0.560969114303589,-0.240622028708458,0.798486948013306,-0.551832973957062,0.240793287754059,-0.938126981258392,0.248870208859444,0.068193294107914,-0.962283194065094,0.263364225625992,0.289144575595856,-0.925855100154877,0.243285700678825,0.238701790571213,-0.943457722663879,0.23002003133297,0.0640470013022423,-0.962282776832581,0.264404773712158,0.0681869685649872,-0.96219390630722,0.263691812753677,0.286965489387512,-0.915624737739563,0.28157103061676,0.0682890266180038,-0.963634133338928,0.258352160453796,0.142417177557945,-0.952931940555573,0.267652809619904,0.0681711807847023,-0.96197122335434,0.264507174491882,
  580. 0.064207062125206,-0.962026596069336,0.265296936035156,-0.0747455880045891,-0.954066336154938,0.290121734142303,0.141256347298622,-0.951548933982849,0.273132294416428,0.0682897195219994,-0.963643848896027,0.258316069841385,-0.0263386908918619,-0.971140801906586,0.237048223614693,-0.0296009872108698,-0.96340548992157,0.266408890485764,0.0681364014744759,-0.961480379104614,0.266295164823532,-0.0767743214964867,-0.961035132408142,0.265550971031189,-0.249671995639801,0.913945972919464,-0.319948017597198,-0.312207698822021,0.893931031227112,-0.321579962968826,-0.311463594436646,0.894194722175598,-0.321568548679352,-0.312643796205521,0.894857466220856,-0.318565726280212,-0.249440759420395,0.91567850112915,-0.315138608217239,-0.21060486137867,0.926317155361176,-0.312381386756897,-0.311672240495682,0.895195960998535,-0.318566739559174,-0.260719060897827,0.904793560504913,-0.336710840463638,-0.250576496124268,0.906364262104034,-0.34016951918602,-0.249614387750626,0.914384484291077,-0.318737745285034,-0.24348746240139,0.915899455547333,-0.319126933813095,-0.209296479821205,0.923644125461578,-0.32105565071106,-0.260493755340576,0.905142486095428,-0.335946500301361,-0.31517419219017,0.895432412624359,-0.314429700374603,-0.250556409358978,0.906548976898193,-0.339691787958145,-0.246522679924965,0.920874416828156,-0.302021324634552,-0.248810842633247,0.920058488845825,-0.302631109952927,-0.316010802984238,0.893210291862488,-0.319863438606262,-0.315613597631454,0.894272923469543,-0.317275911569595,-0.26128751039505,0.903908789157867,-0.338641107082367,-0.288437932729721,0.899509251117706,-0.328156799077988,-0.31477677822113,0.896466910839081,-0.311869651079178,-0.518798470497131,0.794618427753448,-0.315324604511261,-0.245594039559364,0.919370353221893,-0.307313650846481,-0.363970786333084,0.883750915527344,-0.29412516951561,-0.315327376127243,0.895030081272125,-0.315420150756836,-0.28797322511673,0.900144517421722,-0.326819866895676,-0.513817131519318,0.787772178649902,-0.339716196060181,-0.315532118082047,0.894489169120789,-0.316747039556503,
  581. -0.438475996255875,0.834887862205505,-0.332717657089233,-0.424543738365173,0.872461915016174,-0.242018282413483,-0.315215945243835,0.895323038101196,-0.314699441194534,-0.360518246889114,0.88791698217392,-0.285709738731384,-0.17199769616127,0.894028663635254,0.413678228855133,-0.119658276438713,0.922893226146698,0.365992039442062,-0.267551571130753,0.825673758983612,0.496667891740799,-0.102060332894325,0.916833519935608,0.386005282402039,-0.266744047403336,0.866357207298279,0.422223687171936,-0.311615496873856,0.847314119338989,0.430063724517822,-0.0433651506900787,0.871192872524261,0.489021956920624,0.0110480301082134,0.96488618850708,0.262436091899872,-0.0356704741716385,0.888140320777893,0.458185970783234,-0.315805047750473,0.88517028093338,0.341673702001572,-0.285300821065903,0.896869897842407,0.337976008653641,-0.159406274557114,0.934120416641235,0.319387972354889,-0.202594250440598,0.942311227321625,0.266468197107315,-0.19197253882885,0.959454596042633,0.206381738185883,-0.241327509284019,0.8106369972229,0.533506035804749,-0.096850112080574,0.914913535118103,0.391858905553818,-0.337615877389908,0.857728719711304,0.387707412242889,-0.307853817939758,0.868020236492157,0.389572739601135,-0.260697454214096,0.795226693153381,0.547404229640961,-0.250799506902695,0.816243827342987,0.520428240299225,-0.137443795800209,0.965176641941071,0.222583621740341,-0.293275624513626,0.838887393474579,0.458538234233856,-0.440681606531143,0.775168716907501,0.452673375606537,-0.294593095779419,0.838425695896149,0.458538323640823,-0.138400882482529,0.738016605377197,0.660436749458313,-0.099287211894989,0.778385043144226,0.619886100292206,-0.195340529084206,0.671417236328125,0.714871287345886,-0.391644179821014,0.655971944332123,0.645225346088409,-0.159249871969223,0.754362821578979,0.6368488073349,-0.269593715667725,0.714242458343506,0.645892381668091,0.153369709849358,0.798800647258759,0.581717610359192,-0.01281036157161,0.81345796585083,0.581482648849487,0.207789480686188,0.788987636566162,0.57820600271225,0.151231274008751,0.787662923336029,0.597257316112518,
  582. -0.0212125312536955,0.814101934432983,0.580334424972534,-0.0128093268722296,0.813392221927643,0.581574618816376,0.205927833914757,0.812288880348206,0.545692682266235,-0.0127713810652494,0.810982704162598,0.584930717945099,0.0631976798176765,0.816003739833832,0.574581682682037,-0.0128159672021866,0.813813924789429,0.580984234809875,-0.0210444312542677,0.814642727375031,0.579581201076508,-0.153801426291466,0.820054054260254,0.551231861114502,0.0619777254760265,0.81953889131546,0.569661974906921,-0.0127739692106843,0.811147034168243,0.584702789783478,-0.121651396155357,0.790344417095184,0.600463688373566,-0.124908283352852,0.80936998128891,0.573862612247467,-0.0128404796123505,0.815370440483093,0.578797161579132,-0.155861929059029,0.805878579616547,0.571197628974915,0.157868966460228,0.24346724152565,-0.956974983215332,-0.0134234176948667,0.237711846828461,-0.971242964267731,0.206976771354675,0.243791475892067,-0.947484195232391,0.155484825372696,0.262395948171616,-0.952351212501526,-0.0202007852494717,0.236494228243828,-0.971422910690308,-0.0134243164211512,0.237635210156441,-0.97126168012619,0.205088034272194,0.205306574702263,-0.956968188285828,-0.0133711658418179,0.242153719067574,-0.97014582157135,0.0564090795814991,0.231675773859024,-0.971156179904938,-0.0134326163679361,0.236926883459091,-0.971434593200684,-0.0200374871492386,0.235634416341782,-0.971635282039642,-0.157730340957642,0.206196948885918,-0.9657142162323,0.0552985854446888,0.226328641176224,-0.972480118274689,-0.0133734354749322,0.241961345076561,-0.970193803310394,-0.110627844929695,0.262065529823303,-0.958688199520111,-0.113686420023441,0.232790797948837,-0.965859174728394,-0.0134578347206116,0.234770357608795,-0.971957683563232,-0.160092145204544,0.231062859296799,-0.959677278995514,0.157910540699959,-0.957053363323212,-0.243131965398788,-0.0134274149313569,-0.971326291561127,-0.237370893359184,0.206961765885353,-0.947572946548462,-0.243458956480026,0.155508920550346,-0.95239919424057,-0.262207537889481,-0.0201649088412523,-0.971469581127167,-0.236305326223373,
  583. -0.0134266065433621,-0.971309423446655,-0.237439900636673,0.205067962408066,-0.957053661346436,-0.204928174614906,-0.0133758150041103,-0.970243990421295,-0.241759479045868,0.0563300773501396,-0.971251547336578,-0.231295317411423,-0.0134352007880807,-0.971488356590271,-0.236706286668777,-0.0199971757829189,-0.971687436103821,-0.235422119498253,-0.157709643244743,-0.96576339006424,-0.205983027815819,0.0552131421864033,-0.972580552101135,-0.225917294621468,-0.0133785232901573,-0.970301151275635,-0.241529852151871,-0.110672801733017,-0.958798229694366,-0.261643946170807,-0.113740809261799,-0.96598082780838,-0.232259094715118,-0.0134640615433455,-0.972086369991302,-0.23423707485199,-0.160043269395828,-0.959811627864838,-0.230538308620453,0.157886251807213,0.145837485790253,-0.976628661155701,-0.014502877369523,0.138614997267723,-0.990240156650543,0.205734357237816,0.147087723016739,-0.96749085187912,0.155533120036125,0.165338695049286,-0.97389554977417,-0.0174896605312824,0.138107404112816,-0.990262806415558,-0.0145028820261359,0.138614520430565,-0.990240216255188,0.204020813107491,0.108289606869221,-0.972958922386169,-0.0144525282084942,0.14359176158905,-0.989531457424164,0.0586431287229061,0.132559701800346,-0.989438772201538,-0.0145109724253416,0.137810945510864,-0.990352213382721,-0.017331575974822,0.137253537774086,-0.9903843998909,-0.160318031907082,0.107460252940655,-0.98119843006134,0.0575221702456474,0.126869961619377,-0.990250051021576,-0.0144542958587408,0.143417924642563,-0.989556729793549,-0.111397832632065,0.164494946599007,-0.980067312717438,-0.114353150129318,0.134105622768402,-0.9843470454216,-0.014534505084157,0.135468035936356,-0.990675091743469,-0.162441104650497,0.132959559559822,-0.977719068527222,0.156619638204575,-0.911065518856049,-0.381353050470352,-0.0116044217720628,-0.925799369812012,-0.377837210893631,0.208913326263428,-0.900999903678894,-0.380203306674957,0.154332593083382,-0.903675496578217,-0.399439603090286,-0.0146184712648392,-0.925835728645325,-0.377643555402756,-0.0116002159193158,-0.925679266452789,-0.378131300210953,
  584. 0.206838726997375,-0.916190981864929,-0.343237429857254,-0.0115482052788138,-0.924190104007721,-0.381758183240891,0.0627941265702248,-0.926604747772217,-0.370756983757019,-0.0116095580160618,-0.92594587802887,-0.377478003501892,-0.0144783966243267,-0.926124691963196,-0.376939654350281,-0.15802001953125,-0.924896419048309,-0.345826864242554,0.0615843906998634,-0.928903877735138,-0.365164309740067,-0.0115534858778119,-0.92434173822403,-0.38139083981514,-0.118784323334694,-0.908206164836884,-0.401312619447708,-0.122061587870121,-0.920362114906311,-0.371530085802078,-0.0116476118564606,-0.92702841758728,-0.37481027841568,-0.160077407956123,-0.915409028530121,-0.369325906038284,0.156619802117348,-0.911065995693207,-0.381351798772812,-0.0116044161841273,-0.925799190998077,-0.377837538719177,0.208913207054138,-0.901000559329987,-0.380201578140259,0.154334783554077,-0.90368264913559,-0.399422913789749,-0.0146154910326004,-0.925841808319092,-0.377628564834595,-0.0116004375740886,-0.92568564414978,-0.378115743398666,0.206834897398949,-0.916215479373932,-0.343174010515213,-0.0115492017939687,-0.924218714237213,-0.381688863039017,0.0627799034118652,-0.926631987094879,-0.370691239833832,-0.011609710752964,-0.925950169563293,-0.377467185258865,-0.0144763514399529,-0.926128923892975,-0.376929342746735,-0.158019348978996,-0.924899458885193,-0.345819175243378,0.0615744516253471,-0.928922593593597,-0.365118384361267,-0.0115541787818074,-0.92436158657074,-0.381342709064484,-0.118789628148079,-0.908226191997528,-0.401265770196915,-0.122058123350143,-0.920349538326263,-0.371562570333481,-0.0116471471264958,-0.927015244960785,-0.374842822551727,-0.160080149769783,-0.915395617485046,-0.369357794523239,0.163456588983536,0.578034460544586,0.799473702907562,-0.00934343785047531,0.593308329582214,0.804921090602875,0.206226676702499,0.571442663669586,0.794307291507721,0.161070704460144,0.561693727970123,0.811514914035797,-0.0220412090420723,0.594466865062714,0.803818047046661,-0.00933630671352148,0.592855453491211,0.805254817008972,0.204086408019066,0.603327512741089,0.770937621593475,
  585. -0.0092969685792923,0.590357482433319,0.807088494300842,0.0567655190825462,0.597356975078583,0.79996395111084,-0.00934444740414619,0.593372404575348,0.804873824119568,-0.0218628272414207,0.595242559909821,0.803248643875122,-0.157614558935165,0.609285116195679,0.777128934860229,0.0556898638606071,0.601850271224976,0.796664953231812,-0.00930398516356945,0.590803027153015,0.806762158870697,-0.113444298505783,0.5675950050354,0.815454602241516,-0.116270624101162,0.592459559440613,0.79716545343399,-0.00938669219613075,0.596054911613464,0.802888810634613,-0.159892350435257,0.589005649089813,0.792153298854828,0.158591002225876,-0.907182812690735,-0.389702707529068,-0.0114819165319204,-0.922278940677643,-0.386354476213455,0.209335789084435,-0.897366940975189,-0.38847279548645,0.156404569745064,-0.899568736553192,-0.407815754413605,-0.0162382870912552,-0.922451972961426,-0.385770380496979,-0.0114792538806796,-0.922201812267303,-0.386538475751877,0.207324177026749,-0.912970542907715,-0.351427882909775,-0.0114273568615317,-0.920694947242737,-0.390115708112717,0.057348445057869,-0.923194468021393,-0.380030393600464,-0.011488588526845,-0.92247200012207,-0.385893225669861,-0.0160907153040171,-0.922763347625732,-0.385031014680862,-0.16145832836628,-0.921446323394775,-0.35336646437645,0.0562171190977097,-0.925365209579468,-0.374885320663452,-0.0114321308210492,-0.920833945274353,-0.389787286520004,-0.113159649074078,-0.905638158321381,-0.408674031496048,-0.115995950996876,-0.917590439319611,-0.380227267742157,-0.0115265473723412,-0.923567295074463,-0.383263170719147,-0.163723543286324,-0.911451816558838,-0.377425789833069,-0.267855644226074,0.959218919277191,0.0902908146381378,-0.355085223913193,0.933860957622528,0.0426404736936092,-0.297762602567673,0.951749384403229,0.0742330923676491,-0.266048043966293,0.960972905158997,0.0758252590894699,-0.438294142484665,0.889415800571442,0.12975999712944,-0.362347722053528,0.926002144813538,0.105944037437439,-0.297603368759155,0.951833724975586,0.0737894475460052,-0.246305122971535,0.964913249015808,0.0909745097160339,
  586. -0.267086058855057,0.95999801158905,0.0840775370597839,-0.444519519805908,0.889703869819641,0.104064553976059,-0.265351146459579,0.961580991744995,0.0703628957271576,-0.20511631667614,0.97696590423584,0.0588645786046982,-0.285094201564789,0.955322265625,0.0779785960912704,-0.267056524753571,0.960026919841766,0.0838409066200256,-0.246172040700912,0.964987337589264,0.0905477851629257,-0.284995406866074,0.955824494361877,0.0719519257545471,-0.207741752266884,0.977141439914703,0.0451445169746876,-0.264642417430878,0.962162256240845,0.0648705437779427,-0.285091370344162,0.955337941646576,0.0777963846921921,-0.246153518557549,0.964997529983521,0.0904884412884712,-0.281435251235962,0.95632266998291,0.0790010392665863,-0.202295795083046,0.976572632789612,0.0733640342950821,-0.285038262605667,0.955617427825928,0.0744886323809624,-0.250407248735428,0.965302228927612,0.0740807577967644,-0.41339436173439,0.909191727638245,0.0497547201812267,-0.285087168216705,0.955361425876617,0.077523909509182,-0.281270444393158,0.956427991390228,0.0783095583319664,-0.285044461488724,0.955586314201355,0.0748637989163399,-0.41339647769928,0.904801428318024,0.102165423333645,-0.251561194658279,0.965470969676971,0.0676967948675156,-0.414024651050568,0.904870212078094,0.0989620983600616,-0.285101145505905,0.955283582210541,0.0784260928630829,-0.407394379377365,0.907987475395203,0.0979222059249878,-0.247252330183983,0.764975488185883,0.594708979129791,-0.271532028913498,0.760431230068207,0.589927852153778,-0.23494978249073,0.767083346843719,0.596977174282074,-0.235014587640762,0.768333077430725,0.59534227848053,-0.270066857337952,0.753620505332947,0.599266231060028,-0.258568108081818,0.758586764335632,0.598070800304413,-0.233891770243645,0.748490154743195,0.62052971124649,-0.185753613710403,0.749759674072266,0.635103225708008,-0.25102898478508,0.747572302818298,0.61491471529007,-0.316946595907211,0.730939745903015,0.604377388954163,-0.234838664531708,0.764976143836975,0.599718451499939,-0.257274150848389,0.756351172924042,0.601450681686401,-0.193585515022278,0.729871809482574,0.655600428581238,
  587. -0.23282989859581,0.732202172279358,0.640054881572723,-0.274953782558441,0.733250439167023,0.621887743473053,-0.276218116283417,0.716540992259979,0.640525281429291,-0.233264937996864,0.738656103610992,0.632435500621796,-0.30178564786911,0.702382206916809,0.644658625125885,-0.27444514632225,0.739282548427582,0.61493182182312,-0.191625371575356,0.736010730266571,0.649282693862915,-0.191224381327629,0.735980749130249,0.649434864521027,-0.449453353881836,0.555968403816223,0.699207305908203,-0.279712021350861,0.637791156768799,0.717623591423035,-0.270075589418411,0.641632318496704,0.717890799045563,-0.192117959260941,0.735006511211395,0.65027391910553,-0.274153053760529,0.742600202560425,0.611052453517914,-0.299635618925095,0.743715941905975,0.597582817077637,-0.340969949960709,0.18664638698101,0.921359121799469,-0.256560921669006,0.227040573954582,0.939483523368835,-0.305690348148346,0.203917726874352,0.930038154125214,-0.245782151818275,0.964919209480286,0.092315673828125,-0.28104168176651,0.953705430030823,0.107058092951775,-0.338940322399139,0.931600153446198,0.131303161382675,-0.420522660017014,0.906660318374634,0.0335860960185528,-0.244301825761795,0.963322222232819,0.111026726663113,-0.343449980020523,0.936665832996368,0.068550780415535,-0.280904650688171,0.953694641590118,0.107513457536697,-0.245229884982109,0.964352667331696,0.0994298011064529,-0.228305250406265,0.968887329101563,0.0955727249383926,-0.243904620409012,0.962853312492371,0.11586282402277,-0.427994728088379,0.901882588863373,0.0585518181324005,-0.195993438363075,0.972010672092438,0.129545256495476,-0.266049146652222,0.958307862281799,0.10422970354557,-0.228189140558243,0.96887081861496,0.0960162654519081,-0.2452073097229,0.964328765869141,0.0997175052762032,-0.19898746907711,0.969668030738831,0.141943126916885,-0.266297191381454,0.957381188869476,0.11183475703001,-0.243371978402138,0.962199926376343,0.122234985232353,-0.268845945596695,0.957436680793762,0.105057343840599,-0.228164091706276,0.968867182731628,0.096111848950386,-0.266056478023529,0.958282232284546,0.104446709156036,
  588. -0.26619079709053,0.957792997360229,0.108513437211514,-0.19282703101635,0.97428560256958,0.116556361317635,-0.232177779078484,0.966164112091064,0.112340375781059,-0.400069713592529,0.908928871154785,0.117441520094872,-0.268802851438522,0.95742404460907,0.10528202354908,-0.266075402498245,0.958215057849884,0.105012901127338,-0.38774499297142,0.919253587722778,0.0680214986205101,-0.266194045543671,0.957780659198761,0.108613826334476,-0.233733326196671,0.965006709098816,0.118873700499535,-0.266073197126389,0.958223044872284,0.104946359992027,-0.388409823179245,0.918769538402557,0.0707133933901787,-0.391892403364182,0.917367696762085,0.069690965116024,0.0998343825340271,0.283483684062958,0.953766345977783,-0.0750869885087013,0.274577438831329,0.958628833293915,0.153338089585304,0.284479260444641,0.946339786052704,0.0997496247291565,0.264346361160278,0.959255516529083,-0.0781787484884262,0.274852126836777,0.958302855491638,-0.0751075148582459,0.274744123220444,0.958579480648041,0.147101640701294,0.322902292013168,0.934930622577667,-0.0744836181402206,0.2696832716465,0.960064172744751,-0.00132239609956741,0.288940995931625,0.957346022129059,-0.0752105265855789,0.275580555200577,0.958331227302551,-0.0781112760305405,0.275758892297745,0.958047807216644,-0.220775619149208,0.281630456447601,0.933778584003448,-0.00306581007316709,0.29416760802269,0.955749034881592,-0.0744735598564148,0.269601792097092,0.960087776184082,-0.169389352202415,0.234303385019302,0.95729273557663,-0.175849333405495,0.263727724552155,0.948432803153992,-0.075438492000103,0.27743273973465,0.957778751850128,-0.220099151134491,0.256726205348969,0.941088795661926,0.0602853819727898,0.870531141757965,-0.488406747579575,-0.107404194772244,0.855623185634613,-0.506333291530609,0.114716097712517,0.87000185251236,-0.479517430067062,0.0563899874687195,0.879809498786926,-0.471969842910767,-0.111682318150997,0.854582071304321,-0.507165253162384,-0.107393182814121,0.855555355548859,-0.506450057029724,0.116377979516983,0.850159704685211,-0.513502299785614,-0.107839405536652,0.858302056789398,-0.501685321331024,
  589. -0.0332192778587341,0.86042732000351,-0.50848925113678,-0.107325330376625,0.855137228965759,-0.507170259952545,-0.111434757709503,0.854142785072327,-0.507959067821503,-0.236425936222076,0.815952301025391,-0.527564823627472,-0.0339006930589676,0.85746568441391,-0.513423323631287,-0.107836693525314,0.858285427093506,-0.50171434879303,-0.209234923124313,0.851471066474915,-0.480851054191589,-0.209680125117302,0.835249841213226,-0.508322596549988,-0.107174396514893,0.854206502437592,-0.50876796245575,-0.240512847900391,0.827657222747803,-0.507087051868439,0.0400042310357094,0.994090676307678,-0.100912846624851,-0.131004557013512,0.984596967697144,-0.115787528455257,0.0943754464387894,0.990942239761353,-0.0955344811081886,0.0369585454463959,0.995980143547058,-0.0815939009189606,-0.135318920016289,0.983906745910645,-0.116688773036003,-0.131002798676491,0.984590590000153,-0.115843757987022,0.0939312651753426,0.986278355121613,-0.135764598846436,-0.131147041916847,0.985109925270081,-0.111170940101147,-0.0510314032435417,0.991380095481873,-0.120670266449451,-0.130979403853416,0.984505236148834,-0.116592817008495,-0.135130345821381,0.983833253383636,-0.11752425134182,-0.275734603404999,0.949757158756256,-0.148093968629837,-0.0520076379179955,0.990546345710754,-0.126938462257385,-0.131141483783722,0.98509007692337,-0.111352607607841,-0.228071764111519,0.969380915164948,-0.0910161510109901,-0.229687497019768,0.965682923793793,-0.121244072914124,-0.130907863378525,0.984242677688599,-0.118867583572865,-0.279152661561966,0.952467143535614,-0.121984280645847,0.274619489908218,-0.938052773475647,-0.211284533143044,0.10693085193634,-0.971942067146301,-0.209510251879692,0.324290186166763,-0.922217965126038,-0.21059438586235,0.272384077310562,-0.934288263320923,-0.230027139186859,0.107345566153526,-0.971958816051483,-0.209220319986343,0.106927558779716,-0.972017765045166,-0.209160462021828,0.322585582733154,-0.930733203887939,-0.172262728214264,0.106977410614491,-0.970822215080261,-0.214616373181343,0.181950658559799,-0.962498247623444,-0.201224505901337,
  590. 0.106919683516026,-0.972196757793427,-0.208330884575844,0.107495419681072,-0.972112119197845,-0.208429247140884,-0.0315540134906769,-0.98264867067337,-0.182773470878601,0.180816531181335,-0.963859021663666,-0.195655673742294,0.106977835297585,-0.970811486244202,-0.21466463804245,0.00726163387298584,-0.971209764480591,-0.238115429878235,0.00421711383387446,-0.978263318538666,-0.207323580980301,0.106902584433556,-0.972577810287476,-0.206553488969803,-0.0335961245000362,-0.977752268314362,-0.207055181264877,-0.245700597763062,0.677348494529724,-0.693419337272644,-0.313115119934082,0.657325744628906,-0.68547922372818,-0.307123869657516,0.659258842468262,-0.686332881450653,-0.313529044389725,0.659450650215149,-0.683245480060577,-0.245488032698631,0.681079626083374,-0.689830660820007,-0.207993671298027,0.691362857818604,-0.691921949386597,-0.307205468416214,0.660153448581696,-0.685435891151428,-0.263252526521683,0.660571098327637,-0.703095972537994,-0.246574968099594,0.660344839096069,-0.709327578544617,-0.245668172836304,0.677925884723663,-0.692866265773773,-0.241907119750977,0.67864453792572,-0.693485856056213,-0.206582024693489,0.684866666793823,-0.698771417140961,-0.262997001409531,0.661305129528046,-0.70250129699707,-0.312565714120865,0.662102401256561,-0.681119084358215,-0.246561855077744,0.66062343120575,-0.709072589874268,-0.245039641857147,0.691079795360565,-0.679973840713501,-0.244875490665436,0.691151201725006,-0.679960310459137,-0.313109874725342,0.659183621406555,-0.683695256710052,-0.312987923622131,0.659840881824493,-0.683116793632507,-0.263781130313873,0.659048199653625,-0.704325914382935,-0.290705144405365,0.659715175628662,-0.693012535572052,-0.311985313892365,0.665175795555115,-0.678385078907013,-0.518923223018646,0.571361541748047,-0.635818243026733,-0.244059786200523,0.687179565429688,-0.684265375137329,-0.363983005285263,0.660699307918549,-0.656500458717346,-0.312714070081711,0.661310195922852,-0.681820213794708,-0.290223807096481,0.660904705524445,-0.692080318927765,-0.513848900794983,0.554420232772827,-0.654658317565918,
  591. -0.312685966491699,0.661460399627686,-0.681687295436859,-0.435891628265381,0.601188361644745,-0.669754445552826,-0.422196686267853,0.673703670501709,-0.606525599956512,-0.312660813331604,0.661594748497009,-0.681568562984467,-0.360538095235825,0.668257892131805,-0.650725543498993,-0.17013318836689,0.984989523887634,-0.0291627496480942,-0.120986521244049,0.989317774772644,-0.0813184902071953,-0.268599420785904,0.960027694702148,0.0787485614418983,-0.104196131229401,0.992656171321869,-0.0614578947424889,-0.268663883209229,0.963211357593536,-0.00660818815231323,-0.313495814800262,0.949548184871674,0.00887943804264069,-0.0427780225872993,0.997943639755249,0.0477337464690208,0.0105286473408341,0.981364548206329,-0.191866382956505,-0.0363501869142056,0.999170303344727,0.0183687042444944,-0.311370730400085,0.946111738681793,-0.0889991223812103,-0.286871075630188,0.953163981437683,-0.0958302766084671,-0.161173775792122,0.978455185890198,-0.129029363393784,-0.202893882989883,0.962732315063477,-0.178831100463867,-0.19240790605545,0.951606631278992,-0.239633157849312,-0.240589737892151,0.964475631713867,0.109103374183178,-0.0993988662958145,0.993482351303101,-0.0557912141084671,-0.331824272871017,0.942697048187256,-0.0348586775362492,-0.303318679332733,0.952145874500275,-0.0376312993466854,-0.262025654315948,0.954717636108398,0.140914902091026,-0.248908951878548,0.963701844215393,0.0965558961033821,-0.138322800397873,0.963843166828156,-0.227756753563881,-0.287633121013641,0.957037806510925,0.0366855040192604,-0.438203454017639,0.896853387355804,0.0602633096277714,-0.290158063173294,0.956260144710541,0.0370790660381317,-0.135439619421959,0.956304252147675,0.259110689163208,-0.102036863565445,0.971761345863342,0.21276381611824,-0.197264671325684,0.917935132980347,0.344212085008621,-0.389361828565598,0.87565666437149,0.285697191953659,-0.154095590114594,0.960046529769897,0.233592450618744,-0.272991627454758,0.925773620605469,0.261569857597351,0.156768351793289,0.973621666431427,0.16578483581543,-0.0142953163012862,0.987193942070007,0.158882781863213,
  592. 0.207781225442886,0.963829278945923,0.166914075613022,0.154528111219406,0.970509827136993,0.185018390417099,-0.0211093928664923,0.987269520759583,0.157649725675583,-0.0142961023375392,0.987206101417542,0.158807247877121,0.205889597535133,0.97024405002594,0.12742093205452,-0.0142486710101366,0.986465394496918,0.163349613547325,0.0636001825332642,0.986398279666901,0.151570349931717,-0.0143039729446173,0.987327456474304,0.158050313591957,-0.0209405552595854,0.987418174743652,0.156738579273224,-0.155438333749771,0.979444921016693,0.128556087613106,0.0623724535107613,0.987380802631378,0.145563915371895,-0.0142503306269646,0.986491620540619,0.163191288709641,-0.117840863764286,0.975563049316406,0.185446247458458,-0.121042057871819,0.980623483657837,0.154034122824669,-0.0143285328522325,0.987703204154968,0.155682697892189,-0.157623574137688,0.975566148757935,0.153054222464561,0.163957685232162,-0.207076728343964,-0.964487969875336,-0.0170890260487795,-0.219282746315002,-0.975511729717255,0.20832858979702,-0.202962055802345,-0.956768333911896,0.161549046635628,-0.187402695417404,-0.968907713890076,-0.0235343016684055,-0.220837488770485,-0.975026667118073,-0.0170912761241198,-0.219802722334862,-0.975394606590271,0.206435725092888,-0.241945743560791,-0.948075175285339,-0.0170664396136999,-0.214122220873833,-0.976657748222351,0.0526287332177162,-0.224001660943031,-0.973166704177856,-0.0170947667211294,-0.2206110060215,-0.975212037563324,-0.0233535673469305,-0.221787571907043,-0.974815368652344,-0.15665902197361,-0.244728341698647,-0.956852078437805,0.051574245095253,-0.229096978902817,-0.972036361694336,-0.0170660242438316,-0.214027941226959,-0.976678490638733,-0.108052641153336,-0.192383378744125,-0.975352942943573,-0.110920637845993,-0.221208065748215,-0.968898177146912,-0.017101151868701,-0.222096875309944,-0.97487461566925,-0.158837765455246,-0.219988569617271,-0.962484180927277,0.164000943303108,-0.964403867721558,0.207434311509132,-0.0170906074345112,-0.975429475307465,0.219648152589798,0.208312705159187,-0.956695318222046,0.203322067856789,
  593. 0.161571741104126,-0.968868553638458,0.187585860490799,-0.0234993882477283,-0.974985897541046,0.221021041274071,-0.0170920938253403,-0.975351929664612,0.219992056488991,0.206416383385658,-0.947986304759979,0.242310345172882,-0.017068138346076,-0.976573288440704,0.214506953954697,0.0525520406663418,-0.973085463047028,0.224372744560242,-0.0170956961810589,-0.975163102149963,0.220827206969261,-0.0233138855546713,-0.974768757820129,0.221996083855629,-0.15664005279541,-0.95680159330368,0.244937986135483,0.0514902547001839,-0.97194516658783,0.229502245783806,-0.0170679073780775,-0.976584911346436,0.214454367756844,-0.108094818890095,-0.975265622138977,0.192801669239998,-0.110971421003342,-0.968774080276489,0.221725612878799,-0.0171033851802349,-0.974755585193634,0.222618564963341,-0.158793434500694,-0.96237313747406,0.220505118370056,0.153958708047867,-0.304177641868591,-0.940091848373413,-0.0174279119819403,-0.316439688205719,-0.948452532291412,0.20275291800499,-0.298947036266327,-0.932481646537781,0.151725143194199,-0.285978645086288,-0.946147799491882,-0.0224771462380886,-0.317613989114761,-0.947953701019287,-0.0174289494752884,-0.316835820674896,-0.948320329189301,0.201086103916168,-0.335554867982864,-0.920308232307434,-0.0174136515706778,-0.311094522476196,-0.950219511985779,0.0598648712038994,-0.321518659591675,-0.945008993148804,-0.0174311399459839,-0.317677527666092,-0.948038578033447,-0.0222938433289528,-0.318556517362595,-0.947641730308533,-0.162236988544464,-0.340512245893478,-0.926137447357178,0.0587070621550083,-0.327050089836121,-0.943181693553925,-0.0174134653061628,-0.311027079820633,-0.950241506099701,-0.11209362745285,-0.288410484790802,-0.950922966003418,-0.115041390061378,-0.317711770534515,-0.941182613372803,-0.0174354035407305,-0.319329291582108,-0.947483479976654,-0.164372116327286,-0.315718114376068,-0.934507369995117,0.15027166903019,-0.986563682556152,0.0641133561730385,-0.0162831004709005,-0.997151136398315,0.0736513808369637,0.210518583655357,-0.975737571716309,0.0601524636149406,0.148068979382515,-0.987936198711395,0.0453607477247715,
  594. -0.0182502493262291,-0.997075021266937,0.0742182061076164,-0.0162846948951483,-0.997133493423462,0.0738890394568443,0.208590477705002,-0.972839772701263,0.100363500416279,-0.0162482056766748,-0.99752002954483,0.0684819221496582,0.0646570101380348,-0.994664788246155,0.0803824439644814,-0.0162902772426605,-0.997071385383606,0.0747223943471909,-0.0180907621979713,-0.997013807296753,0.0750743374228477,-0.157699957489967,-0.982243955135345,0.101625435054302,0.0634269416332245,-0.994225978851318,0.0865549221634865,-0.0162483528256416,-0.997518539428711,0.0685036852955818,-0.116186238825321,-0.992199540138245,0.0451775193214417,-0.119451127946377,-0.989876866340637,0.0766509771347046,-0.016303388401866,-0.996922075748444,0.0766861885786057,-0.159840762615204,-0.984180986881256,0.0764114931225777,0.150271564722061,-0.986563861370087,0.0641123354434967,-0.016283081844449,-0.99715131521225,0.0736487507820129,0.210518598556519,-0.975737571716309,0.0601520277559757,0.1480702906847,-0.987935543060303,0.0453717634081841,-0.0182485412806273,-0.99707442522049,0.0742273852229118,-0.0162847582250834,-0.997132778167725,0.073898546397686,0.208587229251862,-0.97283411026001,0.100426182150841,-0.016248682513833,-0.997515201568604,0.0685523673892021,0.0646438002586365,-0.994660377502441,0.0804488062858582,-0.0162903107702732,-0.997071027755737,0.0747273042798042,-0.0180898848921061,-0.997013568878174,0.075079046189785,-0.157699748873711,-0.982243657112122,0.101627521216869,0.0634174793958664,-0.994222462177277,0.0866023525595665,-0.0162486936897039,-0.997515082359314,0.0685538277029991,-0.116191431879997,-0.992196619510651,0.0452268831431866,-0.119447946548462,-0.989879608154297,0.0766198635101318,-0.0163031779229641,-0.99692440032959,0.076654739677906,-0.159843325614929,-0.984182953834534,0.0763805657625198,0.161339402198792,0.873678803443909,0.458971530199051,-0.0104089099913836,0.88943612575531,0.456940859556198,0.20237398147583,0.865924835205078,0.457404613494873,0.158920779824257,0.864533126354218,0.476788014173508,-0.0162721052765846,0.889628887176514,0.456394225358963,
  595. -0.0104029634967446,0.889244794845581,0.457313299179077,0.200514197349548,0.883701384067535,0.422925502061844,-0.010353752411902,0.887657344341278,0.460388153791428,0.0550150834023952,0.890808284282684,0.451036483049393,-0.0104124844074249,0.889551162719727,0.456716895103455,-0.0161199197173119,0.889997541904449,0.455680310726166,-0.157313480973244,0.891391158103943,0.425057828426361,0.0539405681192875,0.893303334712982,0.446205854415894,-0.0103604411706328,0.887873470783234,0.459971040487289,-0.116084858775139,0.870512187480927,0.478260099887848,-0.119146205484867,0.884917080402374,0.450251013040543,-0.0104567781090736,0.890973150730133,0.453935533761978,-0.159533068537712,0.879942357540131,0.447493672370911,0.164511889219284,-0.984888255596161,0.0541388541460037,-0.0162208247929811,-0.997787952423096,0.0644687190651894,0.210902988910675,-0.976168215274811,0.0511425025761127,0.162126183509827,-0.986188411712646,0.0338752381503582,-0.0198857709765434,-0.997658967971802,0.0654310509562492,-0.0162232089787722,-0.997765302658081,0.0648170337080956,0.209040507674217,-0.973607838153839,0.0915973633527756,-0.0161861404776573,-0.998100757598877,0.0594383776187897,0.0580836459994316,-0.995826244354248,0.0704025849699974,-0.0162288919091225,-0.997710883617401,0.0656475499272347,-0.019718499854207,-0.997602880001068,0.0663303732872009,-0.15774792432785,-0.983118653297424,0.0927000045776367,0.05692458152771,-0.99547952413559,0.0760267078876495,-0.0161859784275293,-0.998102247714996,0.0594145990908146,-0.114088028669357,-0.992795825004578,0.0366116315126419,-0.117067061364651,-0.990819811820984,0.0676132962107658,-0.0162420384585857,-0.997582018375397,0.0675747990608215,-0.160053566098213,-0.98480349779129,0.0674177184700966,-0.233288496732712,0.86994194984436,0.43448531627655,-0.321188032627106,0.86653470993042,0.382041662931442,-0.25791808962822,0.869912147521973,0.420394122600555,-0.231848388910294,0.875194549560547,0.424594879150391,-0.405788093805313,0.795040190219879,0.450829327106476,-0.329100906848907,0.834951281547546,0.441077083349228,
  596. -0.257652431726456,0.87029105424881,0.419772237539291,-0.208131223917007,0.874103248119354,0.438890606164932,-0.232584804296494,0.872536063194275,0.42963382601738,-0.412191033363342,0.804984152317047,0.426730632781982,-0.231061175465584,0.877975046634674,0.419249981641769,-0.167403444647789,0.895186066627502,0.413059413433075,-0.246459543704987,0.871397852897644,0.424173951148987,-0.232559591531754,0.872628152370453,0.429460465908051,-0.207996919751167,0.874319911003113,0.438522547483444,-0.246330335736275,0.874181151390076,0.418483704328537,-0.169948533177376,0.9003746509552,0.400553405284882,-0.230424046516418,0.880180418491364,0.414954662322998,-0.246455684304237,0.871484756469727,0.423997581005096,-0.207975745201111,0.874354004859924,0.438464492559433,-0.241934269666672,0.871900618076324,0.425743132829666,-0.164675086736679,0.889509320259094,0.426210403442383,-0.246387273073196,0.872985303401947,0.420939445495605,-0.214092582464218,0.880287945270538,0.423388063907623,-0.379686325788498,0.842648267745972,0.381814390420914,-0.246449396014214,0.87162584066391,0.423711091279984,-0.241727709770203,0.872314214706421,0.425012469291687,-0.246393591165543,0.872849762439728,0.421216696500778,-0.371730506420136,0.822807312011719,0.429889261722565,-0.215148508548737,0.882633328437805,0.417934715747833,-0.372299164533615,0.823940336704254,0.427218526601791,-0.246465966105461,0.871252775192261,0.424468100070953,-0.373742818832397,0.823293566703796,0.42720490694046,-0.212427482008934,0.505087494850159,0.83651739358902,-0.238779038190842,0.503420531749725,0.830392956733704,-0.199249908328056,0.505779027938843,0.839337289333344,-0.199283003807068,0.509090840816498,0.837324917316437,-0.23766764998436,0.494285762310028,0.836179196834564,-0.229409083724022,0.497555166482925,0.836546659469604,-0.19887787103653,0.479037493467331,0.854968249797821,-0.157866820693016,0.473976671695709,0.866270244121552,-0.217013895511627,0.481007367372513,0.849433302879334,-0.283055633306503,0.474006503820419,0.833784937858582,-0.199233382940292,0.504223346710205,0.840276777744293,
  597. -0.228231400251389,0.494289010763168,0.838802039623261,-0.166399404406548,0.448584794998169,0.878113269805908,-0.198417529463768,0.456203103065491,0.867472887039185,-0.250271588563919,0.467486202716827,0.847833037376404,-0.252531498670578,0.441530466079712,0.860975563526154,-0.19868129491806,0.468493849039078,0.860836505889893,-0.269398272037506,0.432655483484268,0.860368430614471,-0.249513238668442,0.475604623556137,0.843530356884003,-0.159869685769081,0.455466330051422,0.875780820846558,-0.163792073726654,0.456430047750473,0.874553501605988,-0.429215013980865,0.278856962919235,0.859076976776123,-0.259062677621841,0.341332137584686,0.903536915779114,-0.240244761109352,0.347337871789932,0.906442940235138,-0.160491168498993,0.453976988792419,0.876440227031708,-0.249056622385979,0.480367630720139,0.840962409973145,-0.270567148923874,0.486164301633835,0.830925822257996,-0.332195222377777,-0.148414850234985,0.931460857391357,-0.251613974571228,-0.122297197580338,0.96006977558136,-0.300771951675415,-0.138268977403641,0.943619608879089,-0.211152508854866,0.872021019458771,0.441581249237061,-0.237715542316437,0.86124724149704,0.449159801006317,-0.296579867601395,0.834304571151733,0.464732527732849,-0.383695662021637,0.847345232963562,0.367129325866699,-0.210067301988602,0.865275144577026,0.455159991979599,-0.300772041082382,0.860172808170319,0.411872506141663,-0.237322136759758,0.860727250576019,0.450363039970398,-0.210704311728477,0.869222521781921,0.447276175022125,-0.193875640630722,0.874214351177216,0.445153325796127,-0.209662660956383,0.8627849817276,0.460047423839569,-0.391478598117828,0.834046125411987,0.38873079419136,-0.155074909329414,0.864846885204315,0.47748464345932,-0.232213214039803,0.862402856349945,0.449820518493652,-0.193772345781326,0.874050498008728,0.445520102977753,-0.210686683654785,0.869112849235535,0.447497457265854,-0.158208921551704,0.858112812042236,0.48847958445549,-0.232381969690323,0.8602215051651,0.453891605138779,-0.20923724770546,0.860180556774139,0.465090751647949,-0.233762830495834,0.861801624298096,0.450169801712036,
  598. -0.193749606609344,0.874014377593994,0.445600837469101,-0.232221037149429,0.862302958965302,0.450007677078247,-0.2323137819767,0.861112654209137,0.452233642339706,-0.151746138930321,0.871771514415741,0.465819120407104,-0.194317638874054,0.866895258426666,0.459057062864304,-0.365603685379028,0.817242324352264,0.445476174354553,-0.233794808387756,0.861873030662537,0.450016498565674,-0.232221484184265,0.862297534942627,0.450017988681793,-0.351780593395233,0.845043540000916,0.402680784463882,-0.23228432238102,0.861493408679962,0.451523065567017,-0.195871353149414,0.863577902317047,0.464615494012833,-0.232156842947006,0.863113045692444,0.448485314846039,-0.352471560239792,0.843605101108551,0.405085444450378,-0.356713145971298,0.842634856700897,0.403388500213623,0.107286386191845,-0.086946077644825,0.990419149398804,-0.0638156160712242,-0.090396448969841,0.993859171867371,0.160393446683884,-0.0853370055556297,0.983357310295105,0.10646940022707,-0.106354795396328,0.98861163854599,-0.07369165122509,-0.0892614424228668,0.993278384208679,-0.0638255998492241,-0.090279683470726,0.993869125843048,0.155866533517838,-0.0459929257631302,0.986706793308258,-0.0633842945098877,-0.0954321622848511,0.993415951728821,0.00601879041641951,-0.0802296847105026,0.996758282184601,-0.0638996735215187,-0.0894124954938889,0.993942737579346,-0.073566161096096,-0.0881493613123894,0.993387043476105,-0.206870049238205,-0.0697654485702515,0.97587788105011,0.00456416560336947,-0.0750343948602676,0.997170567512512,-0.0633792355656624,-0.0954911634325981,0.993410587310791,-0.15539288520813,-0.122574329376221,0.980218648910522,-0.160663455724716,-0.0928184986114502,0.982635259628296,-0.0640702173113823,-0.0874138325452805,0.994109570980072,-0.207222789525986,-0.0951351374387741,0.973657071590424,0.0984076410531998,0.985403060913086,-0.138913318514824,-0.0705967396497726,0.984786808490753,-0.158779874444008,0.145327597856522,0.980455458164215,-0.132615879178047,0.0949080213904381,0.988255798816681,-0.119762226939201,-0.0744493305683136,0.984393715858459,-0.159456714987755,
  599. -0.0706072822213173,0.984814345836639,-0.15860415995121,0.145980998873711,0.974447011947632,-0.17071245610714,-0.0708837062120438,0.985526978969574,-0.153987184166908,0.0018534695263952,0.987042784690857,-0.160446539521217,-0.0705619677901268,0.984695851802826,-0.159358337521553,-0.0742417871952057,0.984275698661804,-0.160280004143715,-0.204522505402565,0.959935009479523,-0.191560328006744,0.00106005731504411,0.986098229885101,-0.166160434484482,-0.0708697363734245,0.985491394996643,-0.154221177101135,-0.172590479254723,0.975585579872131,-0.135814115405083,-0.173727110028267,0.970579922199249,-0.16671396791935,-0.0704222545027733,0.984327554702759,-0.161678567528725,-0.208063408732414,0.963579535484314,-0.168000504374504,0.0810772255063057,0.960313737392426,0.26687827706337,-0.0884902253746986,0.963592648506165,0.252306997776031,0.133934885263443,0.95353764295578,0.269865691661835,0.0780383422970772,0.955121099948883,0.285751461982727,-0.098195880651474,0.963142812252045,0.250426888465881,-0.0884980335831642,0.963515162467957,0.252600014209747,0.133377850055695,0.963844001293182,0.230684027075768,-0.0885929837822914,0.962558269500732,0.256188899278641,-0.0163393542170525,0.968302071094513,0.249247133731842,-0.0884808972477913,0.963684976100922,0.2519571185112,-0.0980014204978943,0.963387668132782,0.249559879302979,-0.232820093631744,0.948971092700958,0.212717115879059,-0.0172965358942747,0.969750881195068,0.243483617901802,-0.0885820016264915,0.962670266628265,0.255771607160568,-0.188153833150864,0.944074213504791,0.270780295133591,-0.189912274479866,0.951626420021057,0.241537839174271,-0.0884060561656952,0.964417695999146,0.249164327979088,-0.235883697867393,0.942392587661743,0.237181648612022,0.242422237992287,-0.805167078971863,-0.541237056255341,0.0696343928575516,-0.832250356674194,-0.550009369850159,0.291901350021362,-0.79248970746994,-0.535493910312653,0.240339368581772,-0.794384062290192,-0.557844996452332,0.0650775656104088,-0.832993745803833,-0.549441874027252,0.0696313604712486,-0.832334756851196,-0.549882113933563,
  600. 0.289712905883789,-0.814837396144867,-0.502102017402649,0.0697310790419579,-0.829524278640747,-0.554100215435028,0.147016435861588,-0.82925933599472,-0.539180099964142,0.0696153417229652,-0.832779586315155,-0.549210250377655,0.065236434340477,-0.833480596542358,-0.548684120178223,-0.0744651407003403,-0.847053706645966,-0.526265025138855,0.145759180188179,-0.832671105861664,-0.534240901470184,0.0697294771671295,-0.829569935798645,-0.55403208732605,-0.0303399376571178,-0.817772686481476,-0.574741005897522,-0.0337204821407795,-0.835272252559662,-0.548801600933075,0.0695726573467255,-0.83395653963089,-0.547426879405975,-0.0763428658246994,-0.833211660385132,-0.547658860683441
  601. }
  602. BinormalsW: *3783 {
  603. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  604. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  605. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  606. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  607. }
  608. }
  609. LayerElementBinormal: 1 {
  610. Version: 102
  611. Name: "LightMapUV"
  612. MappingInformationType: "ByPolygonVertex"
  613. ReferenceInformationType: "Direct"
  614. Binormals: *11349 {
  615. a: 0.187959879636765,-0.969018280506134,0.160233065485954,0.188847094774246,-0.96879255771637,0.160555049777031,-0.0164909940212965,-0.996346116065979,0.0838006287813187,0.206435427069664,-0.84798002243042,-0.488174676895142,0.191440612077713,-0.852136135101318,-0.48704668879509,0.258469551801682,-0.831824362277985,-0.491183906793594,0.168232321739197,-0.910149276256561,0.378584504127502,0.0457469113171101,-0.936394453048706,0.347954869270325,-0.104549542069435,-0.947303295135498,0.302796840667725,0.208175808191299,-0.850833714008331,-0.482436299324036,0.154339641332626,-0.867258250713348,-0.473331332206726,0.191949039697647,-0.856098115444183,-0.479845553636551,0.112128861248493,-0.899010479450226,-0.423328906297684,0.194410547614098,-0.875995934009552,-0.441401898860931,0.167168706655502,-0.884404420852661,-0.435756325721741,0.172304794192314,-0.890914440155029,-0.420217156410217,0.124239042401314,-0.904634296894073,-0.407678127288818,0.115881286561489,-0.906766355037689,-0.405396580696106,0.166950941085815,-0.985664308071136,0.0243594497442245,0.196024760603905,-0.979865729808807,0.0379143543541431,0.104009926319122,-0.994564712047577,-0.00479344883933663,0.12569485604763,-0.925750911235809,-0.356631815433502,0.138816252350807,-0.92417585849762,-0.355849802494049,0.19862511754036,-0.914886832237244,-0.351468771696091,0.129595533013344,-0.960080146789551,-0.247893393039703,0.0900630652904511,-0.962486326694489,-0.255946844816208,0.245019763708115,-0.943815290927887,-0.221761286258698,0.189763054251671,-0.870094180107117,-0.454891413450241,0.301905542612076,-0.848726153373718,-0.434185445308685,0.141503691673279,-0.87561571598053,-0.46181583404541,0.116945400834084,-0.924484848976135,-0.362838447093964,-0.00922785699367523,-0.910954475402832,-0.412403672933578,0.157206147909164,-0.925192952156067,-0.345404773950577,0.0335022322833538,-0.866118550300598,-0.498714596033096,0.138828694820404,-0.881678402423859,-0.45096543431282,0.0803606659173965,-0.874491631984711,-0.478337287902832,0.121320970356464,-0.916840851306915,-0.380373656749725,
  616. 0.140620023012161,-0.914561808109283,-0.379213362932205,0.0643353909254074,-0.921526610851288,-0.382948756217957,0.0787667781114578,-0.879758894443512,-0.468849867582321,0.171020075678825,-0.885228276252747,-0.432577222585678,0.0275053381919861,-0.873026847839355,-0.486895889043808,0.124038577079773,-0.922684192657471,-0.365059554576874,0.0728801339864731,-0.926953315734863,-0.368029952049255,0.139451310038567,-0.920911908149719,-0.363970726728439,0.0601425915956497,-0.931785881519318,-0.357991635799408,0.13947120308876,-0.920807600021362,-0.364226788282394,0.0727499425411224,-0.930446028709412,-0.359134703874588,0.111039638519287,-0.919802784919739,-0.376341640949249,0.073087602853775,-0.920776784420013,-0.38318207859993,0.122221007943153,-0.91925311088562,-0.374213457107544,0.108602404594421,-0.913712799549103,-0.391579508781433,0.118250742554665,-0.911525785923004,-0.393875062465668,0.128237202763557,-0.909160017967224,-0.396211206912994,0.0727692395448685,-0.929944753646851,-0.360426932573318,0.108320534229279,-0.925174951553345,-0.363755404949188,0.0603380501270294,-0.931325495243073,-0.359155029058456,0.073080837726593,-0.920991718769073,-0.3826664686203,0.111141569912434,-0.920053660869598,-0.375697880983353,0.108534164726734,-0.920162081718445,-0.376194268465042,0.12825146317482,-0.909175932407379,-0.396170020103455,0.0621667355298996,-0.923032701015472,-0.379665553569794,0.108622997999191,-0.913764953613281,-0.391451984643936,0.108644664287567,-0.917298972606659,-0.383091479539871,0.110002048313618,-0.917231738567352,-0.38286480307579,0.0602191388607025,-0.918553829193115,-0.390682190656662,0.0636167153716087,-0.926293253898621,-0.371394336223602,0.130643725395203,-0.911821842193604,-0.389246910810471,0.041766744107008,-0.929994940757751,-0.365191578865051,0.0415364466607571,-0.929723143577576,-0.365909546613693,-0.0615216791629791,-0.93929660320282,-0.337545692920685,0.0636067464947701,-0.926271021366119,-0.371451437473297,-0.0739498659968376,-0.905944108963013,-0.416889488697052,0.108685731887817,-0.91617888212204,-0.385750830173492,
  617. 0.0593535490334034,-0.916526973247528,-0.395544469356537,-0.0622589252889156,-0.937547326087952,-0.342240929603577,0.040461216121912,-0.928446233272552,-0.369256913661957,-0.107235781848431,-0.938178837299347,-0.329121440649033,-0.115466490387917,-0.923276960849762,-0.366370260715485,-0.221888273954391,-0.909383416175842,-0.351834297180176,-0.0668540894985199,-0.926007747650146,-0.371537655591965,-0.130173355340958,-0.912732899188995,-0.38726419210434,0.108557276427746,-0.919580340385437,-0.377607375383377,-0.0692600905895233,-0.91951709985733,-0.386899709701538,-0.221794739365578,-0.91354513168335,-0.340943396091461,-0.129933282732964,-0.92588484287262,-0.35476016998291,-0.0654415562748909,-0.929673194885254,-0.362526059150696,-0.221912920475006,-0.887393176555634,-0.404089152812958,-0.0487475953996181,-0.917414367198944,-0.394936144351959,-0.13022643327713,-0.906878769397736,-0.400764286518097,-0.051236093044281,-0.926280975341797,-0.373334318399429,0.10850827395916,-0.920804083347321,-0.374627590179443,-0.130058899521828,-0.920222699642181,-0.36915448307991,-0.0466477610170841,-0.909618139266968,-0.412818223237991,-0.221796676516533,-0.880937993526459,-0.418036490678787,-0.118312552571297,-0.901391863822937,-0.416527152061462,0.0612977780401707,-0.929039359092712,-0.364867717027664,0.108388498425484,-0.923646628856659,-0.367598682641983,0.119398951530457,-0.922080338001251,-0.368119269609451,-0.0534560456871986,-0.933838963508606,-0.353676706552505,0.119346484541893,-0.92227041721344,-0.367659837007523,0.108379721641541,-0.923847258090973,-0.367096751928329,0.19635608792305,-0.850975096225739,-0.487119823694229,0.091552309691906,-0.833452522754669,-0.544954240322113,0.135759711265564,-0.842305600643158,-0.521623015403748,-0.109273888170719,-0.883154273033142,-0.456177294254303,0.0946866199374199,-0.908108770847321,-0.407888412475586,-0.0430649220943451,-0.895673274993896,-0.442622631788254,0.122821316123009,-0.908923089504242,-0.398464292287827,-0.0461487770080566,-0.90772408246994,-0.417021960020065,0.0931067913770676,-0.910629570484161,-0.402597635984421,
  618. 0.132321387529373,-0.863133013248444,-0.48733201622963,0.120127700269222,-0.861919522285461,-0.492609679698944,0.18526503443718,-0.866629838943481,-0.46328142285347,0.105403766036034,-0.88996034860611,-0.44368976354599,-0.0985659956932068,-0.859910726547241,-0.500837624073029,0.140100181102753,-0.891031086444855,-0.431781768798828,0.137101262807846,-0.895642399787903,-0.423116952180862,0.163201376795769,-0.894746780395508,-0.415684670209885,0.102067440748215,-0.895808577537537,-0.43256151676178,0.187715128064156,-0.655322849750519,0.731652319431305,0.181563407182693,-0.657921195030212,0.730872392654419,-0.0144317876547575,-0.723863661289215,0.689792096614838,0.201198101043701,-0.967767298221588,0.151478812098503,0.185895010828972,-0.970264732837677,0.155014321208,0.258747577667236,-0.956075668334961,0.137728020548821,0.161042407155037,-0.475181043148041,0.865025043487549,0.0444001033902168,-0.51263952255249,0.857455193996429,-0.102046400308609,-0.54852831363678,0.829881429672241,0.203089743852615,-0.966297805309296,0.158187195658684,0.149172857403755,-0.97310745716095,0.17552587389946,0.186391487717628,-0.96875274181366,0.163634985685349,0.112949639558792,-0.966014444828033,0.232505157589912,0.188648998737335,-0.960121214389801,0.206346347928047,0.16198556125164,-0.962916433811188,0.21576064825058,0.167154371738434,-0.958209276199341,0.232151791453362,0.126681238412857,-0.960545897483826,0.247595727443695,0.116711646318436,-0.960842967033386,0.2513148188591,0.165906935930252,-0.753767490386963,0.635853350162506,0.188828825950623,-0.743610620498657,0.64139449596405,0.104707002639771,-0.778251171112061,0.619162023067474,0.126621007919312,-0.94501668214798,0.301513761281967,0.141257539391518,-0.94307678937912,0.30108568072319,0.192353948950768,-0.934644520282745,0.299064517021179,0.131495594978333,-0.903452157974243,0.408023566007614,0.0946889594197273,-0.910009503364563,0.403629392385483,0.244160667061806,-0.875046372413635,0.417946696281433,0.190007835626602,-0.963206708431244,0.19007870554924,0.301327645778656,-0.93381941318512,0.192829102277756,
  619. 0.146375387907028,-0.971133828163147,0.188343673944473,0.121446132659912,-0.946967601776123,0.297494798898697,-0.0144598260521889,-0.968978404998779,0.246722042560577,0.158017635345459,-0.937440991401672,0.310217499732971,0.0285378806293011,-0.988095283508301,0.151173084974289,0.143313392996788,-0.968769371509552,0.202354252338409,0.0797622054815292,-0.981458127498627,0.174292460083961,0.126241222023964,-0.952445149421692,0.277328968048096,0.143170610070229,-0.950186848640442,0.276852637529373,0.0640339553356171,-0.958333849906921,0.278380960226059,0.0781927183270454,-0.979612529277802,0.185054510831833,0.168592751026154,-0.961695909500122,0.216142266988754,0.0223361141979694,-0.986023008823395,0.165105283260345,0.124960146844387,-0.947901725769043,0.293031275272369,0.0698763206601143,-0.953432381153107,0.293400794267654,0.141928747296333,-0.94560170173645,0.292734950780869,0.0599256716668606,-0.95069819688797,0.304272919893265,0.141978949308395,-0.945789158344269,0.292104065418243,0.0697405189275742,-0.950457274913788,0.302930980920792,0.110693365335464,-0.952877521514893,0.282438606023788,0.070088267326355,-0.958205044269562,0.277364104986191,0.123167052865028,-0.950908899307251,0.283905297517776,0.108251571655273,-0.957644402980804,0.266831368207932,0.119091108441353,-0.95734041929245,0.263280510902405,0.130674690008163,-0.956877112388611,0.259442359209061,0.0697592496871948,-0.95086407661438,0.301647692918777,0.110135391354561,-0.949030518531799,0.295315861701965,0.0601163022220135,-0.951066195964813,0.303082674741745,0.0700816214084625,-0.958052754402161,0.27789106965065,0.110795736312866,-0.952670633792877,0.283095568418503,0.110352523624897,-0.952738165855408,0.283041417598724,0.130684122443199,-0.956868231296539,0.259470343589783,0.0647792816162109,-0.957513988018036,0.281017333269119,0.108271956443787,-0.95760589838028,0.266961216926575,0.110471792519093,-0.954846560955048,0.275797128677368,0.109643667936325,-0.954965651035309,0.27571514248848,0.0630297809839249,-0.960570156574249,0.270799189805985,0.0662297755479813,-0.954884707927704,0.289497852325439,
  620. 0.133059248328209,-0.954598784446716,0.266526609659195,0.0435037985444069,-0.95389986038208,0.296955674886703,0.0432861931622028,-0.954119920730591,0.296279698610306,-0.0592668019235134,-0.944088935852051,0.32432034611702,0.0662340149283409,-0.954876780509949,0.289522647857666,-0.0715015828609467,-0.967479050159454,0.242635235190392,0.110514283180237,-0.955611944198608,0.273116320371628,0.0621866621077061,-0.961998641490936,0.265878856182098,-0.0599982514977455,-0.945656716823578,0.319583684206009,0.0421955548226833,-0.955214560031891,0.292890518903732,-0.103069618344307,-0.938405990600586,0.329804420471191,-0.111372038722038,-0.949844419956207,0.292219012975693,-0.221420675516129,-0.929482519626617,0.295017063617706,-0.0645134299993515,-0.954867899417877,0.289940178394318,-0.129726484417915,-0.954208314418793,0.269550770521164,0.110380783677101,-0.953232884407043,0.281359553337097,-0.0668675526976585,-0.959344506263733,0.274202227592468,-0.221356928348541,-0.925895690917969,0.306134432554245,-0.129510372877121,-0.944125771522522,0.303073763847351,-0.063106507062912,-0.952084839344025,0.299252569675446,-0.221301630139351,-0.945059239864349,0.240600436925888,-0.0470236837863922,-0.962646722793579,0.266646087169647,-0.129769876599312,-0.958098828792572,0.255355477333069,-0.0495596379041672,-0.956099510192871,0.288821071386337,0.110331155359745,-0.952366232872009,0.284298568964005,-0.129625454545021,-0.948724687099457,0.288303315639496,-0.0448625758290291,-0.9677694439888,0.2478097230196,-0.221147060394287,-0.94876354932785,0.225702539086342,-0.119134910404682,-0.963562846183777,0.239485919475555,0.0610555522143841,-0.952860355377197,0.297202497720718,0.110205963253975,-0.950219035148621,0.291442066431046,0.125706270337105,-0.948896944522858,0.289469718933105,-0.0518335178494453,-0.949722766876221,0.308771818876266,0.125658437609673,-0.948768317699432,0.289911508560181,0.110196940600872,-0.950066387653351,0.29194250702858,0.194334656000137,-0.969107627868652,0.151870012283325,0.0907399505376816,-0.991194069385529,0.096439354121685,
  621. 0.141383409500122,-0.982205808162689,0.123622998595238,-0.109831467270851,-0.974214196205139,0.197088181972504,0.0908098444342613,-0.964078962802887,0.249610334634781,-0.0412166640162468,-0.975488781929016,0.216154813766479,0.128944367170334,-0.95728611946106,0.258798748254776,-0.0443505942821503,-0.968922734260559,0.243355304002762,0.0890780761837959,-0.962585806846619,0.255917489528656,0.138087064027786,-0.97696727514267,0.162686914205551,0.116219356656075,-0.981220543384552,0.153945788741112,0.183037012815475,-0.96640157699585,0.180459395051003,0.101498536765575,-0.972398221492767,0.210094600915909,-0.0988433361053467,-0.984071016311646,0.14776423573494,0.140224546194077,-0.965089797973633,0.221221148967743,0.137196823954582,-0.963267803192139,0.230850785970688,0.160574972629547,-0.958505988121033,0.235546141862869,0.0981097370386124,-0.969929993152618,0.22273388504982,0.225807085633278,-0.909899353981018,0.347986161708832,0.222243428230286,-0.911198079586029,0.346880286931992,0.0238727778196335,-0.960065007209778,0.278756737709045,0.2404525578022,-0.919283211231232,-0.311610281467438,0.225311174988747,-0.923775792121887,-0.309633821249008,0.294811576604843,-0.901050388813019,-0.318110674619675,0.197951167821884,-0.811599791049957,0.549655437469482,0.0776256024837494,-0.847696244716644,0.524771690368652,-0.0663615688681602,-0.872430384159088,0.484212219715118,0.242312505841255,-0.92095160484314,-0.305176675319672,0.190408170223236,-0.936869204044342,-0.293293416500092,0.225929006934166,-0.926308989524841,-0.301509290933609,0.155762851238251,-0.958232879638672,-0.239849507808685,0.228820994496346,-0.938166081905365,-0.259779512882233,0.20385579764843,-0.945716798305511,-0.253105819225311,0.20923288166523,-0.948817789554596,-0.23657263815403,0.16117337346077,-0.961766541004181,-0.221423774957657,0.159632593393326,-0.962136745452881,-0.220930486917496,0.202734366059303,-0.954995036125183,0.216525435447693,0.230694681406021,-0.945848226547241,0.228366136550903,0.143287390470505,-0.971090912818909,0.190921917557716,
  622. 0.170126393437386,-0.971071600914001,-0.167562112212181,0.180232807993889,-0.969309031963348,-0.167200833559036,0.233709096908569,-0.958207309246063,-0.164981126785278,0.170895680785179,-0.983808398246765,-0.0539986900985241,0.136919185519218,-0.988737821578979,-0.0604216977953911,0.280574828386307,-0.959280848503113,-0.0325274169445038,0.225079849362373,-0.934638500213623,-0.275299787521362,0.335274428129196,-0.905701100826263,-0.259415805339813,0.186894908547401,-0.941668629646301,-0.279875725507736,0.162945225834847,-0.97168642282486,-0.171097472310066,0.029714047908783,-0.973826229572296,-0.225343078374863,0.193887621164322,-0.968252062797546,-0.157783314585686,0.0715471133589745,-0.94516932964325,-0.318647354841232,0.183802962303162,-0.946459114551544,-0.265389442443848,0.115933015942574,-0.947423934936523,-0.298240602016449,0.16778102517128,-0.966853618621826,-0.192467033863068,0.181978940963745,-0.964386880397797,-0.191941753029823,0.101349860429764,-0.975676119327545,-0.194382399320602,0.11448971927166,-0.950860738754272,-0.287673473358154,0.211290210485458,-0.945130169391632,-0.249169439077377,0.0657036304473877,-0.949850857257843,-0.305722653865814,0.168438360095024,-0.969806671142578,-0.176362365484238,0.105187959969044,-0.978222966194153,-0.178928256034851,0.180849805474281,-0.967676639556885,-0.17577052116394,0.0974630862474442,-0.981010317802429,-0.167689591646194,0.18089671432972,-0.967548012733459,-0.176429361104965,0.105131424963474,-0.980072259902954,-0.168540149927139,0.14792200922966,-0.970861554145813,-0.188539013266563,0.105255104601383,-0.974969327449799,-0.195847228169441,0.166728660464287,-0.968455910682678,-0.185188546776772,0.145459547638893,-0.968131601810455,-0.203869417309761,0.162125676870346,-0.96448415517807,-0.208532229065895,0.16518834233284,-0.963779807090759,-0.209383562207222,0.105139054358006,-0.979849755764008,-0.16982439160347,0.146037146449089,-0.973730027675629,-0.174708276987076,0.0976404398679733,-0.980785131454468,-0.168899446725845,0.105253480374813,-0.97507518529892,-0.195320248603821,
  623. 0.148029252886772,-0.970975816249847,-0.187865078449249,0.146209090948105,-0.971188545227051,-0.188190639019012,0.165203705430031,-0.963787138462067,-0.209337159991264,0.0962828174233437,-0.977161586284637,-0.18943327665329,0.145482167601585,-0.968157529830933,-0.203729897737503,0.146291315555573,-0.969724893569946,-0.195531517267227,0.14681738615036,-0.969661772251129,-0.195450335741043,0.093846395611763,-0.974606394767761,-0.203310698270798,0.0978266522288322,-0.97868674993515,-0.18056084215641,0.167648419737816,-0.964940905570984,-0.201948076486588,0.0792343318462372,-0.981423795223236,-0.174726456403732,0.0789822340011597,-0.981298744678497,-0.175540834665298,-0.0220683310180902,-0.988986968994141,-0.146347865462303,0.0977877676486969,-0.978649318218231,-0.180785164237022,-0.0347816497087479,-0.972413241863251,-0.230657264590263,0.146321281790733,-0.969136476516724,-0.198405563831329,0.0928898304700851,-0.973554491996765,-0.208718061447144,-0.0228168703615665,-0.988222718238831,-0.151311874389648,0.0778775066137314,-0.980742692947388,-0.179105818271637,-0.063403531908989,-0.988173305988312,-0.139619469642639,-0.071898341178894,-0.98136180639267,-0.178212404251099,-0.184870764613152,-0.968628227710724,-0.166078895330429,-0.0274929460138083,-0.982854545116425,-0.18232162296772,-0.0915175452828407,-0.975445091724396,-0.200328588485718,0.146225437521935,-0.970912873744965,-0.189595147967339,-0.0299515817314386,-0.979617536067963,-0.198626279830933,-0.184763967990875,-0.970556676387787,-0.154538065195084,-0.0909902527928352,-0.98194545507431,-0.165843084454536,-0.0260487645864487,-0.984622180461884,-0.172744438052177,-0.185028940439224,-0.957351744174957,-0.221905469894409,-0.0113297002390027,-0.978249669075012,-0.2071213722229,-0.0917055979371071,-0.972352683544159,-0.214756473898888,-0.0136802513152361,-0.982836782932281,-0.183969646692276,0.146187394857407,-0.971543788909912,-0.186365216970444,-0.0912370011210442,-0.979223132133484,-0.181101992726326,-0.00938649848103523,-0.974052846431732,-0.226126044988632,-0.18496909737587,-0.953790307044983,-0.236792057752609,
  624. -0.0763429030776024,-0.969946622848511,-0.231030911207199,0.0985317975282669,-0.979627311229706,-0.17499141395092,0.146092146635056,-0.972979247570038,-0.178797364234924,0.162739798426628,-0.970104277133942,-0.180037394165993,-0.0157871805131435,-0.986489117145538,-0.163064330816269,0.162694185972214,-0.970197379589081,-0.179576322436333,0.146085172891617,-0.973077476024628,-0.178267568349838,0.235819756984711,-0.921397566795349,-0.308894246816635,0.125734582543373,-0.919684410095215,-0.371983200311661,0.176796332001686,-0.922320306301117,-0.343611001968384,-0.0676597431302071,-0.959646224975586,-0.272949308156967,0.134681776165962,-0.965910077095032,-0.221085369586945,-0.00606280285865068,-0.966032028198242,-0.258351236581802,0.165775462985039,-0.963216006755829,-0.211502835154533,-0.00892168655991554,-0.972994983196259,-0.230653941631317,0.133219122886658,-0.967347860336304,-0.21561723947525,0.173981338739395,-0.935880064964294,-0.306364238262177,0.158893316984177,-0.936339378356934,-0.313083738088608,0.225158587098122,-0.932383060455322,-0.282781541347504,0.144933953881264,-0.954754054546356,-0.259690225124359,-0.0573806315660477,-0.945303082466125,-0.32110670208931,0.179828926920891,-0.952002882957459,-0.247693628072739,0.176949352025986,-0.954906761646271,-0.238415628671646,0.203754261136055,-0.951363861560822,-0.231064856052399,0.14177018404007,-0.958401799201965,-0.247724235057831,0.193083763122559,-0.981146216392517,-0.00840803049504757,0.183226883411407,-0.982992887496948,-0.0123662827536464,-0.0155069064348936,-0.995811104774475,-0.0901098176836967,0.204241141676903,-0.750946164131165,-0.627985298633575,0.185796543955803,-0.756158471107483,-0.627458393573761,0.265289604663849,-0.731538534164429,-0.628070652484894,0.163175821304321,-0.963239073753357,0.213410899043083,0.0416083000600338,-0.982997119426727,0.178845077753067,-0.102494478225708,-0.985617518424988,0.134361803531647,0.206025898456573,-0.754873633384705,-0.622670948505402,0.147562995553017,-0.773916482925415,-0.615856051445007,0.186318635940552,-0.761645138263702,-0.620630323886871,
  625. 0.114585965871811,-0.811168551445007,-0.573476850986481,0.188700795173645,-0.788045763969421,-0.585982859134674,0.160445556044579,-0.797480344772339,-0.581620454788208,0.165652975440025,-0.806728720664978,-0.567228138446808,0.127105325460434,-0.819236099720001,-0.559192657470703,0.118397638201714,-0.821859002113342,-0.557252168655396,0.163035437464714,-0.975292563438416,-0.149076774716377,0.190199375152588,-0.972321450710297,-0.135703071951866,0.102516621351242,-0.978654026985168,-0.178119823336601,0.128586024045944,-0.849452435970306,-0.511757969856262,0.137383326888084,-0.848497748374939,-0.51105523109436,0.192681089043617,-0.840924739837646,-0.505687296390533,0.128117635846138,-0.902521073818207,-0.411146730184555,0.0941472202539444,-0.903397679328918,-0.418340742588043,0.241158381104469,-0.89157509803772,-0.383322954177856,0.186828106641769,-0.778187274932861,-0.599599719047546,0.298565357923508,-0.76110702753067,-0.575825393199921,0.145034655928612,-0.781864762306213,-0.606343507766724,0.120563313364983,-0.847815871238709,-0.51640373468399,-0.0132978977635503,-0.824516534805298,-0.565681576728821,0.15474271774292,-0.850959658622742,-0.50191867351532,0.029384158551693,-0.765243470668793,-0.643069922924042,0.142116159200668,-0.790557861328125,-0.595668792724609,0.0751475915312767,-0.776949107646942,-0.625062346458435,0.125190258026123,-0.836495876312256,-0.533481061458588,0.139200091362,-0.83499801158905,-0.532354891300201,0.0590535402297974,-0.841293573379517,-0.537343382835388,0.0735097676515579,-0.78410667181015,-0.616257309913635,0.172222301363945,-0.796785175800323,-0.579200208187103,0.0232501905411482,-0.774325251579285,-0.632360517978668,0.126901715993881,-0.844993591308594,-0.519501507282257,0.0715284198522568,-0.849023759365082,-0.52349054813385,0.138025283813477,-0.843863189220428,-0.518501698970795,0.0548440963029861,-0.856044471263886,-0.513984501361847,0.138031259179115,-0.843819260597229,-0.518571496009827,0.0714157670736313,-0.854097366333008,-0.515186965465546,0.109723255038261,-0.840490996837616,-0.530599594116211,
  626. 0.0717043206095696,-0.840217232704163,-0.537488102912903,0.125124529004097,-0.840243518352509,-0.527574241161346,0.10729356110096,-0.832179188728333,-0.544027507305145,0.12083362787962,-0.828589022159576,-0.546662092208862,0.131123304367065,-0.825743615627289,-0.548592925071716,0.0714320465922356,-0.853387594223022,-0.516359567642212,0.104395397007465,-0.84857302904129,-0.51867663860321,0.0550254657864571,-0.855425715446472,-0.514994263648987,0.0716987401247025,-0.840516686439514,-0.537020444869995,0.109828442335129,-0.840848088264465,-0.530011475086212,0.104665502905846,-0.840877294540405,-0.531009078025818,0.131133466959,-0.825760006904602,-0.548565864562988,0.0656573697924614,-0.842318415641785,-0.534966170787811,0.107315838336945,-0.832255959510803,-0.543905735015869,0.104794159531593,-0.836902439594269,-0.537226796150208,0.108650282025337,-0.836835026741028,-0.536565184593201,0.063957467675209,-0.836830735206604,-0.543712973594666,0.0671083182096481,-0.846947550773621,-0.527424275875092,0.133507639169693,-0.829555511474609,-0.542230188846588,0.0375667251646519,-0.853322148323059,-0.520028829574585,0.0372923463582993,-0.852859616279602,-0.520806849002838,-0.0614565014839172,-0.866419076919556,-0.495521038770676,0.0671171844005585,-0.846975684165955,-0.527378022670746,-0.0731870457530022,-0.819906890392303,-0.567799627780914,0.104845874011517,-0.835239708423615,-0.539798200130463,0.0631161481142044,-0.834089338779449,-0.54800683259964,-0.0621562302112579,-0.863874971866608,-0.499856740236282,0.0361890308558941,-0.850992619991302,-0.523929536342621,-0.100396983325481,-0.86646443605423,-0.489039808511734,-0.108436763286591,-0.84602028131485,-0.522006809711456,-0.222495391964912,-0.834383487701416,-0.504281580448151,-0.0665027797222137,-0.847432434558868,-0.526721656322479,-0.12445542216301,-0.832390964031219,-0.540033459663391,0.10468490421772,-0.840291917324066,-0.531931042671204,-0.0687699317932129,-0.838408052921295,-0.540687203407288,-0.222442299127579,-0.840373992919922,-0.494258016347885,-0.124255016446114,-0.850579023361206,-0.510956168174744,
  627. -0.0651659145951271,-0.852608382701874,-0.518471300601959,-0.222320720553398,-0.803626596927643,-0.552048683166504,-0.0512898936867714,-0.83461731672287,-0.548437178134918,-0.124495849013329,-0.824487090110779,-0.552016139030457,-0.0538696870207787,-0.847287833690643,-0.528395116329193,0.104622639715672,-0.842154026031494,-0.528990387916565,-0.124361261725426,-0.842694997787476,-0.523831605911255,-0.049154594540596,-0.823882818222046,-0.564624667167664,-0.222150579094887,-0.794879138469696,-0.564638137817383,-0.119060486555099,-0.815256237983704,-0.566729128360748,0.0559908077120781,-0.852107048034668,-0.520363926887512,0.104476489126682,-0.846345901489258,-0.522286593914032,0.124118342995644,-0.843425869941711,-0.52271181344986,-0.0561593249440193,-0.858250975608826,-0.510148406028748,0.124067537486553,-0.843676447868347,-0.522319197654724,0.104466140270233,-0.846633911132813,-0.521821618080139,0.197603076696396,-0.753712356090546,-0.626794159412384,0.0862351059913635,-0.724491834640503,-0.683867812156677,0.140723556280136,-0.740240693092346,-0.657450139522552,-0.109798610210419,-0.790380656719208,-0.602696061134338,0.0951138660311699,-0.823505818843842,-0.559277832508087,-0.0454475544393063,-0.80473393201828,-0.591893494129181,0.127556249499321,-0.825685381889343,-0.549520969390869,-0.0486394725739956,-0.821260452270508,-0.568476498126984,0.0935541167855263,-0.82686185836792,-0.5545694231987,0.137224599719048,-0.766184568405151,-0.627798318862915,0.120558127760887,-0.763337373733521,-0.634650945663452,0.186529338359833,-0.773145198822021,-0.606179296970367,0.105821892619133,-0.799453437328339,-0.59133392572403,-0.0988718643784523,-0.759808838367462,-0.642584621906281,0.144141882658005,-0.802825629711151,-0.578527629375458,0.141197741031647,-0.808679163455963,-0.571052730083466,0.164434015750885,-0.808988630771637,-0.564357042312622,0.102492436766624,-0.807123959064484,-0.581417441368103,-0.0573112554848194,-0.696867525577545,0.714906334877014,-0.227263033390045,-0.681337654590607,0.695794939994812,-0.136200591921806,-0.692245602607727,0.708692789077759,
  628. 0.00853446032851934,-0.698752462863922,0.715312719345093,-0.0557357296347618,-0.708079278469086,0.703929960727692,-0.131574928760529,-0.715145111083984,0.686480522155762,-0.229116857051849,-0.718960583209991,0.656202137470245,-0.0556651428341866,-0.708575248718262,0.703436315059662,-0.163570702075958,-0.7177494764328,0.676816403865814,-0.19994592666626,-0.641851603984833,0.740302801132202,-0.224119126796722,-0.633186280727386,0.740841269493103,-0.158074602484703,-0.655760526657104,0.73823481798172,-0.0556653961539268,-0.708573460578918,0.703438103199005,0.00858692079782486,-0.698900401592255,0.71516752243042,0.0205138120800257,-0.696768820285797,0.717002391815186,0.0508868545293808,-0.689558446407318,0.7224400639534,0.0204468760639429,-0.696413934230804,0.717348992824554,0.00858528073877096,-0.698895812034607,0.715172052383423,-0.159312918782234,-0.669018924236298,0.725970506668091,-0.0807585045695305,-0.68585079908371,0.723247349262238,-0.205216974020004,-0.65705019235611,0.725376486778259,-0.0133798271417618,-0.697857439517975,0.716111779212952,-0.200881585478783,-0.644551753997803,0.737698912620544,-0.0801186710596085,-0.681990623474121,0.72695928812027,-0.160899326205254,-0.686542153358459,0.709063708782196,-0.0573737248778343,-0.696417331695557,0.715339958667755,0.0111340973526239,-0.698794782161713,0.715235531330109,-0.0824317559599876,-0.695918023586273,0.713374555110931,-0.161424398422241,-0.692492723464966,0.7031329870224,0.0111330635845661,-0.694284379482269,0.719614684581757,-0.0573614351451397,-0.696506023406982,0.715254664421082,0.0212519634515047,-0.700672328472137,0.713166654109955,0.0111343571916223,-0.700379610061646,0.713683784008026,-0.01223523914814,-0.695314168930054,0.718601763248444,-0.0788837373256683,-0.674523890018463,0.734026491641998,0.0231374353170395,-0.704898357391357,0.708930909633636,0.0258422940969467,-0.694156646728516,0.719359993934631,-0.0827759727835655,-0.697984039783478,0.711313188076019,0.0111332982778549,-0.695158898830414,0.718769907951355,0.0801264494657516,-0.721763491630554,0.687486231327057,
  629. -0.0109439343214035,-0.692433655261993,0.721398532390594,0.0232890620827675,-0.704301118850708,0.709519326686859,0.0111343543976545,-0.700362622737885,0.713700473308563,0.0212543420493603,-0.70068496465683,0.713154256343842,0.021652165800333,-0.700696110725403,0.713131308555603,0.021000700071454,-0.699345648288727,0.714475154876709,0.0520153120160103,-0.691900908946991,0.720116317272186,0.0214682053774595,-0.699238836765289,0.714565753936768,0.0341403670608997,-0.69702422618866,0.716234385967255,0.0249964371323586,-0.697535574436188,0.716114103794098,0.011133985593915,-0.698199093341827,0.715817093849182,0.0871912837028503,-0.704728662967682,0.704098880290985,0.02523472905159,-0.696585536003113,0.717029929161072,0.0340715274214745,-0.697919547557831,0.715365350246429,0.00964772701263428,-0.701608240604401,0.712497591972351,0.0213840547949076,-0.698571503162384,0.715220630168915,0.0512669384479523,-0.690348207950592,0.72165858745575,0.0495936125516891,-0.686865210533142,0.725090861320496,0.0597139224410057,-0.682817459106445,0.728144705295563,0.00974891986697912,-0.701923489570618,0.712185621261597,-0.0111336009576917,-0.696395635604858,0.71757173538208,0.0111339474096894,-0.698001265525818,0.71601003408432,0.0213905889540911,-0.698623359203339,0.715169847011566,0.0213945303112268,-0.698654592037201,0.715139091014862,0.00845680385828018,-0.697887539863586,0.716157495975494,-0.0111336261034012,-0.696501672267914,0.717468917369843,-0.0111306346952915,-0.687341213226318,0.726249396800995,0.0353423990309238,-0.681101262569427,0.731335878372192,0.0111293736845255,-0.684542775154114,0.728887736797333,0.0615117475390434,-0.686405658721924,0.724612712860107,0.108534686267376,-0.671444773674011,0.733063578605652,0.00942765176296234,-0.700922131538391,0.713175535202026,0.00853651016950607,-0.698137164115906,0.715913236141205,0.111178621649742,-0.698900401592255,0.706525027751923,-0.0111337695270777,-0.69714492559433,0.716843783855438,0.156178921461105,-0.656261622905731,0.738192975521088,0.108628802001476,-0.672410905361176,0.732163488864899,
  630. 0.0616142451763153,-0.686609745025635,0.724410712718964,0.163133695721626,-0.727854371070862,0.666044652462006,0.114026769995689,-0.729306221008301,0.674618661403656,0.156296908855438,-0.728165984153748,0.667342185974121,0.0411138534545898,-0.699791312217712,0.713163197040558,0.086003340780735,-0.707632541656494,0.70132702589035,0.0340333953499794,-0.69841456413269,0.714883804321289,0.0483875498175621,-0.666899859905243,0.743574619293213,0.0362314470112324,-0.668960630893707,0.742414355278015,-0.0111245503649116,-0.67600291967392,0.736814975738525,0.0894413068890572,-0.699184358119965,0.709324777126312,0.0425786375999451,-0.693313837051392,0.719376862049103,0.0815321058034897,-0.698306202888489,0.71114057302475,0.1095335111022,-0.681739151477814,0.723349273204803,0.108753904700279,-0.681811273097992,0.723398923873901,-0.0111308600753546,-0.687883317470551,0.7257359623909,0.111714906990528,-0.657076478004456,0.745500087738037,0.0485700145363808,-0.666051149368286,0.744323134422302,-0.0111218132078648,-0.672028660774231,0.740441620349884,0.111882627010345,-0.706328988075256,0.698986232280731,0.167498305439949,-0.703578472137451,0.690595149993896,0.105577804148197,-0.706498920917511,0.699794709682465,0.107809267938137,-0.689343214035034,0.716368079185486,0.084516853094101,-0.688108444213867,0.720668911933899,0.0444158725440502,-0.685085773468018,0.727107107639313,0.0817446485161781,-0.69758665561676,0.711822152137756,0.106550924479961,-0.699124455451965,0.707016229629517,0.167940482497215,-0.701005220413208,0.693100035190582,-0.0526814758777618,-0.978892505168915,-0.19746957719326,-0.225151553750038,-0.954637050628662,-0.194871872663498,-0.133341908454895,-0.971292018890381,-0.19700713455677,0.010178872384131,-0.980056047439575,-0.198460698127747,-0.0512133277952671,-0.975952684879303,-0.211881279945374,-0.128920093178749,-0.965154528617859,-0.227719873189926,-0.227048397064209,-0.941912472248077,-0.247487619519234,-0.0511485859751701,-0.975818693637848,-0.212513253092766,-0.160608068108559,-0.958615660667419,-0.235077038407326,
  631. -0.191869348287582,-0.971384167671204,-0.139996826648712,-0.221981883049011,-0.96626490354538,-0.130599841475487,-0.155096530914307,-0.976260244846344,-0.151198402047157,-0.0511453747749329,-0.975811958312988,-0.212544515728951,0.0102322474122047,-0.980013906955719,-0.198665648698807,0.0262962002307177,-0.980470359325409,-0.194901242852211,0.0567812956869602,-0.980985522270203,-0.185589104890823,0.0261998455971479,-0.980614602565765,-0.194187089800835,0.0102152302861214,-0.980027318000793,-0.198600307106972,-0.156333073973656,-0.973194599151611,-0.168677657842636,-0.0792504027485847,-0.979732513427734,-0.183966070413589,-0.196879670023918,-0.967262327671051,-0.160131067037582,-0.014946985989809,-0.980252981185913,-0.19718211889267,-0.192803621292114,-0.970653653144836,-0.143730014562607,-0.0786158218979836,-0.98073011636734,-0.178851917386055,-0.157920584082603,-0.968578219413757,-0.192138746380806,-0.0527266189455986,-0.978979825973511,-0.197023943066597,0.00771656865254045,-0.980004191398621,-0.19882720708847,-0.0809168517589569,-0.976966500282288,-0.197456315159798,-0.158441558480263,-0.966875553131104,-0.200119689106941,0.00772578828036785,-0.981175124645233,-0.192966088652611,-0.0527003929018974,-0.978929042816162,-0.197282835841179,0.027241563424468,-0.979025661945343,-0.201908066868782,0.00771324429661036,-0.979582071304321,-0.200896874070168,-0.0137633327394724,-0.980979859828949,-0.193621620535851,-0.0773842334747314,-0.982580065727234,-0.168961971998215,0.0258723758161068,-0.977676570415497,-0.20851656794548,0.0288906469941139,-0.980866312980652,-0.192527249455452,-0.0812624096870422,-0.976365983486176,-0.200264781713486,0.00772387254983187,-0.98093181848526,-0.194198802113533,0.0804766118526459,-0.96902596950531,-0.233478665351868,-0.0124165024608374,-0.981789171695709,-0.189567476511002,0.0259758085012436,-0.977790176868439,-0.207970231771469,0.00771330343559384,-0.979589581489563,-0.200860321521759,0.0272472091019154,-0.979016840457916,-0.201949894428253,0.0253923386335373,-0.979087352752686,-0.201849743723869,
  632. 0.0267299562692642,-0.979814112186432,-0.198116138577461,0.0578825734555721,-0.980323731899261,-0.188719838857651,0.0251137614250183,-0.979759335517883,-0.19859766960144,0.0292666740715504,-0.979938864707947,-0.19713781774044,0.0280093736946583,-0.979962050914764,-0.197205647826195,0.00771747855469584,-0.98011976480484,-0.198256447911263,0.0875789895653725,-0.973766148090363,-0.210022240877151,0.0280974209308624,-0.980053305625916,-0.19673852622509,0.0292738154530525,-0.979964733123779,-0.197008162736893,0.00655642803758383,-0.978979468345642,-0.203853383660316,0.0250209663063288,-0.979980647563934,-0.197514623403549,0.0570434704422951,-0.980829000473022,-0.186334431171417,0.0550951659679413,-0.981976389884949,-0.180795177817345,0.0580495223402977,-0.982077181339264,-0.179317489266396,0.00674460083246231,-0.978810608386993,-0.204656556248665,-0.00772110652178526,-0.980580508708954,-0.19596491754055,0.00771870091557503,-0.980274975299835,-0.197487652301788,0.0251611582934856,-0.979645848274231,-0.199150919914246,0.0251642651855946,-0.979638397693634,-0.199187159538269,0.00502802431583405,-0.980325281620026,-0.197325065732002,-0.00772088672965765,-0.980552613735199,-0.196104422211647,-0.00774120818823576,-0.983133435249329,-0.182725951075554,0.0304132625460625,-0.983891248703003,-0.176162004470825,0.00774503033608198,-0.983618855476379,-0.180094555020332,0.0597983822226524,-0.981100916862488,-0.184025198221207,0.107880651950836,-0.980122268199921,-0.166499480605125,0.0063294218853116,-0.979182362556458,-0.202884301543236,0.00513178529217839,-0.980235397815704,-0.197768539190292,0.110429272055626,-0.972786486148834,-0.203695431351662,-0.00771964062005281,-0.98039436340332,-0.196894079446793,0.160874336957932,-0.975658237934113,-0.149031952023506,0.107971392571926,-0.979892313480377,-0.167789682745934,0.0598915778100491,-0.981048166751862,-0.184276029467583,0.162568420171738,-0.954507768154144,-0.249973133206367,0.113188304007053,-0.962507009506226,-0.246512964367867,0.160770237445831,-0.954842448234558,-0.249857693910599,
  633. 0.0399960316717625,-0.978868186473846,-0.200542613863945,0.0863842368125916,-0.973008811473846,-0.213989838957787,0.0292541570961475,-0.979893565177917,-0.197365045547485,0.0471665896475315,-0.986476182937622,-0.156971648335457,0.031281728297472,-0.98661345243454,-0.160048007965088,-0.0077626327984035,-0.98585432767868,-0.167425036430359,0.0898294225335121,-0.975148439407349,-0.202524557709694,0.0414468720555305,-0.980558812618256,-0.1917984187603,0.0793711170554161,-0.976525723934174,-0.200244531035423,0.108834475278854,-0.97759336233139,-0.180183991789818,0.111244015395641,-0.97734135389328,-0.180079609155655,-0.00773941399529576,-0.982905566692352,-0.183947652578354,0.114252723753452,-0.982497334480286,-0.14712381362915,0.0473583787679672,-0.986653685569763,-0.155793964862823,-0.0077692661434412,-0.986696779727936,-0.16238559782505,0.111110851168633,-0.970492839813232,-0.214004799723625,0.166998282074928,-0.961946249008179,-0.216265916824341,0.108009986579418,-0.970874786376953,-0.213859796524048,0.110242426395416,-0.975435733795166,-0.190713971853256,0.0822940841317177,-0.978969812393188,-0.186670079827309,0.0432654023170471,-0.982570171356201,-0.180787160992622,0.0795507356524467,-0.976681053638458,-0.199413567781448,0.108966246247292,-0.972879886627197,-0.204036816954613,0.167450100183487,-0.962657272815704,-0.212723955512047,-0.0516994297504425,-0.964601576328278,0.258594512939453,-0.226224467158318,-0.941439628601074,0.2500279545784,-0.136837497353554,-0.957093834877014,0.255434602499008,0.0078464187681675,-0.966196238994598,0.257688522338867,-0.0502307564020157,-0.968327641487122,0.244578048586845,-0.13219952583313,-0.965460896492004,0.224518567323685,-0.227776810526848,-0.953548967838287,0.197135046124458,-0.0501678138971329,-0.968482255935669,0.24397836625576,-0.156666219234467,-0.963529586791992,0.216948196291924,-0.197816848754883,-0.93061625957489,0.307931572198868,-0.223450213670731,-0.923049688339233,0.313128441572189,-0.151192545890808,-0.942523658275604,0.297976404428482,-0.0501637682318687,-0.968492090702057,0.243939891457558,
  634. 0.00790117308497429,-0.966251194477081,0.257480531930923,0.0205722413957119,-0.965304732322693,0.260314434766769,0.0511651784181595,-0.96185576915741,0.268729627132416,0.0205041728913784,-0.965176641941071,0.260794401168823,0.00790680944919586,-0.966256856918335,0.257459104061127,-0.152417734265327,-0.947435438632965,0.281309515237808,-0.0807342976331711,-0.959114968776703,0.271257340908051,-0.202992960810661,-0.936007142066956,0.287549436092377,-0.0163131132721901,-0.965525925159454,0.259795248508453,-0.198740780353546,-0.93160343170166,0.304330736398697,-0.0800839513540268,-0.957692503929138,0.276426464319229,-0.153987810015678,-0.953569769859314,0.258829057216644,-0.0517423823475838,-0.964488983154297,0.2590052485466,0.00760750100016594,-0.966152667999268,0.25785893201828,-0.0824359804391861,-0.962727546691895,0.257604330778122,-0.154496937990189,-0.955515682697296,0.251237869262695,0.00759526994079351,-0.964599251747131,0.263610988855362,-0.051711767911911,-0.964569211006165,0.258712530136108,0.0213230233639479,-0.966702461242676,0.255013525485992,0.00761178322136402,-0.966696441173553,0.255812525749207,-0.015100322663784,-0.964555740356445,0.263446778059006,-0.0788376182317734,-0.954903423786163,0.286258906126022,0.0226482823491097,-0.968143939971924,0.249368131160736,0.0253651142120361,-0.964290201663971,0.263630896806717,-0.0827839151024818,-0.963446438312531,0.254789739847183,0.00759788975119591,-0.964931964874268,0.262390106916428,0.0781050622463226,-0.971653878688812,0.223133102059364,-0.013729365542531,-0.963441073894501,0.267568677663803,0.0228097382932901,-0.967921197414398,0.250216573476791,0.00761170638725162,-0.96668666601181,0.255849897861481,0.0213254205882549,-0.966706812381744,0.254996538162231,0.0258172806352377,-0.966673731803894,0.254706501960754,0.0210675187408924,-0.966229975223541,0.256818890571594,0.05229552090168,-0.962683141231537,0.265530288219452,0.0255078729242086,-0.965788424015045,0.258073836565018,0.03154182061553,-0.96525114774704,0.259413570165634,0.0245071928948164,-0.965531468391418,0.259130150079727,
  635. 0.00760636897757649,-0.966008901596069,0.2583968937397,0.0851340666413307,-0.96560674905777,0.245674088597298,0.0247749257832766,-0.965146481990814,0.260535001754761,0.0315132439136505,-0.965382695198059,0.258927047252655,0.00729065295308828,-0.967398643493652,0.253153651952744,0.0254081077873707,-0.96550065279007,0.259158194065094,0.0515441112220287,-0.96213436126709,0.26765763759613,0.0498549751937389,-0.960882604122162,0.272431761026382,0.05996273458004,-0.958962917327881,0.277118295431137,0.00746056251227856,-0.967586636543274,0.252429008483887,-0.00760160153731704,-0.965403378009796,0.260650634765625,0.00760473171249032,-0.965800940990448,0.259173601865768,0.0255744475871325,-0.965979874134064,0.257349908351898,0.0255772788077593,-0.965987980365753,0.257319122552872,0.00585848791524768,-0.965791285037994,0.25925475358963,-0.00760188326239586,-0.965439200401306,0.260517448186874,-0.00757312122732401,-0.961786389350891,0.273696213960648,0.0327618680894375,-0.959366917610168,0.280252903699875,0.00756745832040906,-0.961067199707031,0.276211500167847,0.0618073791265488,-0.960242748260498,0.272238373756409,0.111631214618683,-0.951098442077637,0.288010805845261,0.00706985127180815,-0.967153370380402,0.254095047712326,0.00595408584922552,-0.965899765491486,0.258847832679749,0.114162713289261,-0.961512088775635,0.24992299079895,-0.00760351121425629,-0.965645909309387,0.259750306606293,0.155079007148743,-0.941595375537872,0.298912525177002,0.111723437905312,-0.951490938663483,0.286675602197647,0.0619149878621101,-0.960316598415375,0.271953344345093,0.157239407300949,-0.966796159744263,0.201447486877441,0.116780355572701,-0.971368789672852,0.206893861293793,0.155066758394241,-0.967083990573883,0.201749503612518,0.0428297035396099,-0.966008245944977,0.254938721656799,0.0839711427688599,-0.966650009155273,0.241943657398224,0.0314843095839024,-0.965515613555908,0.258434504270554,0.0501858070492744,-0.95301878452301,0.298725038766861,0.0336750596761703,-0.954613387584686,0.295938223600388,-0.00753868464380503,-0.957412958145142,0.288623929023743,
  636. 0.0874164402484894,-0.963509738445282,0.252996802330017,0.0443022921681404,-0.963585793972015,0.263704121112823,0.0827584192156792,-0.96360981464386,0.254179835319519,0.112622745335102,-0.955268323421478,0.273456811904907,0.108411177992821,-0.955745995044708,0.27348992228508,-0.00757583323866129,-0.962130844593048,0.272482842206955,0.111377693712711,-0.945805668830872,0.305035531520844,0.0503391698002815,-0.952724039554596,0.299637913703918,-0.00752703007310629,-0.955932796001434,0.293489038944244,0.114809460937977,-0.964042007923126,0.239670172333717,0.161552518606186,-0.958523035049438,0.234807267785072,0.10522236675024,-0.964904546737671,0.240598171949387,0.107463166117668,-0.958625614643097,0.26360684633255,0.0858099535107613,-0.959692299365997,0.267633020877838,0.046141654253006,-0.960435748100281,0.274652719497681,0.0829839408397675,-0.963327765464783,0.25517326593399,0.1061991751194,-0.962256133556366,0.250568985939026,0.162065595388412,-0.957434713840485,0.238859012722969,-0.246976166963577,0.86379462480545,0.439160168170929,-0.170491889119148,0.8750279545784,0.453054815530777,-0.290109932422638,0.854958593845367,0.429979264736176,-0.363097906112671,0.830854058265686,0.421712517738342,-0.246712535619736,0.866219043731689,0.434508353471756,-0.29012867808342,0.854669511318207,0.430540829896927,-0.358486622571945,0.811746597290039,0.461036711931229,-0.41864675283432,0.781012833118439,0.463415414094925,-0.286137163639069,0.842949330806732,0.455589681863785,-0.289703518152237,0.860755562782288,0.418535202741623,-0.316107362508774,0.850117623806,0.421160578727722,-0.36274254322052,0.829331994056702,0.425001561641693,-0.413209974765778,0.800774872303009,0.433609455823898,-0.362063497304916,0.826449692249298,0.431150704622269,-0.318566709756851,0.845760464668274,0.428023904561996,-0.397159963846207,0.845800817012787,0.356209218502045,-0.315444469451904,0.851274788379669,0.419316172599792,-0.45918282866478,0.834980964660645,0.303245842456818,-0.289699345827103,0.860811591148376,0.418423116207123,-0.245121583342552,0.86607551574707,0.435693264007568,
  637. -0.311856836080551,0.857413113117218,0.40937528014183,-0.468454897403717,0.824978351593018,0.316165804862976,-0.320932388305664,0.841471970081329,0.434657692909241,-0.325447022914886,0.841420233249664,0.431389033794403,-0.321092754602432,0.841177761554718,0.435108542442322,-0.27103179693222,0.839055776596069,0.471727848052979,-0.325639188289642,0.841210246086121,0.431653082370758,-0.309972018003464,0.857738018035889,0.410125344991684,-0.254231572151184,0.856919407844543,0.448392063379288,-0.258853048086166,0.857134401798248,0.445326775312424,-0.247413203120232,0.950994491577148,-0.185462281107903,-0.175578698515892,0.967519283294678,-0.181875124573708,-0.292903035879135,0.937630355358124,-0.187235862016678,-0.367815256118774,0.911860823631287,-0.182268932461739,-0.24694262444973,0.94918566942215,-0.195104837417603,-0.292813807725906,0.936969041824341,-0.190654113888741,-0.363824367523193,0.919804036617279,-0.14694356918335,-0.420114785432816,0.898521482944489,-0.127133265137672,-0.285797357559204,0.942606925964355,-0.172661736607552,-0.292183458805084,0.932628154754639,-0.211739301681519,-0.319153040647507,0.925746321678162,-0.202818334102631,-0.368199527263641,0.910971581935883,-0.185902938246727,-0.414798885583878,0.895255386829376,-0.162664711475372,-0.367504745721817,0.912561178207397,-0.179366633296013,-0.321536391973495,0.926644682884216,-0.194792196154594,-0.398713141679764,0.881564438343048,-0.252729117870331,-0.317782312631607,0.925203919410706,-0.207393556833267,-0.456770569086075,0.84267920255661,-0.285048454999924,-0.292133867740631,0.932305455207825,-0.213223531842232,-0.246944159269333,0.947544097900391,-0.202925875782967,-0.314512401819229,0.923836708068848,-0.218191832304001,-0.466114431619644,0.842940628528595,-0.268679112195969,-0.323187083005905,0.927233040332794,-0.189179629087448,-0.326823681592941,0.925541162490845,-0.191206216812134,-0.323320716619492,0.927279472351074,-0.188723251223564,-0.27252322435379,0.949020087718964,-0.158404439687729,-0.326990395784378,0.925542593002319,-0.190914183855057,
  638. -0.311343818902969,0.924965739250183,-0.217953205108643,-0.255791217088699,0.948332190513611,-0.187715366482735,-0.256239384412766,0.94816267490387,-0.187960177659988,-0.282178163528442,0.920779228210449,0.269334763288498,-0.212046876549721,0.936312735080719,0.279919028282166,-0.323847383260727,0.909037172794342,0.262248933315277,-0.402384340763092,0.880690276622772,0.249943047761917,-0.281605988740921,0.924788057804108,0.255861580371857,-0.32373258471489,0.911332786083221,0.254302561283112,-0.404007524251938,0.884242832660675,0.234291538596153,-0.44020015001297,0.865271687507629,0.239851325750351,-0.332898199558258,0.916323959827423,0.222551971673965,-0.324024349451065,0.903652966022491,0.28003516793251,-0.366866201162338,0.884744107723236,0.287466615438461,-0.397405952215195,0.869794130325317,0.292449593544006,-0.447916120290756,0.846132576465607,0.288843721151352,-0.398739814758301,0.872713565826416,0.281740367412567,-0.363615810871124,0.889647483825684,0.276244282722473,-0.43190324306488,0.880884230136871,0.193655699491501,-0.355965435504913,0.900321066379547,0.250420957803726,-0.499086260795593,0.855319380760193,0.139074921607971,-0.324076145887375,0.900343298912048,0.290442049503326,-0.313716411590576,0.902779281139374,0.294230669736862,-0.363419204950333,0.889936804771423,0.275570392608643,-0.486776113510132,0.865343809127808,0.119286000728607,-0.348914235830307,0.90917444229126,0.227290153503418,-0.345241963863373,0.909906387329102,0.22995337843895,-0.348353892564774,0.909840404987335,0.225477576255798,-0.295275568962097,0.918094396591187,0.264414548873901,-0.344330042600632,0.910616636276245,0.228504449129105,-0.378026127815247,0.881541609764099,0.282808542251587,-0.327803671360016,0.889895141124725,0.317224562168121,-0.324068754911423,0.890375852584839,0.319703370332718,-0.246360838413239,0.769337117671967,0.589429259300232,-0.168755188584328,0.777971088886261,0.605213046073914,-0.289683371782303,0.762270927429199,0.578814923763275,-0.364507377147675,0.744531154632568,0.559292137622833,-0.245670676231384,0.777846992015839,0.578446090221405,
  639. -0.289458692073822,0.767104208469391,0.572507500648499,-0.366095393896103,0.753883838653564,0.545557737350464,-0.407589316368103,0.733279347419739,0.544217169284821,-0.298183530569077,0.783435225486755,0.54526698589325,-0.290156483650208,0.750223398208618,0.594116151332855,-0.330246657133102,0.732974946498871,0.594714164733887,-0.359881848096848,0.719131648540497,0.594419658184052,-0.415890872478485,0.697968244552612,0.582988142967224,-0.361132353544235,0.725770831108093,0.585525453090668,-0.326743692159653,0.741523444652557,0.585987687110901,-0.398463368415833,0.76547771692276,0.505243420600891,-0.31883430480957,0.759947121143341,0.5664142370224,-0.463916480541229,0.764031112194061,0.448372662067413,-0.290348023176193,0.744220554828644,0.601526260375977,-0.272370517253876,0.745067358016968,0.608842253684998,-0.326703548431396,0.741620004177094,0.585887908935547,-0.451109230518341,0.780171513557434,0.433396875858307,-0.31132909655571,0.776385903358459,0.547995507717133,-0.308017939329147,0.776003122329712,0.550403594970703,-0.310743689537048,0.777628064155579,0.546564817428589,-0.254145383834839,0.768494069576263,0.587219715118408,-0.30708771944046,0.777147889137268,0.54930704832077,-0.341863483190537,0.731576979160309,0.589851319789886,-0.287597924470901,0.724330008029938,0.626604676246643,-0.288845241069794,0.72452974319458,0.625799536705017,-0.0150345750153065,0.74740469455719,-0.664198935031891,-0.106169179081917,0.743298470973969,-0.660481333732605,-0.0300706587731838,0.747156798839569,-0.663967251777649,-0.138836562633514,0.740296185016632,-0.657788753509521,-0.0150345750153065,0.74740469455719,-0.664198935031891,-0.0300706587731838,0.747156798839569,-0.663967251777649,-0.131193459033966,0.743334531784058,-0.655928373336792,-0.0161306988447905,0.721269309520721,-0.692466974258423,-0.139278590679169,0.744474470615387,-0.65296196937561,-0.138831928372383,0.740252494812012,-0.657838940620422,-0.0316064804792404,0.774334847927094,-0.631986200809479,-0.221478834748268,0.706692039966583,-0.671962440013886,-0.131189092993736,0.743342697620392,-0.655919969081879,
  640. -0.139332637190819,0.744986832141876,-0.652365744113922,-0.322210282087326,0.765805065631866,-0.556527972221375,-0.334743291139603,0.704170525074005,-0.62617164850235,-0.139317914843559,0.744847238063812,-0.65252822637558,-0.23120804131031,0.729651927947998,-0.643545567989349,-0.216534271836281,0.114803947508335,-0.969501435756683,-0.209303364157677,0.110167220234871,-0.971625089645386,-0.115503408014774,0.0501854494214058,-0.992038547992706,-0.217482551932335,0.112303882837296,-0.969581961631775,-0.109376356005669,0.0653731971979141,-0.991848349571228,-0.174501642584801,0.0936761498451233,-0.980190813541412,-0.372933387756348,0.0987561196088791,-0.922587633132935,-0.214083343744278,0.121243052184582,-0.969261825084686,-0.168030306696892,0.126995041966438,-0.977567434310913,-0.110102578997612,0.0635777041316032,-0.991884708404541,-0.0829029083251953,0.0537393093109131,-0.995107650756836,-0.175727695226669,0.0872312560677528,-0.980566442012787,-0.367491602897644,0.0672169104218483,-0.927594661712646,-0.167801707983017,0.128151342272758,-0.977455854415894,-0.120344460010529,0.141453340649605,-0.982602775096893,-0.170000940561295,0.116970017552376,-0.978477299213409,-0.0653847381472588,0.115214690566063,-0.991186439990997,-0.120140537619591,0.116291910409927,-0.985922157764435,-0.0143357468768954,0.963467657566071,0.267440795898438,-0.107284024357796,0.957990884780884,0.265976846218109,-0.0353760421276093,0.962960362434387,0.267312705516815,-0.141996279358864,0.95378315448761,0.264829903841019,-0.0143357468768954,0.963467657566071,0.267440795898438,-0.0353760421276093,0.962960362434387,0.267312705516815,-0.129825338721275,0.954609453678131,0.268078625202179,-0.0157411061227322,0.973059833049774,0.230014741420746,-0.142497509717941,0.951659858226776,0.272099256515503,-0.140002608299255,0.961400985717773,0.236870169639587,-0.0358501374721527,0.95961594581604,0.279019951820374,-0.220215335488319,0.954343140125275,0.201827615499496,-0.129861906170845,0.954631328582764,0.267983138561249,-0.142569020390511,0.951349675655365,0.273144751787186,
  641. -0.322394102811813,0.882899463176727,0.341395109891891,-0.340449094772339,0.918269813060761,0.202175989747047,-0.139052242040634,0.964612126350403,0.224026843905449,-0.224340736865997,0.950262248516083,0.216039076447487,-0.209807232022285,0.875973463058472,-0.434340238571167,-0.208626970648766,0.875848352909088,-0.435160249471664,-0.109577760100365,0.859186053276062,-0.499792039394379,-0.210268318653107,0.875339984893799,-0.435393184423447,-0.102965913712978,0.867858529090881,-0.486024439334869,-0.174716114997864,0.87421703338623,-0.453010886907578,-0.368646532297134,0.8302943110466,-0.4179847240448,-0.205316707491875,0.882039189338684,-0.424089640378952,-0.168133556842804,0.890035510063171,-0.423754513263702,-0.103535488247871,0.867123484611511,-0.487213730812073,-0.0849859043955803,0.865288853645325,-0.494016915559769,-0.175973877310753,0.871021628379822,-0.458644270896912,-0.363334089517593,0.817650318145752,-0.446582794189453,-0.167914107441902,0.890537738800049,-0.422785490751266,-0.116738513112068,0.902892529964447,-0.413711667060852,-0.170155480504036,0.885334134101868,-0.432701677083969,-0.0678168386220932,0.894964337348938,-0.440953433513641,-0.116431318223476,0.891586720943451,-0.437626451253891,-0.0136854471638799,0.981873214244843,-0.189044639468193,-0.103752076625824,0.976675152778625,-0.187992319464684,-0.0326882563531399,0.981442391872406,-0.188950806856155,-0.140299543738365,0.972266018390656,-0.187122508883476,-0.0136854471638799,0.981873214244843,-0.189044639468193,-0.0326882563531399,0.981442391872406,-0.188950806856155,-0.13284470140934,0.973026216030121,-0.188606187701225,-0.0149735752493143,0.972534358501434,-0.232277408242226,-0.140397250652313,0.97252881526947,-0.185678616166115,-0.137483775615692,0.964185893535614,-0.226812213659287,-0.0327265858650208,0.981629729270935,-0.187968075275421,-0.212242364883423,0.94386351108551,-0.253130227327347,-0.127922683954239,0.976080119609833,-0.175793945789337,-0.141484275460243,0.975361824035645,-0.169268071651459,-0.317722588777542,0.944857716560364,-0.0793497264385223,
  642. -0.332288503646851,0.92536598443985,-0.18243420124054,-0.140499264001846,0.972801744937897,-0.184165120124817,-0.231141075491905,0.955313622951508,-0.18425452709198,0.34729278087616,0.799984872341156,0.489297538995743,0.53175562620163,0.747189998626709,0.398676723241806,0.378498792648315,0.793826758861542,0.47600194811821,0.352039396762848,0.787184238433838,0.50636875629425,0.38113009929657,0.780305802822113,0.495845437049866,0.190256237983704,0.810482621192932,0.55400425195694,-0.143714010715485,0.717830359935761,0.681223809719086,0.340115457773209,0.817866683006287,0.464129060506821,0.189859226346016,0.811814665794373,0.552186965942383,0.382394433021545,0.773188412189484,0.50591915845871,0.273402690887451,0.799966216087341,0.534139513969421,0.189505934715271,0.812993884086609,0.550571024417877,-0.163501814007759,0.747946858406067,0.643306076526642,0.189633429050446,0.81256902217865,0.55115407705307,-0.0151507332921028,0.788453102111816,0.614908337593079,0.189420729875565,0.81327748298645,0.550181448459625,0.27322119474411,0.801265954971313,0.53228098154068,-0.0209883321076632,0.816862344741821,0.57645058631897,-0.372825473546982,0.035546537488699,-0.927220344543457,-0.534424901008606,-0.0757751688361168,-0.841812372207642,-0.56486713886261,-0.0984185636043549,-0.819291710853577,-0.493759512901306,0.107729785144329,-0.862899601459503,-0.562827408313751,0.0672600865364075,-0.823833465576172,-0.426414251327515,0.14438758790493,-0.892929494380951,-0.583086311817169,0.317599147558212,-0.747757434844971,-0.510809481143951,0.309690922498703,-0.801975965499878,-0.474780797958374,0.305011779069901,-0.825561106204987,-0.508181631565094,0.251763820648193,-0.823629975318909,-0.479298681020737,0.253642916679382,-0.840201318264008,-0.483031183481216,0.253417760133743,-0.838129162788391,-0.509046912193298,0.266816973686218,-0.818339824676514,-0.423778802156448,0.271739780902863,-0.864042401313782,-0.478489220142365,0.268903583288193,-0.835906028747559,-0.440616488456726,0.175363272428513,-0.880400359630585,-0.382624626159668,0.214223206043243,-0.898725152015686,
  643. -0.49730321764946,0.134859338402748,-0.857031285762787,-0.421675026416779,0.336822718381882,-0.841867446899414,-0.51100879907608,0.317193984985352,-0.79891049861908,-0.408871740102768,0.339287459850311,-0.847176432609558,-0.403739482164383,0.312199622392654,-0.859956860542297,-0.47982257604599,0.267126679420471,-0.835711479187012,-0.37128221988678,0.330073416233063,-0.867871582508087,-0.347831219434738,0.337041825056076,-0.874880790710449,-0.42196998000145,0.330501705408096,-0.844221591949463,-0.407516032457352,0.331965893507004,-0.850722849369049,-0.345802992582321,0.30667719244957,-0.886774718761444,-0.397262156009674,0.280144095420837,-0.873900532722473,-0.359047710895538,0.300010144710541,-0.883786559104919,-0.395785212516785,0.273117691278458,-0.87678998708725,-0.342821061611176,0.298699706792831,-0.890647053718567,-0.337593287229538,0.30113410949707,-0.891823530197144,-0.372414767742157,0.798453807830811,-0.473052680492401,-0.536399841308594,0.66408771276474,-0.52082884311676,-0.565118312835693,0.63457190990448,-0.52721893787384,-0.49188232421875,0.784685909748077,-0.377253025770187,-0.564586818218231,0.727025210857391,-0.390737920999527,-0.426182836294174,0.828582644462585,-0.363068878650665,-0.584240436553955,0.799705564975739,-0.138327017426491,-0.509197950363159,0.842511236667633,-0.175761789083481,-0.470385670661926,0.86093670129776,-0.193714380264282,-0.506452560424805,0.829385578632355,-0.235850244760513,-0.482439607381821,0.84183007478714,-0.242020905017853,-0.478433907032013,0.843825101852417,-0.243023112416267,-0.507350444793701,0.833097875118256,-0.220326274633408,-0.422995120286942,0.873572707176209,-0.24071954190731,-0.48168283700943,0.846470594406128,-0.22686830163002,-0.440451472997665,0.834834814071655,-0.330232262611389,-0.386640161275864,0.86885803937912,-0.309184789657593,-0.495498389005661,0.794538676738739,-0.350983858108521,-0.420593768358231,0.890420615673065,-0.173931285738945,-0.509430944919586,0.84411358833313,-0.167190104722977,-0.412913829088211,0.893912792205811,-0.17441925406456,
  644. -0.407592862844467,0.889701724052429,-0.205667406320572,-0.479763209819794,0.846962332725525,-0.229089677333832,-0.374742090702057,0.906427204608917,-0.194828927516937,-0.345072120428085,0.91873025894165,-0.19198951125145,-0.420923352241516,0.888928115367889,-0.180638656020164,-0.411644995212555,0.892962396144867,-0.182116955518723,-0.349880486726761,0.909420371055603,-0.224807009100914,-0.401211589574814,0.883974373340607,-0.24003903567791,-0.362572968006134,0.903480529785156,-0.228612720966339,-0.39978814125061,0.882611870765686,-0.247317016124725,-0.346944153308868,0.908375263214111,-0.233418494462967,-0.335253924131393,0.913552582263947,-0.230274945497513,-0.370918661355972,0.505753457546234,-0.778866350650787,-0.536732792854309,0.362738043069839,-0.761799812316895,-0.563406765460968,0.335586935281754,-0.75495308637619,-0.492885231971741,0.53421151638031,-0.686791300773621,-0.565280675888062,0.476719409227371,-0.673198699951172,-0.424594789743423,0.581613481044769,-0.693862438201904,-0.58557003736496,0.654267370700836,-0.478583335876465,-0.509450435638428,0.67635041475296,-0.531987249851227,-0.474718391895294,0.68406355381012,-0.553804516792297,-0.506938576698303,0.637678623199463,-0.579982161521912,-0.483431845903397,0.645919978618622,-0.59083080291748,-0.482968479394913,0.646076440811157,-0.591038703918457,-0.507774770259857,0.647933542728424,-0.567756056785584,-0.42282646894455,0.675311625003815,-0.604294657707214,-0.482685029506683,0.656814873218536,-0.579318106174469,-0.438946664333344,0.601951956748962,-0.667068004608154,-0.380927979946136,0.644604742527008,-0.66285628080368,-0.496385872364044,0.554685890674591,-0.667775928974152,-0.420349299907684,0.720242202281952,-0.551867485046387,-0.509647846221924,0.681571245193481,-0.525090277194977,-0.406888723373413,0.725298464298248,-0.55532318353653,-0.401884853839874,0.708882331848145,-0.579632997512817,-0.478219509124756,0.657765865325928,-0.581936657428741,-0.37365984916687,0.725769698619843,-0.577612936496735,-0.350664883852005,0.736064016819,-0.579002559185028,
  645. -0.420687168836594,0.715905845165253,-0.557226240634918,-0.4055016040802,0.720692873001099,-0.562290251255035,-0.350204586982727,0.714305937290192,-0.605907499790192,-0.395428538322449,0.688410878181458,-0.608051657676697,-0.361436009407043,0.7081059217453,-0.606588900089264,-0.393962472677231,0.683856785297394,-0.614111959934235,-0.347271651029587,0.709554016590118,-0.613135814666748,-0.340228289365768,0.713211357593536,-0.612841248512268,0.597318410873413,-0.705019593238831,0.382306307554245,0.370783030986786,-0.820029437541962,0.435972034931183,0.50602912902832,-0.759757936000824,0.40829211473465,0.597164511680603,-0.705885708332062,0.380946099758148,0.37950474023819,-0.777847111225128,0.500929176807404,0.372818470001221,-0.779156446456909,0.503906428813934,0.507661521434784,-0.766038417816162,0.394290417432785,0.368608325719833,-0.840796709060669,0.396470606327057,0.263091683387756,-0.881567120552063,0.39194667339325,0.372884482145309,-0.775380849838257,0.509648561477661,0.381044238805771,-0.77396559715271,0.505749464035034,0.182159259915352,-0.789885938167572,0.5855752825737,0.258690387010574,-0.86880886554718,0.422197133302689,0.369762241840363,-0.830865323543549,0.415859043598175,0.167426735162735,-0.89049357175827,0.423071682453156,0.431195199489594,-0.630419135093689,0.645478427410126,0.37756085395813,-0.646995484828949,0.662453591823578,0.494344770908356,-0.607368469238281,0.621873676776886,0.421396106481552,-0.673338353633881,0.607487320899963,0.139341175556183,-0.671329915523529,0.72794246673584,0.376500070095062,-0.677469074726105,0.631888747215271,0.484606295824051,-0.565572202205658,0.667296648025513,0.377877831459045,-0.625918924808502,0.682227194309235,0.238481566309929,-0.687112331390381,0.686296701431274,0.377340346574783,-0.655461251735687,0.654205560684204,0.136407896876335,-0.682095468044281,0.718427956104279,0.0597907602787018,-0.681666076183319,0.729216337203979,0.377469718456268,-0.650755286216736,0.658812761306763,0.0626718401908875,-0.73412024974823,0.676121115684509,0.241349294781685,-0.696848571300507,0.675390720367432,
  646. 0.314932376146317,-0.941589295864105,0.119277611374855,0.264851838350296,-0.955267548561096,0.13159567117691,0.391593456268311,-0.914765059947968,0.0992946997284889,0.294512778520584,-0.953272640705109,0.0673329457640648,0.0351303145289421,-0.977535665035248,0.207822099328041,0.255775362253189,-0.962572574615479,0.089627131819725,0.39294970035553,-0.904966831207275,0.163173943758011,0.27066233754158,-0.949348092079163,0.159625455737114,0.124504752457142,-0.980474889278412,0.152208879590034,0.262410700321198,-0.957452952861786,0.12010170519352,0.0300049856305122,-0.980211973190308,0.195663645863533,-0.0391736477613449,-0.975654184818268,0.215787872672081,0.263818234205246,-0.956213772296906,0.126709371805191,-0.0501497983932495,-0.988047897815704,0.14576144516468,0.124785751104355,-0.982687771320343,0.136943131685257,0.0708425045013428,-0.726704597473145,0.683287501335144,0.0575553886592388,-0.726637184619904,0.684606313705444,-0.134296774864197,-0.711270809173584,0.689969718456268,0.180513635277748,-0.733773708343506,0.654974043369293,0.0581068992614746,-0.724151790142059,0.687188267707825,0.0709349736571312,-0.725702702999115,0.684341967105865,-0.0699390545487404,-0.7237788438797,0.686478555202484,0.0709460899233818,-0.725582003593445,0.684468746185303,-0.134815141558647,-0.718069612979889,0.682789087295532,0.07332593947649,-0.69864410161972,0.711702048778534,0.172236695885658,-0.714312374591827,0.678301155567169,0.188322633504868,-0.716127455234528,0.672083377838135,-0.0690528228878975,-0.729431688785553,0.680559396743774,0.167352750897408,-0.69089663028717,0.703317165374756,0.0722180977463722,-0.711464583873749,0.699001252651215,0.210034161806107,-0.723364651203156,0.657745599746704,0.18640761077404,-0.720525503158569,0.667903602123261,0.173154786229134,-0.718729496002197,0.673383474349976,0.185302868485451,-0.705050647258759,0.684519171714783,0.171644985675812,-0.711468279361725,0.681432962417603,-0.0582651123404503,-0.792266011238098,0.607387602329254,0.211664170026779,-0.693535685539246,0.688626646995544,0.171741634607315,-0.711932599544525,0.680923521518707,
  647. 0.185746371746063,-0.705658078193665,0.683772504329681,-0.169463992118835,0.648905098438263,-0.74175751209259,-0.250627160072327,0.676076591014862,-0.692897260189056,-0.350445002317429,0.701161623001099,-0.620935440063477,-0.173499077558517,0.642719447612762,-0.746196985244751,-0.0580360814929008,0.605230987071991,-0.793931484222412,-0.250835001468658,0.662081480026245,-0.706208169460297,-0.387747526168823,0.592212378978729,-0.706354320049286,-0.250833004713058,0.611887753009796,-0.750117421150208,-0.321790337562561,0.603401243686676,-0.729628622531891,-0.250944584608078,0.625911414623261,-0.738418519496918,-0.0585301965475082,0.603689730167389,-0.795067846775055,-0.182783663272858,0.620855510234833,-0.762317895889282,-0.250084459781647,0.571877419948578,-0.781290054321289,-0.17946058511734,0.591617703437805,-0.785991489887238,-0.307511746883392,0.553205549716949,-0.774209380149841,-0.0554950758814812,0.613108694553375,-0.788046956062317,-0.0253101140260696,0.608690679073334,-0.793003857135773,-0.18327833712101,0.625334739685059,-0.758528649806976,-0.118631467223167,0.60936427116394,-0.783965408802032,-0.293186575174332,0.505022525787354,-0.811784386634827,-0.177767634391785,0.57722532749176,-0.797000348567963,-0.178942441940308,0.587179720401764,-0.789429903030396,-0.0250343009829521,0.610158085823059,-0.791884064674377,-0.115941390395164,0.598394274711609,-0.792768478393555,-0.204454973340034,0.793424963951111,-0.57330197095871,-0.269741177558899,0.792423725128174,-0.547087132930756,-0.391818225383759,0.7793989777565,-0.488892406225204,-0.205703690648079,0.79010021686554,-0.577431976795197,-0.0661635771393776,0.786761343479156,-0.613701045513153,-0.266790628433228,0.786276698112488,-0.557307600975037,-0.39211305975914,0.694420218467712,-0.603347301483154,-0.24981901049614,0.750294327735901,-0.61208575963974,-0.305829793214798,0.730671525001526,-0.61039936542511,-0.265980303287506,0.784582376480103,-0.56007593870163,-0.0657916963100433,0.810350179672241,-0.582240641117096,-0.189273059368134,0.798493206501007,-0.571475565433502,
  648. -0.177598461508751,0.78025096654892,-0.599722623825073,-0.297141760587692,0.721530139446259,-0.625380754470825,-0.248464375734329,0.747380375862122,-0.61618834733963,-0.0656561478972435,0.817388355731964,-0.57233339548111,-0.0351806432008743,0.819243788719177,-0.57236522436142,-0.191275000572205,0.801556527614594,-0.56649911403656,-0.126441583037376,0.803524792194366,-0.581687569618225,-0.269043326377869,0.690940856933594,-0.670981585979462,-0.172123193740845,0.771480202674866,-0.612529098987579,-0.175610229372978,0.777081608772278,-0.604404866695404,-0.0353557989001274,0.820222139358521,-0.570951640605927,-0.120202630758286,0.796387553215027,-0.592721045017242,-0.0500345751643181,0.784442603588104,-0.618179976940155,-0.046556256711483,0.784226536750793,-0.618725597858429,0.141431897878647,0.758089900016785,-0.636629343032837,-0.166008085012436,0.796394526958466,-0.581547141075134,-0.0473607778549194,0.782135248184204,-0.621306300163269,-0.0504704304039478,0.78266566991806,-0.620392739772797,0.0811891630291939,0.770944476127625,-0.631706416606903,-0.0508290603756905,0.781197607517242,-0.622211277484894,0.142189934849739,0.761536300182343,-0.632332742214203,-0.056432880461216,0.75752854347229,-0.650358378887177,-0.164758622646332,0.779074728488922,-0.6048943400383,-0.176073864102364,0.78070330619812,-0.599583446979523,0.0809725895524025,0.776406645774841,-0.625008881092072,-0.162301287055016,0.753851056098938,-0.636684238910675,-0.0535960234701633,0.769683003425598,-0.636172711849213,-0.202618509531021,0.7889084815979,-0.580145835876465,-0.173590898513794,0.784640192985535,-0.595152199268341,-0.165150254964828,0.783245027065277,-0.599376857280731,-0.174403443932533,0.76162451505661,-0.624108612537384,-0.163478076457977,0.765742719173431,-0.622023403644562,0.0784630179405212,0.828013122081757,-0.555191695690155,-0.210081279277802,0.748719215393066,-0.628717243671417,-0.163532376289368,0.766299188137054,-0.62132340669632,-0.174788996577263,0.762239575386047,-0.623249232769012,-0.193432971835136,0.469756484031677,-0.861343443393707,
  649. -0.266774475574493,0.490086287260056,-0.829847574234009,-0.379923909902573,0.515605211257935,-0.767990291118622,-0.195132702589035,0.465398073196411,-0.86332380771637,-0.0654714778065681,0.43340477347374,-0.898818016052246,-0.265040785074234,0.479243338108063,-0.836707353591919,-0.395590245723724,0.388143658638,-0.832377851009369,-0.25485372543335,0.418980866670609,-0.871495604515076,-0.302105784416199,0.409802377223969,-0.860693991184235,-0.264393359422684,0.475243747234344,-0.839189946651459,-0.0607908889651299,0.468185871839523,-0.881536364555359,-0.189476847648621,0.475023657083511,-0.859331727027893,-0.253826081752777,0.413180112838745,-0.874559581279755,-0.180926144123077,0.442336648702621,-0.878409922122955,-0.295780181884766,0.394924759864807,-0.869798004627228,-0.0593234300613403,0.478805214166641,-0.875914514064789,-0.0276631154119968,0.477301836013794,-0.8783038854599,-0.190728664398193,0.479841262102127,-0.856373131275177,-0.1183200776577,0.469850152730942,-0.874780654907227,-0.274530589580536,0.345661193132401,-0.897302269935608,-0.176653191447258,0.426138639450073,-0.887242674827576,-0.179703652858734,0.437693506479263,-0.880982995033264,-0.0276369173079729,0.47883078455925,-0.877472102642059,-0.113298311829567,0.457151174545288,-0.882142961025238,-0.0719281584024429,0.200002312660217,0.977151691913605,0.0111352782696486,0.193906351923943,0.98095691204071,-0.095520868897438,0.201485887169838,0.974822640419006,0.0678777247667313,0.267314195632935,0.961215853691101,0.00479152146726847,0.251368224620819,0.96787965297699,-0.0753593444824219,0.229565531015396,0.970371425151825,-0.252597004175186,0.208319142460823,0.94487988948822,-0.0715923979878426,0.19713020324707,0.977759778499603,-0.095733180642128,0.19899944961071,0.975312530994415,-0.0736655071377754,0.214922472834587,0.973848879337311,-0.268873274326324,0.158693239092827,0.950012445449829,0.0731112584471703,0.250832855701447,0.965265572071075,-0.253308206796646,0.168634906411171,0.952574014663696,-0.270716190338135,0.166706100106239,0.948114991188049,
  650. -0.0701926797628403,0.185195505619049,0.980191648006439,-0.210562571883202,0.181410580873489,0.960600733757019,0.0504869595170021,0.321006655693054,0.94573038816452,-0.266396313905716,0.148034691810608,0.952427804470062,-0.551841378211975,0.102808482944965,0.827587783336639,-0.271036893129349,0.168107971549034,0.947775661945343,-0.25327056646347,0.171519994735718,0.952068746089935,-0.208430424332619,0.177195072174072,0.96185165643692,-0.266634404659271,0.1490538418293,0.952202260494232,-0.531011939048767,0.00420668674632907,0.847353935241699,0.492088586091995,-0.065655454993248,0.868065774440765,0.4418044090271,-0.0680282413959503,0.894528388977051,0.55743932723999,-0.0621156468987465,0.827890753746033,0.490072757005692,-0.0793684646487236,0.868060648441315,0.222715064883232,-0.00543829100206494,0.974868535995483,0.441807568073273,-0.0656334683299065,0.894705832004547,0.551466166973114,-0.0241019055247307,0.833849012851715,0.441807955503464,-0.0648679807782173,0.894761323928833,0.308184802532196,-0.109718963503838,0.9449782371521,0.441778093576431,-0.0755521506071091,0.893937408924103,0.212934821844101,-0.0579013451933861,0.975349307060242,0.13633967936039,-0.0514697059988976,0.98932421207428,0.441779017448425,-0.052455261349678,0.895589053630829,0.138786256313324,-0.107221946120262,0.984500885009766,0.301978707313538,-0.0794518887996674,0.949998080730438,0.672232627868652,-0.502332925796509,0.543842852115631,0.453843176364899,-0.643571257591248,0.616313636302948,0.583014011383057,-0.568530142307281,0.580403506755829,0.673427402973175,-0.539611279964447,0.505287230014801,0.461069881916046,-0.62004941701889,0.634786069393158,0.450942993164063,-0.622631192207336,0.639516115188599,0.584823131561279,-0.57291454076767,0.574239432811737,0.456643044948578,-0.667028963565826,0.588684499263763,0.355805039405823,-0.724968135356903,0.589766025543213,0.450367987155914,-0.618758320808411,0.643666684627533,0.461707890033722,-0.616103827953339,0.638155102729797,0.26509952545166,-0.646629810333252,0.715256690979004,0.348724573850632,-0.708573937416077,0.61344450712204,
  651. 0.455397546291351,-0.656073570251465,0.601814448833466,0.271680951118469,-0.739101946353912,0.616374731063843,0.502507567405701,-0.526110827922821,0.686071217060089,0.452743768692017,-0.542596518993378,0.707539618015289,0.569849371910095,-0.500031471252441,0.652104496955872,0.496938288211823,-0.555419683456421,0.666754364967346,0.236999750137329,-0.553580343723297,0.798360764980316,0.45230758190155,-0.558636426925659,0.69522887468338,0.560266315937042,-0.453480213880539,0.693150341510773,0.453039288520813,-0.52049320936203,0.723769545555115,0.318575233221054,-0.587385773658752,0.743967711925507,0.452818214893341,-0.538857877254486,0.710343599319458,0.233778655529022,-0.567857146263123,0.789231240749359,0.152399152517319,-0.570663511753082,0.806918621063232,0.452951669692993,-0.53022712469101,0.716724455356598,0.154570117592812,-0.624788224697113,0.765341699123383,0.317097902297974,-0.581859529018402,0.748924851417542,0.601038813591003,-0.425396233797073,0.676602125167847,0.559082686901093,-0.44120192527771,0.701973974704742,0.661678194999695,-0.399244457483292,0.63465416431427,0.599234700202942,-0.436970293521881,0.67080157995224,0.350569248199463,-0.437346518039703,0.828148066997528,0.55910325050354,-0.439800590276718,0.702836453914642,0.657236695289612,-0.373507350683212,0.654623687267303,0.559054732322693,-0.442956745624542,0.700890243053436,0.442819654941559,-0.509580135345459,0.737725496292114,0.558658063411713,-0.459956765174866,0.690174639225006,0.338624596595764,-0.49790021777153,0.798391342163086,0.265981435775757,-0.50347101688385,0.822052836418152,0.559218525886536,-0.427524298429489,0.710279941558838,0.26737254858017,-0.537690699100494,0.799625277519226,0.436594933271408,-0.482260167598724,0.759480118751526,0.604459404945374,-0.685542821884155,0.405783146619797,0.555385947227478,-0.714019894599915,0.426288723945618,0.667249441146851,-0.643115520477295,0.375740230083466,0.601804256439209,-0.69432920217514,0.394637405872345,0.351216346025467,-0.758902668952942,0.548373818397522,0.555535197257996,-0.712495684623718,0.428638130426407,
  652. 0.663246273994446,-0.62484872341156,0.41190841794014,0.555533766746521,-0.712510406970978,0.428615510463715,0.438658893108368,-0.785311996936798,0.436879336833954,0.554969131946564,-0.718034446239471,0.420042634010315,0.339712589979172,-0.791833817958832,0.507537841796875,0.267241448163986,-0.805440604686737,0.52900618314743,0.556153178215027,-0.705560088157654,0.439179539680481,0.26660367846489,-0.834999203681946,0.481351017951965,0.434617459774017,-0.772150337696075,0.463563978672028,0.687966227531433,-0.664285778999329,0.29227888584137,0.649851262569427,-0.698846042156219,0.298843860626221,0.746740102767944,-0.603426337242126,0.279742538928986,0.687758326530457,-0.669541418552399,0.280540317296982,0.456835269927979,-0.803757071495056,0.381151080131531,0.649655938148499,-0.698233962059021,0.300693452358246,0.737365484237671,-0.595850884914398,0.318204343318939,0.649493038654327,-0.697727203369141,0.302217870950699,0.543550491333008,-0.791557848453522,0.279265224933624,0.65059769153595,-0.701235830783844,0.291532158851624,0.454156816005707,-0.825843989849091,0.334250628948212,0.379006326198578,-0.858739137649536,0.344849646091461,0.648201286792755,-0.693821310997009,0.313762962818146,0.386936128139496,-0.874422490596771,0.292687296867371,0.535262942314148,-0.786528408527374,0.308004289865494,0.787775456905365,0.0651112273335457,0.612511515617371,0.595856904983521,0.027659360319376,0.802614152431488,0.713550329208374,0.0498123988509178,0.698830962181091,0.78862327337265,0.0242158863693476,0.614399671554565,0.603709399700165,0.069737046957016,0.794148445129395,0.592282712459564,0.0721137151122093,0.802496612071991,0.714501321315765,0.0452964752912521,0.698166310787201,0.597803175449371,-0.00664414931088686,0.801615357398987,0.508184134960175,-0.0422621704638004,0.86021089553833,0.591911196708679,0.0760250240564346,0.802409708499908,0.604060292243958,0.0730926468968391,0.793579638004303,0.419916033744812,0.112763993442059,0.900530278682709,0.503114521503448,-0.0189518090337515,0.864011883735657,0.597192406654358,0.00554716167971492,0.802078902721405,
  653. 0.425542682409287,-0.0377810895442963,0.904149353504181,0.608398020267487,-0.791739523410797,-0.0547761470079422,0.560854732990265,-0.826628267765045,-0.0461284890770912,0.666507303714752,-0.742603242397308,-0.0656387135386467,0.604224920272827,-0.79385906457901,-0.0685572847723961,0.37258368730545,-0.926325082778931,0.0557076707482338,0.56123948097229,-0.82649952173233,-0.0436898432672024,0.666938424110413,-0.745043814182281,-0.0101424790918827,0.563835918903351,-0.825457811355591,-0.0266202166676521,0.436315327882767,-0.898688793182373,-0.0445805974304676,0.565482497215271,-0.8246209025383,-0.0151694808155298,0.369138985872269,-0.928276658058167,0.0451547354459763,0.285053014755249,-0.9560506939888,0.0686430782079697,0.563223600387573,-0.825732231140137,-0.0307477340102196,0.274566233158112,-0.961163878440857,-0.0278811268508434,0.435819089412689,-0.899540603160858,-0.0298063568770885,0.681338489055634,0.0723147019743919,0.728387653827667,0.4553582072258,0.0501735992729664,0.88889354467392,0.589426457881927,0.0633628144860268,0.805333197116852,0.68047046661377,0.0328359715640545,0.732039511203766,0.471669614315033,0.0925700515508652,0.87690281867981,0.453112363815308,0.0971915200352669,0.886139333248138,0.588479995727539,0.0683933049440384,0.805613815784454,0.456135094165802,0.0253239087760448,0.88955020904541,0.362359941005707,-0.003418929874897,0.932031989097595,0.452706664800644,0.103934675455093,0.885581433773041,0.472670316696167,0.0984399244189262,0.875723898410797,0.274964541196823,0.148043185472488,0.94998824596405,0.352954149246216,0.0414728298783302,0.934720993041992,0.454981505870819,0.0597912669181824,0.888491332530975,0.276076406240463,0.0278463624417782,0.960732281208038,-0.214902386069298,0.0850620046257973,0.972924172878265,-0.405597567558289,0.136632665991783,0.90378212928772,-0.251645892858505,0.0950893759727478,0.963136732578278,-0.216261386871338,0.0789740309119225,0.973136305809021,-0.250467628240585,0.0856398940086365,0.964329719543457,-0.078392468392849,0.0516400337219238,0.995584309101105,
  654. -0.405573964118958,0.107943944633007,0.907666146755219,-0.330377548933029,0.125103861093521,0.935521125793457,-0.257009863853455,0.140600830316544,0.95612621307373,-0.256199777126312,0.133435949683189,0.95736962556839,-0.154664918780327,0.135125115513802,0.978682816028595,-0.0777739137411118,0.135438188910484,0.987728655338287,-0.255121260881424,0.124069042503834,0.958916068077087,-0.315638601779938,0.0849867090582848,0.945065915584564,-0.164873465895653,0.179585367441177,0.969827711582184,-0.0778904780745506,0.124091029167175,0.989208996295929,-0.15118682384491,0.120235674083233,0.981165587902069,-0.0552008375525475,0.125143527984619,0.99060183763504,-0.294864058494568,0.030782587826252,0.955043256282806,-0.146566122770309,0.111531652510166,0.982893228530884,-0.148855820298195,0.110326908528805,0.982685029506683,-0.14953301846981,0.113199904561043,0.982255399227142,-0.147495284676552,0.113899104297161,0.982482671737671,-0.0574909746646881,0.144021704792976,0.987903118133545,0.77551007270813,-0.617299735546112,0.132382601499558,0.574525535106659,-0.807532846927643,0.133459314703941,0.695624589920044,-0.705776870250702,0.134110420942307,0.775115430355072,-0.623271584510803,0.103579267859459,0.580510973930359,-0.792610704898834,0.186481386423111,0.571397006511688,-0.798455953598022,0.189666882157326,0.697183430194855,-0.706020772457123,0.124378733336926,0.575610518455505,-0.812367677688599,0.0934417694807053,0.489141464233398,-0.869211494922638,0.0721953138709068,0.570785582065582,-0.796915352344513,0.197812631726265,0.581528544425964,-0.790124535560608,0.193721383810043,0.399387657642365,-0.880802571773529,0.254315555095673,0.481518477201462,-0.869078814983368,0.113322533667088,0.57485830783844,-0.808763206005096,0.124258071184158,0.400459766387939,-0.910473465919495,0.103296168148518,0.654190719127655,-0.730633616447449,0.195471361279488,0.613782823085785,-0.764462471008301,0.197149217128754,0.709832549095154,-0.67768269777298,0.19205179810524,0.653750360012054,-0.734391450881958,0.182427406311035,0.404919147491455,-0.874696433544159,0.266358464956284,
  655. 0.613647222518921,-0.764200091362,0.198583081364632,0.700955390930176,-0.675226390361786,0.229632139205933,0.613404393196106,-0.763732254505157,0.201117008924484,0.495860695838928,-0.853004515171051,0.162804886698723,0.614492952823639,-0.765852451324463,0.189389988780022,0.40149861574173,-0.890236258506775,0.215124204754829,0.332860887050629,-0.916888892650604,0.220268979668617,0.612220346927643,-0.761488437652588,0.212888792157173,0.340276598930359,-0.925520956516266,0.166201144456863,0.487497568130493,-0.851551294326782,0.192889973521233,0.688646793365479,-0.722726285457611,0.0585862919688225,0.645087242126465,-0.76139909029007,0.0642953440546989,0.746101975440979,-0.663937628269196,0.0501881539821625,0.681975960731506,-0.731086730957031,0.0205187126994133,0.453461796045303,-0.882097899913788,0.12757633626461,0.643880248069763,-0.764047980308533,0.0406065955758095,0.740460216999054,-0.663662672042847,0.10616272687912,0.645792901515961,-0.758947312831879,0.0833696499466896,0.529795408248901,-0.84621125459671,0.0569503493607044,0.644003450870514,-0.763828217983246,0.0427320376038551,0.445109039545059,-0.891182541847229,0.0875889956951141,0.371086984872818,-0.923001945018768,0.101793728768826,0.645668983459473,-0.759467780590057,0.0795001164078712,0.371124565601349,-0.926608264446259,0.0605277121067047,0.527790009975433,-0.846333801746368,0.0718111395835876,0.730003476142883,-0.427761524915695,-0.533024370670319,0.689633846282959,-0.452124655246735,-0.56567519903183,0.77988189458847,-0.393245935440063,-0.486972093582153,0.728514134883881,-0.41773310303688,-0.542923748493195,0.50397801399231,-0.587635397911072,-0.633001446723938,0.689620852470398,-0.453860461711884,-0.564299345016479,0.772066116333008,-0.439810931682587,-0.45878130197525,0.689392685890198,-0.467755317687988,-0.553120851516724,0.579097807407379,-0.490502655506134,-0.651193499565125,0.689137041568756,-0.476412951946259,-0.5460045337677,0.502510488033295,-0.579674482345581,-0.641452014446259,0.425407767295837,-0.610287547111511,-0.668264508247375,0.689468085765839,-0.464405447244644,-0.555843055248261,
  656. 0.431039214134216,-0.533898890018463,-0.727431893348694,0.576390981674194,-0.503140151500702,-0.643912672996521,0.787514567375183,-0.561907231807709,-0.253142714500427,0.587156176567078,-0.728331089019775,-0.35324427485466,0.70893532037735,-0.638921856880188,-0.298646569252014,0.786490440368652,-0.553562581539154,-0.273863852024078,0.601719379425049,-0.742916464805603,-0.293272823095322,0.586654007434845,-0.754633784294128,-0.293879508972168,0.708566784858704,-0.640519559383392,-0.296087592840195,0.58663672208786,-0.716493904590607,-0.377483606338501,0.493872761726379,-0.757288634777069,-0.427321434020996,0.586498439311981,-0.756707787513733,-0.288813263177872,0.602488577365875,-0.744050860404968,-0.288783431053162,0.423478245735168,-0.860525727272034,-0.283128708600998,0.488497912883759,-0.776992917060852,-0.397053897380829,0.58712363243103,-0.7271768450737,-0.355667918920517,0.418965935707092,-0.804201066493988,-0.421578198671341,-0.202216446399689,0.703862369060516,0.680945158004761,-0.401456654071808,0.700606644153595,0.589900732040405,-0.255968391895294,0.706303000450134,0.660012304782867,-0.203374668955803,0.700132131576538,0.684436857700348,-0.254861980676651,0.699400365352631,0.66774582862854,-0.0778802782297134,0.693548023700714,0.716188371181488,-0.400913238525391,0.61239230632782,0.681354820728302,-0.316232115030289,0.647323310375214,0.69351989030838,-0.250016808509827,0.670192182064056,0.698809027671814,-0.254115909337997,0.69479900598526,0.672814607620239,-0.158027321100235,0.70861804485321,0.687668442726135,-0.0775492340326309,0.71487832069397,0.694935321807861,-0.246166974306107,0.647965312004089,0.720793128013611,-0.29728439450264,0.613912999629974,0.73125433921814,-0.155412122607231,0.700961768627167,0.696060121059418,-0.0775272995233536,0.716128051280975,0.693649888038635,-0.157532706856728,0.707172572612762,0.689268112182617,-0.0580742470920086,0.71759706735611,0.694033086299896,-0.30002436041832,0.618760287761688,0.726031064987183,-0.145386159420013,0.702920973300934,0.696250677108765,-0.154605478048325,0.698593556880951,0.698615908622742,
  657. -0.155498504638672,0.701215207576752,0.695785582065582,-0.146232515573502,0.704359471797943,0.694617807865143,-0.0602939613163471,0.73007732629776,0.680699527263641,-0.00472050905227661,0.786211967468262,0.617938876152039,-0.0519470348954201,0.743495166301727,0.666720747947693,-0.154260367155075,0.633090794086456,0.758551239967346,0.0131388306617737,0.777082562446594,0.629261553287506,0.130833595991135,0.843671441078186,0.520673632621765,-0.0441522784531116,0.736335098743439,0.67517501115799,-0.196013033390045,0.660427391529083,0.724854826927185,-0.0556131601333618,0.746818602085114,0.66269838809967,-0.205475687980652,0.653711259365082,0.72831404209137,-0.0549575388431549,0.74622631072998,0.663419902324677,0.168913260102272,0.809714496135712,0.561988174915314,-0.00701127853244543,0.763990700244904,0.645189106464386,-0.225321009755135,0.677931308746338,0.699742555618286,-0.0500745624303818,0.74178683757782,0.668763637542725,-0.000767901365179569,0.754902780056,0.655836224555969,0.656962335109711,-0.445489346981049,0.608226716518402,0.611009299755096,-0.474296391010284,0.633806467056274,0.711391568183899,-0.406992077827454,0.57295686006546,0.656521677970886,-0.457479000091553,0.599743485450745,0.407639890909195,-0.514949023723602,0.754093647003174,0.610783696174622,-0.472450971603394,0.635400176048279,0.702499985694885,-0.380965143442154,0.601131737232208,0.610720872879028,-0.471942067146301,0.635838627815247,0.496569603681564,-0.562646865844727,0.660944104194641,0.611682772636414,-0.479975163936615,0.62886255979538,0.4042047560215,-0.558698773384094,0.724205911159515,0.333181440830231,-0.576952159404755,0.745732069015503,0.609507143497467,-0.462476074695587,0.643907606601715,0.340704888105392,-0.617397427558899,0.709042072296143,0.488198161125183,-0.542782247066498,0.68341052532196,0.691864967346191,-0.5247682929039,0.495924592018127,0.644947171211243,-0.553526043891907,0.52692699432373,0.745299875736237,-0.486898690462112,0.455475360155106,0.685019493103027,-0.556041836738586,0.470707803964615,0.451246619224548,-0.608120679855347,0.653120040893555,
  658. 0.643670201301575,-0.570382237434387,0.510247826576233,0.739652872085571,-0.451891034841537,0.498706519603729,0.645713567733765,-0.539673388004303,0.540191233158112,0.524818301200867,-0.627354502677917,0.575319230556488,0.643796741962433,-0.56891655921936,0.511722385883331,0.443033277988434,-0.640557587146759,0.627222001552582,0.372580885887146,-0.655689895153046,0.656699597835541,0.645578026771545,-0.542487323284149,0.537528216838837,0.372489541769028,-0.684123635292053,0.627077639102936,0.522662580013275,-0.617686331272125,0.587611615657806,0.731302440166473,-0.665926873683929,-0.147439181804657,0.688400745391846,-0.707848906517029,-0.158285856246948,0.780945777893066,-0.610239505767822,-0.133160203695297,0.726713418960571,-0.660877585411072,-0.187425836920738,0.506071805953979,-0.848908364772797,-0.152466088533401,0.68833315372467,-0.702235221862793,-0.181833043694496,0.773005902767181,-0.629125952720642,-0.081624761223793,0.688160121440887,-0.712088525295258,-0.139160543680191,0.579843997955322,-0.789735198020935,-0.200248271226883,0.688357353210449,-0.70279723405838,-0.179555669426918,0.499951839447021,-0.844366312026978,-0.192597180604935,0.428804576396942,-0.882186889648438,-0.194609448313713,0.688231706619263,-0.711231887340546,-0.143130525946617,0.430891811847687,-0.871820032596588,-0.232942223548889,0.577212572097778,-0.794957458972931,-0.186730712652206,0.788922965526581,-0.596567511558533,0.147335767745972,0.589475035667419,-0.788850665092468,0.173878833651543,0.709557235240936,-0.686165273189545,0.160330444574356,0.78740119934082,-0.604425370693207,0.121117599308491,0.603553950786591,-0.764945209026337,0.22490319609642,0.589133381843567,-0.7741459608078,0.23155964910984,0.709241449832916,-0.685859858989716,0.163012057542801,0.588934659957886,-0.794649362564087,0.147269904613495,0.499307215213776,-0.855922400951386,0.134496122598648,0.589028298854828,-0.772982120513916,0.23567858338356,0.604185938835144,-0.763480603694916,0.2281593978405,0.427741855382919,-0.850898802280426,0.304972440004349,0.494973629713058,-0.85297018289566,0.16565914452076,
  659. 0.589374840259552,-0.790438234806061,0.166867226362228,0.422390073537827,-0.891555428504944,0.163449227809906,0.60108482837677,-0.701261103153229,-0.383314460515976,0.365408927202225,-0.812936902046204,-0.453442543745041,0.50495582818985,-0.755730211734772,-0.417003005743027,0.600789666175842,-0.700002789497375,-0.386067301034927,0.38033589720726,-0.842430233955383,-0.381648898124695,0.367314666509628,-0.848645269870758,-0.38063257932663,0.506616711616516,-0.747241973876953,-0.430080264806747,0.363272696733475,-0.790426909923553,-0.49321237206459,0.260036915540695,-0.807926297187805,-0.528806209564209,0.367366462945938,-0.851504921913147,-0.374140620231628,0.381864547729492,-0.844365954399109,-0.375800222158432,0.179621145129204,-0.921138823032379,-0.345310747623444,0.255569994449615,-0.826602697372437,-0.501410007476807,0.364415019750595,-0.801669478416443,-0.473843544721603,0.165192991495132,-0.838761985301971,-0.518834829330444,0.429063647985458,-0.885249555110931,-0.17954857647419,0.37445279955864,-0.908743679523468,-0.184309616684914,0.496958315372467,-0.850457012653351,-0.172497153282166,0.419319003820419,-0.876742660999298,-0.235571444034576,0.143929913640022,-0.974850177764893,-0.170151114463806,0.373655438423157,-0.899711608886719,-0.225611701607704,0.486904263496399,-0.866241872310638,-0.1120236068964,0.374612361192703,-0.91382360458374,-0.156818568706512,0.233500242233276,-0.950193524360657,-0.206421926617622,0.374303221702576,-0.906461119651794,-0.195513591170311,0.14118592441082,-0.972832679748535,-0.18347504734993,0.0625059381127357,-0.982197940349579,-0.177144721150398,0.37438440322876,-0.907621324062347,-0.189894840121269,0.0650404766201973,-0.966198980808258,-0.249457895755768,0.236246973276138,-0.946485042572021,-0.219894483685493,-0.331540018320084,0.606835126876831,-0.722379744052887,-0.200780525803566,0.703963994979858,-0.68126505613327,-0.0476346760988235,0.78912091255188,-0.612388134002686,-0.357323706150055,0.655922651290894,-0.664894938468933,-0.379812508821487,0.647464036941528,-0.660706341266632,
  660. -0.200254917144775,0.702678322792053,-0.682745397090912,-0.0231142789125443,0.753308117389679,-0.657261550426483,-0.20171394944191,0.706244885921478,-0.678623378276825,0.0128295999020338,0.759620845317841,-0.650239765644073,-0.203009560704231,0.70940625667572,-0.674929559230804,-0.381054639816284,0.68137127161026,-0.624924421310425,-0.150191381573677,0.712895750999451,-0.684997916221619,-0.203890219330788,0.71155196428299,-0.672400593757629,-0.149891719222069,0.717828989028931,-0.679892659187317,0.0195156745612621,0.72350686788559,-0.690041303634644,-0.0657809227705002,0.969787836074829,0.234913662075996,-0.0612230151891708,0.970151662826538,0.234643667936325,0.132448092103004,0.966760396957397,0.218705326318741,-0.17612598836422,0.94837087392807,0.263765841722488,-0.0604452863335609,0.969000697135925,0.239549890160561,-0.0653978884220123,0.968405425548553,0.240653321146965,0.0631146058440208,0.967564046382904,0.244614869356155,-0.0649842545390129,0.966884076595306,0.246804043650627,0.133599266409874,0.961115658283234,0.241677269339561,-0.0672435909509659,0.974824607372284,0.212592229247093,-0.176473945379257,0.95275491476059,0.247214734554291,-0.181029081344604,0.951538681983948,0.248601317405701,0.0633398965001106,0.968071222305298,0.24254147708416,-0.169148668646812,0.965423703193665,0.198357954621315,-0.0668008551001549,0.973341405391693,0.219417691230774,-0.207108497619629,0.941290676593781,0.266604751348495,-0.178313463926315,0.949811339378357,0.257026642560959,-0.177879884839058,0.949932098388672,0.256880939006805,-0.181561812758446,0.961886525154114,0.204474255442619,-0.170923754572868,0.962649583816528,0.209978461265564,0.0549789294600487,0.946812629699707,0.317053943872452,-0.210309624671936,0.958791553974152,0.191019833087921,-0.171010106801987,0.962509989738464,0.210547149181366,-0.181910842657089,0.961668491363525,0.205188065767288,-0.193511202931404,0.975388169288635,0.105695389211178,-0.2535540163517,0.956882834434509,0.141723722219467,-0.362437784671783,0.908682882785797,0.207206130027771,-0.19370011985302,0.975389957427979,0.105331666767597,
  661. -0.0624949112534523,0.997233152389526,0.040256954729557,-0.253586113452911,0.95785117149353,0.134964153170586,-0.385811507701874,0.914999008178711,0.118009597063065,-0.253604739904404,0.960918068885803,0.111000671982765,-0.317309111356735,0.941370129585266,0.114617742598057,-0.253597736358643,0.961220383644104,0.108367674052715,-0.0578802600502968,0.996647238731384,0.0578297451138496,-0.183878391981125,0.978767037391663,0.0905746147036552,-0.253454476594925,0.963641464710236,0.0845934152603149,-0.184581130743027,0.977903544902802,0.0981559604406357,-0.308573782444,0.948377370834351,0.073229655623436,-0.0562729611992836,0.996366620063782,0.0639288872480392,-0.0312224961817265,0.997792780399323,0.058607179671526,-0.183871313929558,0.978775382041931,0.0904988422989845,-0.126247003674507,0.979664444923401,0.155946269631386,-0.304106771945953,0.951163053512573,0.0529913306236267,-0.186727717518806,0.97480171918869,0.122042834758759,-0.186471417546272,0.975211024284363,0.119129419326782,-0.0194059945642948,0.990077078342438,0.139179453253746,-0.12096880376339,0.98443728685379,0.127475365996361,-0.200904920697212,0.913164734840393,0.354637026786804,-0.274521112442017,0.887667000293732,0.369709998369217,-0.394282281398773,0.832233667373657,0.389780163764954,-0.200936615467072,0.913206875324249,0.354510575532913,-0.0718641728162766,0.939913868904114,0.33376270532608,-0.272809267044067,0.890752255916595,0.363504767417908,-0.395013958215714,0.867045760154724,0.303637683391571,-0.266596078872681,0.901376843452454,0.341242283582687,-0.325036883354187,0.88805764913559,0.32512241601944,-0.266077935695648,0.902223885059357,0.339403361082077,-0.0717146247625351,0.934480607509613,0.348716229200363,-0.187052965164185,0.919827580451965,0.344860076904297,-0.190144285559654,0.91612845659256,0.352921962738037,-0.306745558977127,0.906096875667572,0.291368514299393,-0.259746193885803,0.912115395069122,0.317139446735382,-0.0716557204723358,0.932445168495178,0.354135036468506,-0.0293465554714203,0.933919906616211,0.356275826692581,-0.187100365757942,0.919771611690521,0.344983577728271,
  662. -0.156159639358521,0.896790862083435,0.413981139659882,-0.297773838043213,0.914173126220703,0.274987906217575,-0.198498249053955,0.905618011951447,0.374772608280182,-0.197013005614281,0.90754246711731,0.370880782604218,-0.037501085549593,0.900729358196259,0.432758927345276,-0.145009011030197,0.908245086669922,0.392508864402771,0.0505105406045914,-0.947427928447723,-0.315957397222519,0.0463595800101757,-0.947832405567169,-0.315379977226257,-0.140974879264832,-0.948517560958862,-0.283620357513428,0.167791903018951,-0.922435760498047,-0.347790539264679,0.0468133427202702,-0.948392570018768,-0.31362396478653,0.0506951995193958,-0.94780421257019,-0.314796954393387,-0.0745215713977814,-0.946423947811127,-0.314210563898087,0.0487789362668991,-0.943836629390717,-0.326792061328888,-0.1440419703722,-0.941423237323761,-0.304916679859161,0.05301683396101,-0.952425420284271,-0.300125062465668,0.171626284718513,-0.922091245651245,-0.346831679344177,0.168696373701096,-0.923042774200439,-0.345736443996429,-0.0741062834858894,-0.941149771213531,-0.329765558242798,0.169049263000488,-0.937585353851318,-0.303901672363281,0.0500264689326286,-0.946435272693634,-0.318994730710983,0.203898593783379,-0.908791720867157,-0.364037185907364,0.16712997853756,-0.921988725662231,-0.349291205406189,0.171871796250343,-0.920382678508759,-0.351220458745956,0.17204162478447,-0.937606871128082,-0.30215060710907,0.169018745422363,-0.937745869159698,-0.303422898054123,-0.0722034797072411,-0.9169842004776,-0.392334938049316,0.213768482208252,-0.93382054567337,-0.286848902702332,0.169115707278252,-0.937234044075012,-0.304946571588516,0.172594338655472,-0.937047362327576,-0.303567796945572,-0.194927901029587,0.978165984153748,-0.0720721036195755,-0.265500545501709,0.963313758373261,-0.0391935259103775,-0.380112171173096,0.924793183803558,0.0165034495294094,-0.195415437221527,0.977967858314514,-0.0734277963638306,-0.0625076293945313,0.990715622901917,-0.120729200541973,-0.264352291822433,0.963244378566742,-0.047729853540659,-0.392499208450317,0.915530443191528,-0.0880245417356491,
  663. -0.259250193834305,0.962151110172272,-0.0839914828538895,-0.320205539464951,0.943434178829193,-0.0860251858830452,-0.262431114912033,0.9629767537117,-0.0616901144385338,-0.0588473230600357,0.994145512580872,-0.0906180888414383,-0.185219392180443,0.979969263076782,-0.0731716603040695,-0.256846159696579,0.961240231990814,-0.100236281752586,-0.184155359864235,0.979797422885895,-0.0779992491006851,-0.309601843357086,0.943728446960449,-0.116289600729942,-0.0581316687166691,0.994703054428101,-0.0847732275724411,-0.0327276177704334,0.995685160160065,-0.0868333280086517,-0.185127034783363,0.97995525598526,-0.0735916197299957,-0.13323600590229,0.989807486534119,-0.0502935647964478,-0.290828287601471,0.941997945308685,-0.167507946491241,-0.182260021567345,0.979434311389923,-0.0865436196327209,-0.18308262526989,0.979600787162781,-0.0828437805175781,-0.0321754440665245,0.998408138751984,-0.0463242568075657,-0.126935839653015,0.989482522010803,-0.0693671479821205,-0.0706146508455276,-0.718103349208832,0.692344725131989,0.019547164440155,-0.724779367446899,0.688703775405884,-0.0963027030229568,-0.715112268924713,0.692344009876251,0.0671600624918938,-0.658092617988586,0.749935805797577,0.011487633921206,-0.670856833457947,0.741497933864594,-0.0758000984787941,-0.686353266239166,0.723307430744171,-0.255684107542038,-0.684462308883667,0.682742297649384,-0.0704582035541534,-0.7190260887146,0.6914022564888,-0.0963785424828529,-0.715751469135284,0.691672563552856,-0.0740045383572578,-0.697608172893524,0.712647378444672,-0.270752549171448,-0.708453714847565,0.651756405830383,0.0725772902369499,-0.670763850212097,0.738111436367035,-0.256261706352234,-0.70823460817337,0.657824993133545,-0.271565020084381,-0.705838561058044,0.654251039028168,-0.0697994083166122,-0.722890019416809,0.687428653240204,-0.217749744653702,-0.698500156402588,0.68167632818222,0.0466657802462578,-0.60868501663208,0.79203850030899,-0.270477861166,-0.709333002567291,0.650913596153259,-0.547911405563354,-0.637387096881866,0.541784942150116,-0.272986471652985,-0.701210677623749,0.658621251583099,
  664. -0.256157368421555,-0.702917277812958,0.663544058799744,-0.213883846998215,-0.704608559608459,0.676594793796539,-0.269852668046951,-0.71132504940033,0.648996353149414,-0.529129147529602,-0.702803075313568,0.475489437580109,-0.104598626494408,-0.603344082832336,-0.790591537952423,0.00746238231658936,-0.509156584739685,-0.860641539096832,0.140064150094986,-0.380092024803162,-0.914282321929932,-0.171496361494064,-0.500731706619263,-0.848443746566772,-0.189399540424347,-0.504013478755951,-0.842673301696777,-0.0172312874346972,-0.465543627738953,-0.884857296943665,0.173584088683128,-0.423605352640152,-0.889059782028198,0.00367484986782074,-0.502567052841187,-0.864530444145203,0.204103872179985,-0.407468348741531,-0.890118598937988,-0.0190626978874207,-0.462247729301453,-0.886545896530151,-0.197692483663559,-0.468638241291046,-0.860985398292542,0.044042456895113,-0.456410348415375,-0.888678789138794,-0.0171332210302353,-0.465719819068909,-0.884766340255737,0.043974444270134,-0.45597231388092,-0.888906955718994,0.208876803517342,-0.420660704374313,-0.882844865322113,0.673042297363281,-0.728696167469025,-0.126554623246193,0.452573388814926,-0.867460131645203,-0.206616342067719,0.581547498703003,-0.796970307826996,-0.163220793008804,0.674404382705688,-0.716316282749176,-0.179080307483673,0.457474887371063,-0.871578931808472,-0.176258057355881,0.449653834104538,-0.875702142715454,-0.175946861505508,0.583421051502228,-0.794064462184906,-0.170533731579781,0.455356687307358,-0.856914222240448,-0.241554021835327,0.357470273971558,-0.888332307338715,-0.288237392902374,0.449079513549805,-0.877091646194458,-0.170405089855194,0.458130538463593,-0.87227863073349,-0.171016499400139,0.267268389463425,-0.951030552387238,-0.155268922448158,0.350394934415817,-0.899271965026855,-0.261788964271545,0.454113841056824,-0.862054705619812,-0.225038513541222,0.273682445287704,-0.918377161026001,-0.285799443721771,0.506362080574036,-0.859515964984894,-0.0694961175322533,0.456966936588287,-0.886588931083679,-0.0717031732201576,0.572217047214508,-0.817436635494232,-0.0660686865448952,
  665. 0.500484108924866,-0.859252750873566,-0.105832003057003,0.234922394156456,-0.971510350704193,-0.0312913469970226,0.45660412311554,-0.884765446186066,-0.0932899788022041,0.562749147415161,-0.826618850231171,-0.00383987976238132,0.457117289304733,-0.888364732265472,-0.0430338867008686,0.318677306175232,-0.943611621856689,-0.08967624604702,0.457012206315994,-0.886892020702362,-0.0675472170114517,0.231654852628708,-0.971584379673004,-0.0485780313611031,0.152091071009636,-0.987495005130768,-0.0414965525269508,0.457097560167313,-0.887672483921051,-0.0556744858622551,0.154508039355278,-0.981895744800568,-0.109580911695957,0.317192256450653,-0.944774746894836,-0.0824006199836731,0.60141134262085,-0.798879563808441,0.00978986918926239,0.560321986675262,-0.828211188316345,0.0102706886827946,0.660780251026154,-0.750525295734406,0.00901331659406424,0.599530279636383,-0.800345778465271,-0.00316996825858951,0.352709621191025,-0.932190239429474,0.0813475400209427,0.56033855676651,-0.828183948993683,0.0114953648298979,0.656393587589264,-0.753296613693237,0.0411312989890575,0.560298085212708,-0.828246533870697,0.00859952904284,0.439329922199249,-0.897863566875458,-0.0288128666579723,0.559873044490814,-0.828490734100342,-0.0120576424524188,0.340721040964127,-0.940049469470978,0.0147031638771296,0.267690569162369,-0.963232457637787,0.0229133479297161,0.560472846031189,-0.827749252319336,0.0264865458011627,0.268950939178467,-0.962993979454041,-0.0175542142242193,0.433117598295212,-0.901314318180084,0.00647212658077478,0.604649186134338,-0.712690532207489,-0.355628550052643,0.55850213766098,-0.743544638156891,-0.36771833896637,0.664999127388,-0.66643750667572,-0.33710128068924,0.601992964744568,-0.708051919937134,-0.369143635034561,0.353699058294296,-0.871231496334076,-0.340371429920197,0.558591187000275,-0.744231283664703,-0.366190940141678,0.660983741283417,-0.686569571495056,-0.302857667207718,0.558704376220703,-0.745119631290436,-0.364206105470657,0.437992513179779,-0.793307900428772,-0.422877192497253,0.558067083358765,-0.740320682525635,-0.374815225601196,
  666. 0.342293590307236,-0.854963421821594,-0.389708340167999,0.265593767166138,-0.881902933120728,-0.389496147632599,0.559286296367645,-0.750000476837158,-0.35312619805336,0.264897704124451,-0.85774564743042,-0.440569579601288,0.433907806873322,-0.808628022670746,-0.397296726703644,0.689792573451996,-0.604712247848511,-0.39813220500946,0.647836208343506,-0.631420791149139,-0.426164567470551,0.74432510137558,-0.564353048801422,-0.357051730155945,0.689617156982422,-0.597258031368256,-0.409525394439697,0.45600426197052,-0.75668329000473,-0.468498259782791,0.647551655769348,-0.633127868175507,-0.424058973789215,0.735097825527191,-0.591913878917694,-0.330558985471725,0.647540271282196,-0.633195400238037,-0.423975616693497,0.543515384197235,-0.664088487625122,-0.513398170471191,0.648590683937073,-0.626722633838654,-0.431913137435913,0.453467428684235,-0.729131102561951,-0.512576997280121,0.37858846783638,-0.755740940570831,-0.534346759319305,0.646162390708923,-0.641020119190216,-0.414207071065903,0.386191755533218,-0.720418632030487,-0.576066732406616,0.535155832767487,-0.685515224933624,-0.493636608123779,0.789419889450073,-0.473986387252808,0.390068143606186,0.593301057815552,-0.658327758312225,0.463247716426849,0.710175573825836,-0.560291171073914,0.426291763782501,0.790507555007935,-0.509952366352081,0.339184910058975,0.604938209056854,-0.6377774477005,0.476749151945114,0.591283142566681,-0.644615411758423,0.484618633985519,0.708861351013184,-0.557732284069061,0.431798815727234,0.594764411449432,-0.670094192028046,0.444104939699173,0.507788836956024,-0.737085103988647,0.445932865142822,0.59104186296463,-0.643106997013092,0.486911594867706,0.605197787284851,-0.63625580072403,0.478449761867523,0.421964526176453,-0.70503157377243,0.569979310035706,0.502723574638367,-0.727968096733093,0.466188311576843,0.594109952449799,-0.664571940898895,0.453186064958572,0.426212877035141,-0.771527826786041,0.472321331501007,0.610742568969727,-0.382215231657028,-0.693473279476166,0.560981392860413,-0.409702450037003,-0.719335675239563,0.665184855461121,-0.348655223846436,-0.660279214382172,
  667. 0.606380581855774,-0.371120661497116,-0.703258216381073,0.371467798948288,-0.550093770027161,-0.747936248779297,0.561352968215942,-0.411646723747253,-0.717934429645538,0.665448129177094,-0.396226733922958,-0.6326003074646,0.563915610313416,-0.425488531589508,-0.707784414291382,0.436446577310562,-0.450134128332138,-0.779033780097961,0.565526187419891,-0.434625178575516,-0.70091450214386,0.367911159992218,-0.542132973670959,-0.755469024181366,0.286725044250488,-0.575751304626465,-0.765701770782471,0.563313245773315,-0.422162801027298,-0.710251212120056,0.276952296495438,-0.497686237096787,-0.82195258140564,0.435954093933105,-0.46299734711647,-0.771736681461334,0.68178778886795,-0.572233915328979,0.455756187438965,0.457103490829468,-0.718599259853363,0.524091124534607,0.590383410453796,-0.641460478305817,0.48987340927124,0.680953681468964,-0.596798062324524,0.424422234296799,0.470570027828217,-0.686687111854553,0.554098188877106,0.45490750670433,-0.691125392913818,0.561609208583832,0.589373826980591,-0.638864994049072,0.494459390640259,0.457860976457596,-0.732423305511475,0.503904163837433,0.360797137022018,-0.785517573356628,0.502780079841614,0.454508453607559,-0.687029719352722,0.566932380199432,0.471551239490509,-0.682499468326569,0.558421015739441,0.280301749706268,-0.717168509960175,0.638044118881226,0.351498782634735,-0.763262450695038,0.542106151580811,0.456723213195801,-0.712939321994781,0.532091677188873,0.281536877155304,-0.790015876293182,0.544620871543884,-0.221267759799957,0.265058517456055,0.938501298427582,-0.421778649091721,0.295697897672653,0.857126295566559,-0.256676137447357,0.271260529756546,0.927650332450867,-0.222319185733795,0.259422570466995,0.939826667308807,-0.255225628614426,0.262757271528244,0.930493652820587,-0.0901636034250259,0.243300065398216,0.965751349925995,-0.420505583286285,0.26636204123497,0.867309808731079,-0.343559443950653,0.29266357421875,0.892364859580994,-0.264150321483612,0.316839098930359,0.910954177379608,-0.262928575277328,0.309168934822083,0.913938343524933,-0.169325590133667,0.318251013755798,0.932762145996094,
  668. -0.0927067995071411,0.323443621397018,0.941695094108582,-0.262011379003525,0.303471058607101,0.916108787059784,-0.327228367328644,0.255431830883026,0.909767091274261,-0.180820629000664,0.358895778656006,0.915695309638977,-0.0923950001597404,0.312536239624023,0.945401668548584,-0.165319859981537,0.304220616817474,0.938146710395813,-0.0705303996801376,0.314688950777054,0.946570813655853,-0.304533004760742,0.205175995826721,0.93014121055603,-0.156222954392433,0.297817289829254,0.941753387451172,-0.162439972162247,0.294174194335938,0.941846549510956,-0.163286089897156,0.29712238907814,0.940774142742157,-0.157064214348793,0.299635380506516,0.941036403179169,-0.0734512507915497,0.331839174032211,0.940472066402435,0.795861840248108,-0.550662577152252,0.251743525266647,0.604142487049103,-0.742384672164917,0.289615213871002,0.722690880298615,-0.636264741420746,0.269972652196884,0.795851945877075,-0.561819791793823,0.225784108042717,0.611474514007568,-0.715571641921997,0.337722092866898,0.600528597831726,-0.722307205200195,0.342983603477478,0.724284291267395,-0.638293981552124,0.260754853487015,0.605510175228119,-0.755154311656952,0.251195847988129,0.523544132709503,-0.816973268985748,0.241777643561363,0.599840044975281,-0.719192147254944,0.350648790597916,0.61237496137619,-0.711677551269531,0.344255745410919,0.43353858590126,-0.796349585056305,0.421748280525208,0.51567554473877,-0.809072434902191,0.281922847032547,0.604545831680298,-0.745437026023865,0.280799001455307,0.436648368835449,-0.854858219623566,0.280278086662292,0.0476915091276169,-0.513727426528931,-0.856626927852631,0.126739099621773,-0.391348630189896,-0.911473214626312,0.218928098678589,-0.229338869452477,-0.948406159877777,-0.043390367180109,-0.428216695785522,-0.902633905410767,-0.066006138920784,-0.439966171979904,-0.895585238933563,0.090392991900444,-0.352930694818497,-0.931272804737091,0.262222141027451,-0.264090150594711,-0.928168118000031,0.120974890887737,-0.385310858488083,-0.914822816848755,0.29053983092308,-0.237643003463745,-0.926883161067963,0.0874818414449692,-0.349818289279938,-0.932724118232727,
  669. -0.0837933048605919,-0.405703991651535,-0.910155475139618,0.144404336810112,-0.328449070453644,-0.933417737483978,0.0903755873441696,-0.352912127971649,-0.931281566619873,0.144331470131874,-0.328283339738846,-0.933487236499786,0.298671096563339,-0.249873206019402,-0.921064019203186,0.715235829353333,-0.669739544391632,0.199716657400131,0.671790599822998,-0.709365963935852,0.213301315903664,0.771861553192139,-0.609953820705414,0.179404973983765,0.709159910678864,-0.685619533061981,0.164371818304062,0.483307242393494,-0.822400271892548,0.300119906663895,0.670849442481995,-0.71645712852478,0.191442593932152,0.765785753726959,-0.598806858062744,0.23452627658844,0.672289073467255,-0.703400552272797,0.230770841240883,0.557362079620361,-0.800123870372772,0.221696436405182,0.670927286148071,-0.715970695018768,0.192983478307724,0.475577712059021,-0.839730501174927,0.262066036462784,0.40626049041748,-0.869409441947937,0.281211227178574,0.672210991382599,-0.70456600189209,0.227418452501297,0.406811535358429,-0.88102662563324,0.241446778178215,0.555091857910156,-0.797308921813965,0.237005114555359,0.75426459312439,-0.49123939871788,-0.435624688863754,0.711812317371368,-0.526075839996338,-0.465368151664734,0.802602350711823,-0.445601314306259,-0.396571576595306,0.752250730991364,-0.482473909854889,-0.448706835508347,0.532511413097382,-0.679253399372101,-0.505021274089813,0.711850821971893,-0.527337193489075,-0.463879257440567,0.796339511871338,-0.48723903298378,-0.358387738466263,0.712080180644989,-0.539088487625122,-0.44980600476265,0.599241018295288,-0.586597740650177,-0.544805765151978,0.712103247642517,-0.545949637889862,-0.441415995359421,0.530870378017426,-0.673243701457977,-0.514703392982483,0.452933013439178,-0.712738275527954,-0.535589277744293,0.712046802043915,-0.536270618438721,-0.453214347362518,0.456343531608582,-0.649009585380554,-0.608717679977417,0.59690397977829,-0.598101735115051,-0.534771084785461,0.810591340065002,-0.56915420293808,-0.137859016656876,0.620074808597565,-0.757925093173981,-0.202624753117561,
  670. 0.733666360378265,-0.658429265022278,-0.167942360043526,0.809323787689209,-0.565238475799561,-0.159688621759415,0.631813108921051,-0.762106955051422,-0.14143979549408,0.619783341884613,-0.772178649902344,-0.14003212749958,0.733400940895081,-0.659303367137909,-0.16565702855587,0.619451284408569,-0.751139879226685,-0.22818623483181,0.525699555873871,-0.806527853012085,-0.270467668771744,0.619641959667206,-0.773235201835632,-0.134726956486702,0.632606744766235,-0.762298166751862,-0.136785224080086,0.459252059459686,-0.881653726100922,-0.108509376645088,0.52096289396286,-0.820070683956146,-0.236815869808197,0.620033800601959,-0.757296681404114,-0.205085188150406,0.453984022140503,-0.85368949174881,-0.25517213344574,0.59857189655304,-0.800448536872864,-0.0315277352929115,0.368695676326752,-0.92849189043045,-0.0443434454500675,0.504928171634674,-0.862354755401611,-0.0373062342405319,0.598369061946869,-0.800513803958893,-0.0336481928825378,0.385202348232269,-0.922294557094574,0.031494714319706,0.37057963013649,-0.928116917610168,0.0356327071785927,0.506592214107513,-0.86056923866272,-0.0527731217443943,0.366594642400742,-0.926086068153381,-0.0892925038933754,0.264965057373047,-0.957602202892303,-0.113100193440914,0.370631486177444,-0.927803099155426,0.0425899997353554,0.386691242456436,-0.921450138092041,0.0374114364385605,0.180237397551537,-0.978499114513397,0.100269258022308,0.260505527257919,-0.962086617946625,-0.0807848945260048,0.367715239524841,-0.927497684955597,-0.0673324540257454,0.165500774979591,-0.981952548027039,-0.0915360003709793,0.427725732326508,-0.873323082923889,0.233146876096725,0.377165466547012,-0.894807517528534,0.238884389400482,0.493026256561279,-0.840576469898224,0.224402084946632,0.418110400438309,-0.890471935272217,0.179564729332924,0.145601481199265,-0.948675274848938,0.280741035938263,0.376295238733292,-0.905291557312012,0.197101935744286,0.483302086591721,-0.827963292598724,0.284422039985657,0.377356737852097,-0.886886060237885,0.266523957252502,0.236937612295151,-0.941791713237762,0.238514468073845,
  671. 0.376997828483582,-0.897828280925751,0.227545738220215,0.142869397997856,-0.952712118625641,0.26819384098053,0.0613494999706745,-0.958506643772125,0.278390914201736,0.377096563577652,-0.896179914474487,0.233794167637825,0.0643194392323494,-0.976377606391907,0.206276461482048,0.239832773804665,-0.944529473781586,0.224375829100609,-0.329696148633957,0.210510462522507,-0.920318365097046,-0.198270335793495,0.316521048545837,-0.927633166313171,-0.0462850257754326,0.423247694969177,-0.904830992221832,-0.358452260494232,0.288416177034378,-0.88787841796875,-0.383957833051682,0.281896203756332,-0.879267394542694,-0.200099050998688,0.322772204875946,-0.925083041191101,-0.024851456284523,0.377050399780273,-0.925859272480011,-0.20107789337635,0.326125621795654,-0.923693537712097,0.0185248926281929,0.387611985206604,-0.921636462211609,-0.200634896755219,0.324607253074646,-0.924324572086334,-0.384954631328583,0.321673452854156,-0.865064263343811,-0.152022629976273,0.323397904634476,-0.933971643447876,-0.199661582708359,0.321275264024735,-0.925698339939117,-0.152033567428589,0.323161095380783,-0.934051811695099,0.0266725532710552,0.32353663444519,-0.945839703083038,-0.0715399906039238,0.972767412662506,-0.220466762781143,-0.0588164180517197,0.973362624645233,-0.221598237752914,0.133843511343002,0.962928175926209,-0.234211951494217,-0.173033878207207,0.96710079908371,-0.186481907963753,-0.0581166818737984,0.974425494670868,-0.217065423727036,-0.0710937529802322,0.974292159080505,-0.213776722550392,0.0638595893979073,0.975330770015717,-0.211310282349586,-0.0707640796899796,0.975381910800934,-0.208860114216805,0.134951859712601,0.968113601207733,-0.211054995656013,-0.0729055777192116,0.967734038829803,-0.24119645357132,-0.172914490103722,0.96362441778183,-0.203785613179207,-0.178116142749786,0.963104128837585,-0.201755031943321,0.0640738010406494,0.974893152713776,-0.213255539536476,-0.165901824831963,0.953573107719421,-0.251346260309219,-0.0726573094725609,0.968691527843475,-0.237398043274879,-0.209669530391693,0.961282432079315,-0.178814977407455,
  672. -0.175386130809784,0.965288639068604,-0.193539425730705,-0.17429693043232,0.965393245220184,-0.194001019001007,-0.175755366683006,0.954166531562805,-0.242231994867325,-0.167800650000572,0.956462979316711,-0.238791793584824,0.0555469840764999,0.989023447036743,-0.136920168995857,-0.212835758924484,0.942842423915863,-0.256415873765945,-0.167875036597252,0.956573724746704,-0.238295376300812,-0.176044955849648,0.954268217086792,-0.24162021279335,-0.194066390395164,0.920609474182129,-0.338846027851105,-0.248995587229729,0.920257031917572,-0.301874428987503,-0.361832499504089,0.906130313873291,-0.219100922346115,-0.194279909133911,0.920427024364471,-0.339218854904175,-0.0646089017391205,0.911356270313263,-0.406516164541245,-0.248997882008553,0.918254733085632,-0.307909607887268,-0.385164797306061,0.872211754322052,-0.301487535238266,-0.248927116394043,0.910983204841614,-0.328853994607925,-0.318925470113754,0.89362633228302,-0.315782487392426,-0.248904466629028,0.909779250621796,-0.332187235355377,-0.0600847899913788,0.918451488018036,-0.390943616628647,-0.18368236720562,0.916906714439392,-0.354320257902145,-0.248696774244308,0.902134299278259,-0.352567285299301,-0.184405893087387,0.919523119926453,-0.347090512514114,-0.310332149267197,0.881293654441834,-0.356392323970795,-0.0584931001067162,0.920872509479523,-0.385451138019562,-0.0298603735864162,0.919638395309448,-0.391629457473755,-0.183677047491074,0.916887402534485,-0.354372948408127,-0.127266153693199,0.946491181850433,-0.296576738357544,-0.305845230817795,0.874550223350525,-0.376325070858002,-0.18660831451416,0.927389442920685,-0.324231654405594,-0.186341717839241,0.926445543766022,-0.327071189880371,-0.0174645651131868,0.948746979236603,-0.315553814172745,-0.122070714831352,0.938225746154785,-0.323776334524155,-0.208003491163254,0.974320590496063,-0.0862203687429428,-0.277065634727478,0.958792924880981,-0.0628551915287972,-0.393651813268662,0.919012129306793,-0.0213308818638325,-0.208170726895332,0.974222421646118,-0.086923211812973,-0.0720519721508026,0.990261673927307,-0.119123235344887,
  673. -0.275308400392532,0.958802878856659,-0.0700175389647484,-0.394527465105057,0.911830842494965,-0.113634169101715,-0.268891990184784,0.958410382270813,-0.0956384390592575,-0.326101124286652,0.939600884914398,-0.103962570428848,-0.268481820821762,0.95836329460144,-0.0972490459680557,-0.0719296857714653,0.992040455341339,-0.103353023529053,-0.181486994028091,0.978247106075287,-0.100474029779434,-0.185346573591232,0.978605329990387,-0.0893211290240288,-0.307539910078049,0.940816342830658,-0.142421334981918,-0.261914551258087,0.957270383834839,-0.122614286839962,-0.0718806535005569,0.992626249790192,-0.0976035669445992,-0.0303018093109131,0.994884610176086,-0.0963662564754486,-0.181629255414009,0.978262722492218,-0.100064508616924,-0.152939647436142,0.987914383411407,-0.0251934491097927,-0.298366874456406,0.940788447856903,-0.160917818546295,-0.194250866770744,0.978910505771637,-0.0632518082857132,-0.192053899168968,0.978904068470001,-0.0697286576032639,-0.0383717492222786,0.999173402786255,-0.0134189203381538,-0.141052082180977,0.988685667514801,-0.0510394424200058,-0.0525054782629013,0.990104675292969,-0.130138292908669,-0.0402886867523193,0.990407943725586,-0.132170021533966,0.138528987765312,0.977434992790222,-0.159469589591026,-0.162220790982246,0.982237458229065,-0.094309002161026,-0.0413283817470074,0.989784002304077,-0.136453568935394,-0.0528780184686184,0.989766955375671,-0.132534250617027,0.0743700638413429,0.987416505813599,-0.13956256210804,-0.0519871935248375,0.990564167499542,-0.126807168126106,0.140415996313095,0.979361951351166,-0.14537413418293,-0.0588211230933666,0.983526408672333,-0.170926749706268,-0.16738623380661,0.978480279445648,-0.120657324790955,-0.172502249479294,0.977889358997345,-0.11821748316288,0.0742418691515923,0.988247632980347,-0.133622229099274,-0.16523802280426,0.974031388759613,-0.15478777885437,-0.054978184401989,0.987746238708496,-0.146064430475235,-0.204697698354721,0.974251389503479,-0.0945148169994354,-0.170054331421852,0.978991210460663,-0.112507171928883,-0.167800635099411,0.979246139526367,-0.1136669293046,
  674. -0.172419905662537,0.976753056049347,-0.127376839518547,-0.167096182703972,0.977925062179565,-0.125465512275696,0.0718145594000816,0.996712446212769,-0.0375092774629593,-0.210288971662521,0.967711389064789,-0.138972073793411,-0.167133390903473,0.977997183799744,-0.124852582812309,-0.172676250338554,0.976799070835114,-0.126674547791481,-0.194842204451561,0.844009280204773,-0.49968484044075,-0.262353152036667,0.845390558242798,-0.465280175209045,-0.384673357009888,0.834893345832825,-0.393674373626709,-0.194904327392578,0.843909502029419,-0.499829083681107,-0.0670716091990471,0.834943473339081,-0.546233355998993,-0.261457592248917,0.842297673225403,-0.471353948116302,-0.395460784435272,0.786196172237396,-0.47487536072731,-0.2581886947155,0.831031382083893,-0.492671698331833,-0.322380423545837,0.81248277425766,-0.485739231109619,-0.257836282253265,0.829818844795227,-0.4948950111866,-0.0651617869734764,0.84385347366333,-0.532602369785309,-0.179325759410858,0.839547872543335,-0.512837052345276,-0.254435509443283,0.818135797977448,-0.515670776367188,-0.181648045778275,0.844456732273102,-0.503881871700287,-0.308323800563812,0.794957339763641,-0.522474229335785,-0.0644718855619431,0.846996963024139,-0.527673840522766,-0.0300558637827635,0.846971571445465,-0.530787885189056,-0.17938506603241,0.839673817157745,-0.512609899044037,-0.140816107392311,0.879588007926941,-0.454418063163757,-0.301155626773834,0.7857386469841,-0.540296316146851,-0.187425941228867,0.856445074081421,-0.48101282119751,-0.18621863424778,0.853967308998108,-0.485862612724304,-0.0284547191113234,0.887668490409851,-0.459603071212769,-0.132250219583511,0.868204474449158,-0.47825813293457,-0.117507383227348,0.940604686737061,0.318519949913025,-0.104770600795746,0.941656351089478,0.319853931665421,0.0831908360123634,0.939155519008636,0.333266288042068,-0.294553756713867,0.896965026855469,0.329684376716614,-0.104684635996819,0.9391068816185,0.327291131019592,-0.118256941437721,0.937292814254761,0.327868103981018,0.0209319964051247,0.942448258399963,0.333696216344833,
  675. -0.11720235645771,0.941911518573761,0.314747929573059,0.0824947655200958,0.936776280403137,0.340065866708755,-0.117851987481117,0.939099967479706,0.322803556919098,-0.230175673961639,0.914177119731903,0.333615750074387,-0.293789803981781,0.894176661968231,0.337840050458908,0.0185727197676897,0.93939483165741,0.342334061861038,-0.208889663219452,0.942317545413971,0.261539161205292,-0.115749254822731,0.947829782962799,0.297019928693771,-0.456459999084473,0.832241892814636,0.314670711755753,-0.293861716985703,0.894438445568085,0.337083339691162,-0.232780039310455,0.910170793533325,0.342640548944473,-0.178260862827301,0.939481854438782,0.292569518089294,-0.211082994937897,0.939771711826324,0.268836617469788,-0.000200472772121429,0.912191689014435,0.409763753414154,-0.410459518432617,0.904513537883759,0.115664228796959,-0.211166679859161,0.939673066139221,0.269115567207336,-0.177936866879463,0.939684391021729,0.292116224765778,-0.125732779502869,-0.874987542629242,-0.467534095048904,-0.0084151616320014,-0.81695693731308,-0.576637268066406,0.119348406791687,-0.726984858512878,-0.676201939582825,-0.173633486032486,-0.825916349887848,-0.536389589309692,-0.190313637256622,-0.826240181922913,-0.530196189880371,-0.0143040232360363,-0.810034513473511,-0.586207747459412,0.148668497800827,-0.752925157546997,-0.641094028949738,-0.0135588049888611,-0.810918509960175,-0.585002064704895,0.190594717860222,-0.733540594577789,-0.652374088764191,-0.0158774834126234,-0.808160483837128,-0.588748335838318,-0.19887101650238,-0.802531182765961,-0.562489151954651,0.0439504906535149,-0.804026484489441,-0.592966914176941,-0.0140496473759413,-0.810336470603943,-0.585796415805817,0.0438803508877754,-0.803732931613922,-0.593370020389557,0.210034534335136,-0.769070565700531,-0.603668689727783,0.672279536724091,-0.709652185440063,0.210794046521187,0.454786539077759,-0.867625296115875,0.200986459851265,0.58295613527298,-0.785324692726135,0.208392232656479,0.673691213130951,-0.721809327602386,0.158529177308083,0.456967324018478,-0.859240472316742,0.229971200227737,
  676. 0.451886087656021,-0.861555635929108,0.231345787644386,0.5847487449646,-0.785956561565399,0.200851827859879,0.457604140043259,-0.873623669147491,0.165469497442245,0.356134682893753,-0.924393951892853,0.136616811156273,0.451309025287628,-0.86035680770874,0.236867815256119,0.457623183727264,-0.857531905174255,0.234989702701569,0.268728971481323,-0.920503914356232,0.283650130033493,0.349061489105225,-0.922400772571564,0.16532664000988,0.456350088119507,-0.870937585830688,0.18224261701107,0.27483856678009,-0.949280738830566,0.152741342782974,0.507967352867126,-0.799829006195068,0.319754362106323,0.455081939697266,-0.826832830905914,0.330526828765869,0.56922435760498,-0.763425707817078,0.305229008197784,0.502079606056213,-0.815942108631134,0.286626160144806,0.237472206354141,-0.883738994598389,0.403252273797989,0.454733163118362,-0.834568798542023,0.310986965894699,0.55961948633194,-0.744488775730133,0.364091515541077,0.455234169960022,-0.81592184305191,0.356417417526245,0.316605567932129,-0.885877430438995,0.339090317487717,0.455129504203796,-0.825165688991547,0.334602326154709,0.234303742647171,-0.891292929649353,0.388199269771576,0.154070198535919,-0.902666389942169,0.401815742254257,0.455211490392685,-0.820799827575684,0.34506544470787,0.15657015144825,-0.927746415138245,0.338780879974365,0.315089762210846,-0.883581101894379,0.346414178609848,-0.100259929895401,-0.585922956466675,-0.804140746593475,-0.00360718369483948,-0.47612601518631,-0.879369676113129,0.108297921717167,-0.333055764436722,-0.936667203903198,-0.160969719290733,-0.515142321586609,-0.841853380203247,-0.182964935898781,-0.522208392620087,-0.832959949970245,-0.0149380564689636,-0.461211264133453,-0.88716459274292,0.146513670682907,-0.371341645717621,-0.916863799095154,-0.00895850360393524,-0.469106793403625,-0.883096098899841,0.17875149846077,-0.349001407623291,-0.919916272163391,-0.0134996194392443,-0.463115692138672,-0.886195123195648,-0.195227652788162,-0.492002815008163,-0.848421692848206,0.0313390269875526,-0.453495353460312,-0.890707552433014,-0.0101854195818305,-0.467491209506989,-0.883939027786255,
  677. 0.0320181101560593,-0.45566064119339,-0.889577567577362,0.204995200037956,-0.397564053535461,-0.894382357597351,0.603602468967438,-0.797284245491028,-0.00141699612140656,0.554785966873169,-0.831991493701935,0.00164110376499593,0.666816294193268,-0.745201170444489,-0.00558888912200928,0.601050078868866,-0.799066483974457,-0.0152153205126524,0.352411270141602,-0.93214076757431,0.0831854343414307,0.554939389228821,-0.831877827644348,0.00464898161590099,0.662846148014069,-0.747951507568359,0.0346927084028721,0.554917514324188,-0.831894755363464,0.00421388819813728,0.43485626578331,-0.900105357170105,-0.0266534425318241,0.554389894008636,-0.832237541675568,-0.0057107824832201,0.340795427560806,-0.939609289169312,0.0315089263021946,0.26886373758316,-0.962220847606659,0.0429348684847355,0.555513799190521,-0.831334710121155,0.0169403031468391,0.268242985010147,-0.96326732635498,-0.0127201359719038,0.430660903453827,-0.90250688791275,0.00353481248021126,0.688954055309296,-0.719460248947144,-0.0878597050905228,0.649500906467438,-0.753715813159943,-0.100304752588272,0.746539354324341,-0.66186398267746,-0.0679354667663574,0.68877124786377,-0.717903614044189,-0.101038180291653,0.455063909292221,-0.88659006357193,-0.0829146951436996,0.649283766746521,-0.754169523715973,-0.0982803553342819,0.737102568149567,-0.675063371658325,-0.0311336778104305,0.649140536785126,-0.754463911056519,-0.0969587713479996,0.541972756385803,-0.823974967002869,-0.165320038795471,0.650277197360992,-0.752014636993408,-0.107766047120094,0.452465355396271,-0.881527364253998,-0.134849980473518,0.380870074033737,-0.913631021976471,-0.14218433201313,0.647791028022766,-0.757060885429382,-0.0850045010447502,0.388589978218079,-0.900626420974731,-0.194602534174919,0.533610761165619,-0.834424257278442,-0.137825459241867,0.790050745010376,-0.263845413923264,0.553358316421509,0.596091985702515,-0.394159376621246,0.699508965015411,0.716373145580292,-0.320772051811218,0.619608640670776,0.790609419345856,-0.305844366550446,0.530467748641968,0.604824960231781,-0.359196186065674,0.710749566555023,
  678. 0.593203842639923,-0.361436724662781,0.719355821609497,0.71339350938797,-0.309571117162704,0.628677487373352,0.597000420093536,-0.407070994377136,0.691291391849518,0.509601771831512,-0.466524809598923,0.722952783107758,0.592967212200165,-0.359108835458755,0.720715522766113,0.60508668422699,-0.35707038640976,0.711597442626953,0.421212404966354,-0.377974539995193,0.824448585510254,0.503233373165131,-0.444355070590973,0.741150975227356,0.595964372158051,-0.392484217882156,0.700558841228485,0.425445526838303,-0.481239646673203,0.766423165798187,0.608944833278656,-0.652174115180969,-0.451503157615662,0.563893854618073,-0.684916615486145,-0.461425065994263,0.664599061012268,-0.606486022472382,-0.436443507671356,0.604713916778564,-0.646878063678741,-0.46461808681488,0.373053014278412,-0.824461936950684,-0.425551474094391,0.564110159873962,-0.685540795326233,-0.460232198238373,0.664930701255798,-0.636625230312347,-0.390609115362167,0.567084610462189,-0.694316208362579,-0.443102836608887,0.432156205177307,-0.751163363456726,-0.498993545770645,0.568536758422852,-0.698745727539063,-0.434189409017563,0.369578391313553,-0.820802867412567,-0.435539275407791,0.286667972803116,-0.856276094913483,-0.429665833711624,0.566387832164764,-0.692226409912109,-0.44724440574646,0.276151090860367,-0.811578333377838,-0.514860272407532,0.431607753038406,-0.759790480136871,-0.486243933439255,0.682368457317352,-0.30946210026741,0.662273824214935,0.455250024795532,-0.411133974790573,0.789757132530212,0.590516090393066,-0.356555849313736,0.723988115787506,0.681629598140717,-0.345592081546783,0.644939780235291,0.469548910856247,-0.368570744991302,0.802296340465546,0.453131049871445,-0.369222521781921,0.811385869979858,0.58952796459198,-0.352152198553085,0.726942718029022,0.455958992242813,-0.432870149612427,0.777640640735626,0.362320929765701,-0.479207664728165,0.799427032470703,0.45274430513382,-0.363143742084503,0.814339816570282,0.470545172691345,-0.362873554229736,0.804307162761688,0.273781448602676,-0.358059912919998,0.892657220363617,0.352988541126251,-0.441957354545593,0.824665307998657,
  679. 0.454899162054062,-0.402635753154755,0.794324338436127,0.274804890155792,-0.467355877161026,0.840274214744568,-0.214173763990402,-0.0853891521692276,0.973056256771088,-0.402701854705811,-0.023376552388072,0.915032625198364,-0.245446845889091,-0.0755569338798523,0.966461062431335,-0.215489402413368,-0.0913622379302979,0.972222924232483,-0.244365617632866,-0.0845454260706902,0.965990543365479,-0.0798182636499405,-0.12169349193573,0.989353179931641,-0.402687609195709,-0.0509129725396633,0.913920402526855,-0.330457031726837,-0.0393301732838154,0.943001270294189,-0.250961899757385,-0.0266761183738709,0.967629373073578,-0.250065118074417,-0.0350094810128212,0.967595875263214,-0.153403982520103,-0.0369349010288715,0.987473130226135,-0.0790372118353844,-0.0381562598049641,0.996141254901886,-0.249409541487694,-0.0409991219639778,0.967529833316803,-0.315855532884598,-0.0805882439017296,0.945378661155701,-0.163786470890045,0.00903074722737074,0.986454486846924,-0.0791772827506065,-0.049637034535408,0.99562406539917,-0.149933591485024,-0.051953662186861,0.987330079078674,-0.0574920549988747,-0.0488794147968292,0.997148752212524,-0.295286774635315,-0.135765001177788,0.945713341236115,-0.145163312554359,-0.0601615644991398,0.987576961517334,-0.147720322012901,-0.0614460855722427,0.987118542194366,-0.14834900200367,-0.058756485581398,0.987188100814819,-0.146009430289268,-0.0580111928284168,0.987580895423889,-0.059721302241087,-0.0304742753505707,0.997749805450439,0.774916052818298,-0.631642997264862,0.0230697244405746,0.57483446598053,-0.818222939968109,-0.00875233113765717,0.693363666534424,-0.720529794692993,0.00914957281202078,0.774526059627533,-0.632513046264648,-0.00604466442018747,0.583479106426239,-0.810863316059113,0.0453081354498863,0.572000324726105,-0.818848550319672,0.0479863733053207,0.695050597190857,-0.718960106372833,-0.00103358936030418,0.575720429420471,-0.816177070140839,-0.0489999204874039,0.4854995906353,-0.870469510555267,-0.0810741111636162,0.571433067321777,-0.818719089031219,0.0562433265149593,0.584480583667755,-0.809689581394196,0.0527747720479965,
  680. 0.400567144155502,-0.911093950271606,0.097230926156044,0.477945983409882,-0.877474129199982,-0.0400871336460114,0.575120747089386,-0.817870378494263,-0.0180033799260855,0.401840478181839,-0.913990139961243,-0.0560915544629097,0.657311022281647,-0.750727832317352,0.0659542083740234,0.610461831092834,-0.78968870639801,0.0610594041645527,0.71308034658432,-0.697396576404572,0.0717955753207207,0.656829655170441,-0.752293944358826,0.0512708574533463,0.404620230197906,-0.907788455486298,0.110465966165066,0.610207617282867,-0.789672791957855,0.0637461990118027,0.703924357891083,-0.701634585857391,0.11045129597187,0.610190570354462,-0.789671540260315,0.0639248192310333,0.493170380592346,-0.869862616062164,0.0110504254698753,0.611142516136169,-0.789702534675598,0.0536169335246086,0.401000916957855,-0.91428554058075,0.0572734996676445,0.334463000297546,-0.94064074754715,0.0577011108398438,0.608943462371826,-0.789519548416138,0.0764647796750069,0.341948986053467,-0.939712405204773,0.00339130312204361,0.484698802232742,-0.873704552650452,0.0413215607404709,0.690161049365997,-0.720476508140564,-0.0677598863840103,0.644054234027863,-0.761869072914124,-0.0689189881086349,0.745380282402039,-0.663374960422516,-0.0658936053514481,0.687881350517273,-0.721191227436066,-0.0818685665726662,0.456565618515015,-0.889688730239868,-0.00133896619081497,0.644202947616577,-0.7620450258255,-0.0654971823096275,0.739863216876984,-0.672668099403381,-0.0109599689021707,0.64477950334549,-0.762726962566376,-0.0500713735818863,0.528056025505066,-0.844273924827576,-0.091424748301506,0.645140886306763,-0.76315450668335,-0.0372608453035355,0.454438030719757,-0.890682756900787,-0.0130518302321434,0.370119661092758,-0.928979277610779,-0.00302387354895473,0.644654452800751,-0.762579023838043,-0.0537945665419102,0.371091246604919,-0.923055112361908,-0.10129464417696,0.525966942310333,-0.847052216529846,-0.0765601769089699,0.732244849205017,-0.327610582113266,-0.597066819667816,0.688046872615814,-0.347693502902985,-0.636946439743042,0.780790686607361,-0.302186608314514,-0.546853840351105,
  681. 0.730644345283508,-0.31527042388916,-0.605609953403473,0.510152280330658,-0.465479016304016,-0.723238587379456,0.688029170036316,-0.350214153528214,-0.635583162307739,0.773019552230835,-0.353280186653137,-0.52690976858139,0.687815964221954,-0.364737182855606,-0.627595365047455,0.577131986618042,-0.369983464479446,-0.728032290935516,0.68754118680954,-0.375269740819931,-0.621658861637115,0.508833706378937,-0.457176208496094,-0.729436993598938,0.428651988506317,-0.483997523784637,-0.762891709804535,0.687884986400604,-0.36122664809227,-0.629547119140625,0.434746563434601,-0.399218171834946,-0.807230055332184,0.574398100376129,-0.383987307548523,-0.722925007343292,0.786660492420197,-0.50626415014267,-0.353358030319214,0.586668789386749,-0.652285933494568,-0.479940503835678,0.710902333259583,-0.571848452091217,-0.409398645162582,0.785157799720764,-0.492377787828445,-0.375621318817139,0.603729963302612,-0.673219680786133,-0.426948875188828,0.586175918579102,-0.686651349067688,-0.430008947849274,0.710540175437927,-0.573895633220673,-0.407156556844711,0.586171507835388,-0.635666787624359,-0.502325296401978,0.499654561281204,-0.665246665477753,-0.554790377616882,0.586056351661682,-0.689046204090118,-0.426325291395187,0.60434877872467,-0.674712002277374,-0.423705607652664,0.428808182477951,-0.789668023586273,-0.438802897930145,0.495286822319031,-0.686717867851257,-0.532080471515656,0.586580395698547,-0.647888779640198,-0.485966622829437,0.423572480678558,-0.710262417793274,-0.5622398853302,-0.247614175081253,0.249543353915215,-0.93617057800293,-0.316125720739365,0.236247554421425,-0.918831646442413,-0.309842079877853,0.237531751394272,-0.920639216899872,-0.312396556138992,0.210306584835052,-0.926379799842834,-0.248767286539078,0.224602624773979,-0.942161619663239,-0.20769190788269,0.233173966407776,-0.949996829032898,-0.309247225522995,0.227609515190125,-0.923341810703278,-0.260908931493759,0.218093976378441,-0.940404951572418,-0.249137401580811,0.215708866715431,-0.944140017032623,-0.249723732471466,0.200416535139084,-0.947349607944489,
  682. -0.236787378787994,0.201387077569962,-0.950460374355316,-0.203259900212288,0.203722715377808,-0.957696437835693,-0.260922431945801,0.218045771121979,-0.940412402153015,-0.308504164218903,0.229173272848129,-0.923203647136688,-0.249156728386879,0.215229958295822,-0.944244205951691,-0.25101375579834,0.280653476715088,-0.926404714584351,-0.245805948972702,0.282826989889145,-0.92713987827301,-0.304184406995773,0.257735401391983,-0.917084753513336,-0.314373433589935,0.186765536665916,-0.930745899677277,-0.272166192531586,0.176790148019791,-0.945870399475098,-0.300499379634857,0.18351274728775,-0.935961127281189,-0.304641723632813,0.254803121089935,-0.917752146720886,-0.52601832151413,0.192902997136116,-0.828307390213013,-0.248728677630425,0.267365753650665,-0.9309401512146,-0.372494161128998,0.201191782951355,-0.905963540077209,-0.314323484897614,0.187147483229637,-0.930686175823212,-0.300434052944183,0.183726295828819,-0.935940265655518,-0.518713116645813,0.15562592446804,-0.840664744377136,-0.307364910840988,0.236900866031647,-0.921631693840027,-0.434013456106186,0.190717250108719,-0.880488097667694,-0.418041884899139,0.293643534183502,-0.859659552574158,-0.306288003921509,0.244073420763016,-0.920117378234863,-0.349414885044098,0.263440668582916,-0.899170875549316,-0.162934258580208,0.835002303123474,-0.525569796562195,-0.113960087299347,0.81193482875824,-0.572516322135925,-0.260674327611923,0.868841052055359,-0.420908987522125,-0.10325662791729,0.820168733596802,-0.562726676464081,-0.269146680831909,0.823056519031525,-0.5001380443573,-0.310323148965836,0.819634199142456,-0.4815593957901,-0.0345952250063419,0.884525060653687,-0.465208351612091,0.0200090631842613,0.746228337287903,-0.6653892993927,-0.0282222330570221,0.870982706546783,-0.490502417087555,-0.311203181743622,0.772631466388702,-0.553347408771515,-0.285320103168488,0.775383055210114,-0.563359200954437,-0.152644351124763,0.780061960220337,-0.606797397136688,-0.196867391467094,0.739432096481323,-0.643803894519806,-0.185742765665054,0.696588337421417,-0.693011105060577,
  683. -0.235261872410774,0.888283908367157,-0.394466280937195,-0.0825205892324448,0.835412979125977,-0.543392658233643,-0.320126950740814,0.804951310157776,-0.499572098255157,-0.301285564899445,0.809264361858368,-0.504299819469452,-0.260943055152893,0.891176164150238,-0.371098041534424,-0.248591735959053,0.87701952457428,-0.411143451929092,-0.137995079159737,0.711161434650421,-0.689352512359619,-0.265295058488846,0.861992835998535,-0.431957244873047,-0.429767787456512,0.82061767578125,-0.376678287982941,-0.284090220928192,0.858732461929321,-0.426463782787323,-0.138098686933517,0.952547371387482,-0.271260529756546,-0.104355558753014,0.941861629486084,-0.319384962320328,-0.201599434018135,0.963527083396912,-0.175992250442505,-0.38045808672905,0.906893372535706,-0.181096851825714,-0.138484448194504,0.952350497245789,-0.271755009889603,-0.256590873003006,0.938676357269287,-0.230321243405342,0.156245172023773,0.9194415807724,-0.360852628946304,-0.0102438572794199,0.927643597126007,-0.373326241970062,0.212576225399971,0.910678565502167,-0.354226052761078,0.153682962059975,0.927575409412384,-0.340566247701645,-0.0220356602221727,0.927753746509552,-0.372541695833206,-0.0102317649871111,0.928671181201935,-0.370762944221497,0.211363554000854,0.900197505950928,-0.380749106407166,-0.0101728411391377,0.933489084243774,-0.358461767435074,0.0676997005939484,0.927204728126526,-0.368385881185532,-0.0102372551336885,0.928206384181976,-0.371925055980682,-0.0217569340020418,0.927185118198395,-0.37397101521492,-0.157152980566025,0.905504763126373,-0.394162505865097,0.0662619546055794,0.924613952636719,-0.375097781419754,-0.0101783126592636,0.933054387569427,-0.35959130525589,-0.120146915316582,0.935109615325928,-0.333368748426437,-0.123903788626194,0.921021223068237,-0.369280099868774,-0.010235664434731,0.928341329097748,-0.371588051319122,-0.159756794571877,0.916183471679688,-0.367540001869202,0.164384886622429,-0.670690655708313,-0.723292291164398,-0.0165380407124758,-0.686868906021118,-0.726593196392059,0.208215579390526,-0.663294911384583,-0.718808889389038,
  684. 0.161886632442474,-0.655414521694183,-0.737715840339661,-0.0220908056944609,-0.687232196331024,-0.726101994514465,-0.0165359918028116,-0.686622381210327,-0.726826190948486,0.206377327442169,-0.692874312400818,-0.690893411636353,-0.0165110509842634,-0.683631300926209,-0.729640781879425,0.0555676892399788,-0.690482199192047,-0.721211850643158,-0.0165370404720306,-0.686748623847961,-0.726706922054291,-0.0220319610089064,-0.68746280670166,-0.725885450839996,-0.161811053752899,-0.698345363140106,-0.697230935096741,0.0543396919965744,-0.694995760917664,-0.716957569122314,-0.0165156107395887,-0.684176683425903,-0.729129314422607,-0.111845463514328,-0.663877189159393,-0.739430725574493,-0.114412903785706,-0.68277907371521,-0.721611082553864,-0.0165382046252489,-0.686888873577118,-0.726574301719666,-0.164357841014862,-0.678104817867279,-0.716352164745331,0.164019122719765,-0.725451290607452,0.668444633483887,-0.0165196191519499,-0.72867888212204,0.684656381607056,0.208343535661697,-0.720920860767365,0.660958468914032,0.161908015608788,-0.737595319747925,0.655544757843018,-0.0220576506108046,-0.725979924201965,0.68736207485199,-0.0165371038019657,-0.726699709892273,0.686756193637848,0.20629420876503,-0.689718127250671,0.694068849086761,-0.01652124337852,-0.728496015071869,0.684850871562958,0.0552433133125305,-0.72009015083313,0.691677927970886,-0.016538305208087,-0.726562798023224,0.686901032924652,-0.0219943579286337,-0.725747048854828,0.687610030174255,-0.161791950464249,-0.697088897228241,0.69849157333374,0.0542567521333694,-0.71666944026947,0.695299327373505,-0.0165182910859585,-0.728828191757202,0.684497356414795,-0.11188866943121,-0.739139139652252,0.664194405078888,-0.114465035498142,-0.721238315105438,0.683164060115814,-0.0165414456278086,-0.726204812526703,0.687279403209686,-0.164310306310654,-0.715991675853729,0.678496897220612,0.159011855721474,-0.7430539727211,-0.650066256523132,-0.0170748438686132,-0.758566617965698,-0.651371777057648,0.204325050115585,-0.735157012939453,-0.646371126174927,0.158128425478935,-0.738177239894867,-0.655812323093414,
  685. -0.0177518930286169,-0.766905963420868,-0.641513884067535,-0.0171283129602671,-0.766847312450409,-0.641600966453552,0.202947527170181,-0.755908131599426,-0.622426807880402,-0.0170193929225206,-0.750281989574432,-0.660898804664612,0.0648607388138771,-0.756783187389374,-0.650440096855164,-0.0171248447149992,-0.766300559043884,-0.642253935337067,-0.0178988631814718,-0.766389131546021,-0.642127215862274,-0.158639088273048,-0.774508416652679,-0.612348139286041,0.0641172304749489,-0.759254157543182,-0.64762818813324,-0.0170071925967932,-0.748496294021606,-0.662920951843262,-0.110039703547955,-0.729736983776093,-0.674814939498901,-0.112788863480091,-0.747968256473541,-0.654081165790558,-0.017034200951457,-0.75246661901474,-0.65841007232666,-0.162585899233818,-0.742858290672302,-0.649405419826508,0.148478239774704,-0.816050469875336,0.558583736419678,-0.0154649894684553,-0.820136845111847,0.571958363056183,0.207461714744568,-0.809043288230896,0.549917101860046,0.146533161401749,-0.825426995754242,0.545158922672272,-0.0200613141059875,-0.818265974521637,0.574489772319794,-0.0154849048703909,-0.818776786327362,0.57390308380127,0.205553621053696,-0.786705195903778,0.582102060317993,-0.0154182258993387,-0.823289334774017,0.567412614822388,0.0636991634964943,-0.814974427223206,0.575985312461853,-0.0154901202768087,-0.818418979644775,0.574413061141968,-0.0199304893612862,-0.817850708961487,0.575085341930389,-0.159761250019073,-0.791284024715424,0.590208351612091,0.0623960569500923,-0.811310768127441,0.581275880336761,-0.0154216336086392,-0.823061406612396,0.567743062973022,-0.116034418344498,-0.830473959445953,0.544838547706604,-0.119431048631668,-0.811361134052277,0.572214484214783,-0.0155046842992306,-0.817415595054626,0.575839638710022,-0.162010788917542,-0.806288599967957,0.568903505802155,0.148618966341019,-0.815355718135834,0.559560060501099,-0.0154748633503914,-0.819463849067688,0.572921872138977,0.207407474517822,-0.80837094783783,0.550925314426422,0.146427512168884,-0.825924575328827,0.544433295726776,-0.0202168878167868,-0.818759143352509,0.573781073093414,
  686. -0.0154774328693748,-0.819288372993469,0.573172748088837,0.205462738871574,-0.785698175430298,0.583492636680603,-0.0154326343908906,-0.82232391834259,0.568810284137726,0.0633611232042313,-0.814026653766632,0.577361345291138,-0.0154839344322681,-0.818843424320221,0.573808133602142,-0.020058935508132,-0.818258345127106,0.574500620365143,-0.159825697541237,-0.791711330413818,0.589617490768433,0.0621733143925667,-0.810681819915771,0.582176625728607,-0.0154313966631889,-0.822407007217407,0.568690180778503,-0.116150617599487,-0.82984721660614,0.545767962932587,-0.119295060634613,-0.81215888261795,0.57110995054245,-0.0154934693127871,-0.818188905715942,0.574740827083588,-0.162125512957573,-0.807058990001678,0.567777395248413,0.114734619855881,-0.0807333812117577,-0.990110158920288,-0.00743546662852168,-0.0541983246803284,-0.998502552509308,-0.0496320761740208,-0.0448297448456287,-0.997760951519012,0.11688157916069,-0.0679870024323463,-0.990816116333008,0.182771235704422,-0.0748754367232323,-0.980300188064575,-0.00743446778506041,-0.0543185584247112,-0.998495995998383,-0.0499956347048283,-0.0465825423598289,-0.997662544250488,-0.00742710800841451,-0.0552047789096832,-0.998447477817535,-0.191197425127029,-0.0172065421938896,-0.981400847434998,-0.00742852315306664,-0.0550344213843346,-0.99845689535141,0.18182934820652,-0.0307917520403862,-0.98284786939621,0.0868807137012482,-0.0432035028934479,-0.995281457901001,-0.193718209862709,-0.0573235973715782,-0.979381084442139,-0.00743343401700258,-0.0544431060552597,-0.998489201068878,-0.0963035821914673,-0.0560564585030079,-0.993772327899933,-0.0942150726914406,-0.0739515051245689,-0.992801547050476,-0.00740902312099934,-0.0573790408670902,-0.998324990272522,0.0861960202455521,-0.0390173122286797,-0.995513916015625,0.159870982170105,-0.821437418460846,0.547432065010071,-0.0153656061738729,-0.826769173145294,0.56233137845993,0.207964569330215,-0.815407335758209,0.540242373943329,0.157952725887299,-0.831095218658447,0.533227622509003,-0.0220192428678274,-0.824431419372559,0.565533339977264,
  687. -0.0153899490833282,-0.825168013572693,0.564677715301514,0.205830246210098,-0.789798021316528,0.577800214290619,-0.0153703168034554,-0.826460659503937,0.562784731388092,0.0539496839046478,-0.819473922252655,0.570571601390839,-0.0153914056718349,-0.825071811676025,0.564818322658539,-0.0219576340168715,-0.824238836765289,0.565816462039948,-0.15630629658699,-0.798998177051544,0.580663621425629,0.0529615804553032,-0.816742956638336,0.574566006660461,-0.0153665784746408,-0.826705455780029,0.562425017356873,-0.110361322760582,-0.833803951740265,0.540917158126831,-0.112823233008385,-0.819279432296753,0.562185108661652,-0.0153972180560231,-0.824686884880066,0.565379858016968,-0.15871274471283,-0.813978612422943,0.558792650699615,-0.228519290685654,0.933404862880707,0.27664840221405,-0.319695174694061,0.920710265636444,0.223802641034126,-0.255759835243225,0.930746018886566,0.261340320110321,-0.216663718223572,0.956904172897339,0.193368449807167,-0.421119928359985,0.874979376792908,0.238891437649727,-0.318784892559052,0.922644674777985,0.217032194137573,-0.269603461027145,0.916110813617706,0.296740680932999,-0.221574708819389,0.923087060451508,0.314348548650742,-0.232890471816063,0.921671986579895,0.310294687747955,-0.410678416490555,0.866455852985382,0.283896923065186,-0.226728066802025,0.93766987323761,0.263381063938141,-0.164235398173332,0.953060328960419,0.25436744093895,-0.244323715567589,0.919756710529327,0.307170361280441,-0.233005881309509,0.921334207057953,0.311209917068481,-0.221839427947998,0.922753870487213,0.315138906240463,-0.243866816163063,0.929934144020081,0.275229841470718,-0.164623200893402,0.953520953655243,0.252382785081863,-0.227720558643341,0.935342729091644,0.270697832107544,-0.243652701377869,0.933106899261475,0.264471143484116,-0.208917766809464,0.937920153141022,0.276874095201492,-0.241573840379715,0.933432698249817,0.265227168798447,-0.158802956342697,0.946273922920227,0.281686544418335,-0.243936404585838,0.928763031959534,0.279095351696014,-0.211140647530556,0.936388254165649,0.280350983142853,-0.37752702832222,0.89716899394989,0.229262232780457,
  688. -0.243675500154495,0.932794690132141,0.265549212694168,-0.241778939962387,0.933155238628387,0.266015440225601,-0.243998751044273,0.927637934684753,0.282758772373199,-0.369058161973953,0.879651248455048,0.30001625418663,-0.211667031049728,0.937095284461975,0.277577996253967,-0.373861491680145,0.885304093360901,0.276521801948547,-0.243668228387833,0.932894706726074,0.265204250812531,-0.371663987636566,0.886276006698608,0.276371002197266,-0.206993356347084,0.658706188201904,0.723367154598236,-0.241290464997292,0.655219316482544,0.715867698192596,-0.206479877233505,0.658751964569092,0.72347217798233,-0.206229850649834,0.633609414100647,0.74565976858139,-0.236626625061035,0.621747732162476,0.746617436408997,-0.225177764892578,0.626304864883423,0.746349275112152,-0.206034958362579,0.621694505214691,0.755675494670868,-0.151690021157265,0.617723286151886,0.771626889705658,-0.214902222156525,0.622155427932739,0.752821147441864,-0.284786254167557,0.620342373847961,0.730802416801453,-0.206412672996521,0.649334073066711,0.731955766677856,-0.231160491704941,0.640725433826447,0.732144594192505,-0.16109237074852,0.592441558837891,0.789342999458313,-0.20556865632534,0.60027813911438,0.772921502590179,-0.244925811886787,0.606110155582428,0.756731033325195,-0.246297597885132,0.592479944229126,0.767010450363159,-0.205849021673203,0.612330377101898,0.763333201408386,-0.269381552934647,0.580489099025726,0.768417775630951,-0.244412198662758,0.610993981361389,0.75296014547348,-0.161003977060318,0.597555637359619,0.785496652126312,-0.159338161349297,0.597239971160889,0.786076307296753,-0.429031193256378,0.429109364748001,0.79485684633255,-0.253431051969528,0.499937176704407,0.828151881694794,-0.239674240350723,0.504574418067932,0.829434037208557,-0.153732270002365,0.613212704658508,0.774813890457153,-0.241963803768158,0.63286155462265,0.735486090183258,-0.26411908864975,0.636894047260284,0.724297702312469,-0.32966610789299,-0.0335559248924255,0.943501174449921,-0.244311988353729,-0.00092802383005619,0.969696223735809,-0.284026354551315,-0.0160054415464401,0.958682894706726,
  689. -0.208921581506729,0.935411036014557,0.285233050584793,-0.238164678215981,0.925179004669189,0.295501857995987,-0.298154443502426,0.900747537612915,0.315844476222992,-0.366334795951843,0.914197683334351,0.173324912786484,-0.211373582482338,0.944997370243073,0.249602109193802,-0.304862469434738,0.9300936460495,0.204901501536369,-0.230409279465675,0.918873071670532,0.320287138223648,-0.206530570983887,0.925929307937622,0.316227912902832,-0.184500455856323,0.931886434555054,0.312325447797775,-0.208532720804214,0.933876991271973,0.290495991706848,-0.384478330612183,0.894730567932129,0.227230548858643,-0.157193958759308,0.938791573047638,0.306529700756073,-0.226539790630341,0.918802797794342,0.323235303163528,-0.183419302105904,0.930765092372894,0.316281169652939,-0.206220224499702,0.924690783023834,0.320031642913818,-0.162324517965317,0.931201696395874,0.326365083456039,-0.225680768489838,0.927827298641205,0.296992659568787,-0.207371443510056,0.929276525974274,0.305683523416519,-0.23137554526329,0.926747441291809,0.295980989933014,-0.190714925527573,0.938067555427551,0.289235591888428,-0.225610703229904,0.928462862968445,0.295053362846375,-0.226562529802322,0.918525636196136,0.3240065574646,-0.164109453558922,0.928428471088409,0.333299934864044,-0.204178124666214,0.922524392604828,0.32750591635704,-0.368792831897736,0.875168740749359,0.313163846731186,-0.228598475456238,0.922981023788452,0.309594422578812,-0.226110011339188,0.923634886741638,0.309471935033798,-0.360389143228531,0.889381647109985,0.281282722949982,-0.226765811443329,0.915925979614258,0.33114492893219,-0.206762403249741,0.91819965839386,0.337873756885529,-0.225928977131844,0.925469756126404,0.304075330495834,-0.355445325374603,0.897210776805878,0.262052476406097,-0.359045743942261,0.896148204803467,0.260777026414871,0.106907941401005,0.0845283642411232,0.990669369697571,-0.0624028258025646,0.0818098336458206,0.994692504405975,0.164138823747635,0.0849025994539261,0.982776701450348,0.105775386095047,0.0606731399893761,0.992537379264832,-0.0708703100681305,0.0780473798513412,0.994427502155304,
  690. -0.0620247200131416,0.0772309452295303,0.995082080364227,0.159268409013748,0.125684440135956,0.979202210903168,-0.0620700046420097,0.077778548002243,0.995036602020264,0.00667930580675602,0.0931658074259758,0.995628237724304,-0.0620183497667313,0.077153854072094,0.995088458061218,-0.0708538889884949,0.0781982988119125,0.994416773319244,-0.204319909214973,0.0932891741394997,0.97444885969162,0.00397442281246185,0.102762132883072,0.994698047637939,-0.0624552629888058,0.0824461057782173,0.994636595249176,-0.161794558167458,0.0511418655514717,0.985498368740082,-0.166750431060791,0.0799106806516647,0.982755601406097,-0.0628944709897041,0.0877854228019714,0.994151949882507,-0.204608991742134,0.0767836421728134,0.975827574729919,0.0924467816948891,0.947214782238007,-0.30698162317276,-0.0719579681754112,0.942707121372223,-0.325768798589706,0.146210819482803,0.943008124828339,-0.298928260803223,0.0896540954709053,0.952100157737732,-0.292348235845566,-0.0756856501102448,0.941064655780792,-0.329649746417999,-0.0717666894197464,0.941644132137299,-0.32887065410614,0.146861255168915,0.930203795433044,-0.336381793022156,-0.072208397090435,0.944090068340302,-0.321683079004288,0.00325531465932727,0.944482564926147,-0.328545331954956,-0.0717915743589401,0.941782772541046,-0.328468084335327,-0.0757599547505379,0.941157996654511,-0.329366475343704,-0.203886300325394,0.912173628807068,-0.355485081672668,0.00210907286964357,0.9416743516922,-0.336518973112106,-0.0720484107732773,0.943207800388336,-0.32429638504982,-0.169305428862572,0.937066256999969,-0.305356293916702,-0.1703050583601,0.927060723304749,-0.333997905254364,-0.0716044008731842,0.940737664699554,-0.331489890813828,-0.207290649414063,0.919467270374298,-0.334081679582596,0.0811198726296425,0.99188244342804,0.0979225188493729,-0.089282400906086,0.99255234003067,0.0828765258193016,0.127700656652451,0.986598432064056,0.10156887024641,0.0774451047182083,0.98952043056488,0.121867083013058,-0.100031286478043,0.991314113140106,0.0853824019432068,-0.0893976464867592,0.992130398750305,0.0876672342419624,
  691. 0.127176716923714,0.989964962005615,0.0616087950766087,-0.0893636643886566,0.99225789308548,0.0862462073564529,-0.0114769898355007,0.996902585029602,0.0778042078018188,-0.0894028320908546,0.992110550403595,0.0878851264715195,-0.100017420947552,0.991320967674255,0.0853190496563911,-0.238041967153549,0.969929099082947,0.0507320798933506,-0.0125860655680299,0.99740070104599,0.0709471926093102,-0.0893412604928017,0.992340683937073,0.0853127613663673,-0.191738829016685,0.975939989089966,0.103814467787743,-0.192992582917213,0.977546572685242,0.0845974013209343,-0.0894493460655212,0.991930902004242,0.0898442938923836,-0.241887882351875,0.966853976249695,0.081753246486187,0.23825116455555,-0.888027012348175,-0.393248498439789,0.0660855025053024,-0.915479362010956,-0.396900802850723,0.291444629430771,-0.873659431934357,-0.389588505029678,0.237045347690582,-0.883532643318176,-0.403955012559891,0.0647110342979431,-0.918935179710388,-0.389063745737076,0.0659649521112442,-0.918781995773315,-0.389215052127838,0.289109230041504,-0.890545010566711,-0.351205676794052,0.0661389157176018,-0.913952946662903,-0.400394320487976,0.141787856817245,-0.911467671394348,-0.386164575815201,0.0659528970718384,-0.919101774692535,-0.388461232185364,0.0648552179336548,-0.919248640537262,-0.388298511505127,-0.0743827819824219,-0.928491175174713,-0.363828897476196,0.141121983528137,-0.912793397903442,-0.383265972137451,0.0661762282252312,-0.912861883640289,-0.402869641780853,-0.0276573970913887,-0.905291318893433,-0.423889875411987,-0.0312168262898922,-0.9185830950737,-0.393993377685547,0.0660244002938271,-0.917177319526672,-0.392971456050873,-0.0769251883029938,-0.916236281394959,-0.393184125423431,-0.229612693190575,0.900571048259735,-0.369120508432388,-0.320480734109879,0.85761296749115,-0.402233868837357,-0.259229987859726,0.887806177139282,-0.380263268947601,-0.234394371509552,0.913843929767609,-0.331585019826889,-0.394242078065872,0.881912529468536,-0.258463859558105,-0.334278047084808,0.897534728050232,-0.287558317184448,-0.250374525785446,0.880166411399841,-0.403261572122574,
  692. -0.199121534824371,0.897659778594971,-0.393138110637665,-0.225554183125496,0.889004170894623,-0.39849328994751,-0.409339666366577,0.8573317527771,-0.312127113342285,-0.229254424571991,0.899560213088989,-0.3717982172966,-0.161467954516411,0.906520426273346,-0.390062481164932,-0.247564062476158,0.879620015621185,-0.406177997589111,-0.225031688809395,0.88749760389328,-0.402130395174026,-0.197799742221832,0.896269679069519,-0.396958410739899,-0.248288959264755,0.892334818840027,-0.376949816942215,-0.165823817253113,0.896453857421875,-0.410941570997238,-0.227321103215218,0.894070506095886,-0.385957360267639,-0.248847335577011,0.907238245010376,-0.3391073346138,-0.219050794839859,0.917023837566376,-0.333293050527573,-0.255543321371078,0.904899954795837,-0.340373039245605,-0.166525900363922,0.894763827323914,-0.41432711482048,-0.247598245739937,0.880150854587555,-0.40500596165657,-0.213088139891624,0.887150049209595,-0.409338742494583,-0.372691243886948,0.861404240131378,-0.345085650682449,-0.248843252658844,0.907075583934784,-0.33954530954361,-0.255636155605316,0.905015587806702,-0.339995563030243,-0.24742329120636,0.877480924129486,-0.410863757133484,-0.381239116191864,0.849389791488647,-0.364957273006439,-0.215201869606972,0.881438851356506,-0.420420795679092,-0.377429604530334,0.858772933483124,-0.346490859985352,-0.248117536306381,0.888979971408844,-0.384905844926834,-0.373098701238632,0.860085368156433,-0.347923099994659,-0.21844345331192,0.959867298603058,0.175890490412712,-0.237336829304695,0.955736696720123,0.173892587423325,-0.206072568893433,0.9623664021492,0.177158087491989,-0.206490963697433,0.969992339611053,0.128360003232956,-0.240979716181755,0.960704326629639,0.137753993272781,-0.239662498235703,0.96108478307724,0.137397035956383,-0.205698251724243,0.957926988601685,0.200160443782806,-0.153655588626862,0.964570224285126,0.214462637901306,-0.221776336431503,0.955280601978302,0.195586979389191,-0.287527441978455,0.940329730510712,0.181955903768539,-0.20623454451561,0.964648127555847,0.164077639579773,-0.230168581008911,0.958287358283997,0.169433742761612,
  693. -0.162997096776962,0.956006526947021,0.243892356753349,-0.205112591385841,0.952024519443512,0.227108150720596,-0.244582980871201,0.946439266204834,0.21078884601593,-0.245883539319038,0.942366480827332,0.226906776428223,-0.20546866953373,0.955509722232819,0.21162186563015,-0.272206485271454,0.932668507099152,0.236713111400604,-0.244081944227219,0.947886765003204,0.204779490828514,-0.16471454501152,0.957449615001678,0.236979693174362,-0.161240786314011,0.957703828811646,0.238337978720665,-0.429918169975281,0.831777572631836,0.351164430379868,-0.25279626250267,0.908543050289154,0.332631558179855,-0.243032157421112,0.911693930625916,0.3312848508358,-0.191617876291275,0.932796478271484,0.305243223905563,-0.249521896243095,0.92787778377533,0.277095079421997,-0.284494966268539,0.922951817512512,0.2592733502388,-0.333856731653214,0.641762435436249,0.690420687198639,-0.250121653079987,0.680717408657074,0.688522338867188,-0.317373931407928,0.649974048137665,0.690512597560883,-0.206664234399796,0.908074855804443,-0.364266335964203,-0.242593109607697,0.906128227710724,-0.346525907516479,-0.298386752605438,0.900104403495789,-0.317454725503922,-0.386778503656387,0.838353395462036,-0.384143233299255,-0.204586565494537,0.918880462646484,-0.337347030639648,-0.302179276943207,0.881053864955902,-0.363911747932434,-0.239952474832535,0.909808337688446,-0.338632076978683,-0.205547004938126,0.914093196392059,-0.349548518657684,-0.189880818128586,0.915635943412781,-0.354338973760605,-0.205819711089134,0.912670910358429,-0.353086560964584,-0.388473063707352,0.840000927448273,-0.378796815872192,-0.157904282212257,0.925483822822571,-0.344304978847504,-0.229694411158562,0.911614894866943,-0.340879321098328,-0.189488023519516,0.916248500347137,-0.352963298559189,-0.205446600914001,0.914609551429749,-0.348254472017288,-0.16056016087532,0.928810834884644,-0.333962470293045,-0.22909215092659,0.905846536159515,-0.356312841176987,-0.20548877120018,0.914392948150635,-0.348797649145126,-0.229974016547203,0.909090638160706,-0.347370475530624,-0.191246539354324,0.913483440876007,-0.359128087759018,
  694. -0.229442730545998,0.909161388874054,-0.347536504268646,-0.229574948549271,0.910441935062408,-0.344079583883286,-0.15818826854229,0.925844013690948,-0.34320479631424,-0.193747535347939,0.91881263256073,-0.343868315219879,-0.369929969310761,0.872661292552948,-0.318769961595535,-0.230751067399979,0.907454907894135,-0.351111859083176,-0.229290798306465,0.907711267471313,-0.351405650377274,-0.354013055562973,0.858911395072937,-0.370062083005905,-0.229371353983879,0.908477187156677,-0.349368184804916,-0.194093719124794,0.919251322746277,-0.342497676610947,-0.229274243116379,0.90755432844162,-0.351821810007095,-0.354971200227737,0.860089600086212,-0.366389572620392,-0.361099004745483,0.857298076152802,-0.36694347858429,0.11046390235424,0.685933232307434,0.719231069087982,-0.0650707557797432,0.686401665210724,0.724305629730225,0.164433047175407,0.681475222110748,0.713129222393036,0.109289139509201,0.66821962594986,0.735892951488495,-0.0705663114786148,0.683455467224121,0.726573526859283,-0.0647284463047981,0.683310687541962,0.727252960205078,0.159697145223618,0.711105167865753,0.684708952903748,-0.0647060424089432,0.68310821056366,0.727445065975189,0.00445999205112457,0.695673048496246,0.718344688415527,-0.0647276937961578,0.683303773403168,0.727259457111359,-0.0705509185791016,0.683558523654938,0.726478099822998,-0.206639543175697,0.682710647583008,0.700861155986786,0.00182278454303741,0.702457547187805,0.711723387241364,-0.0650647655129433,0.686347544193268,0.72435736656189,-0.160343527793884,0.657408475875854,0.736277163028717,-0.165328487753868,0.677846789360046,0.716372966766357,-0.0655407160520554,0.690642416477203,0.720220446586609,-0.206842944025993,0.670405030250549,0.712581992149353,0.101247623562813,0.546778917312622,-0.831132769584656,-0.0731534361839294,0.530941009521484,-0.844245374202728,0.14591783285141,0.548135995864868,-0.823562324047089,0.0982630103826523,0.560586094856262,-0.822245538234711,-0.0712870657444,0.528451561927795,-0.845965206623077,-0.0729592218995094,0.528052151203156,-0.846072018146515,0.146650835871696,0.514738738536835,-0.844711542129517,
  695. -0.0734105929732323,0.534776329994202,-0.841798841953278,0.00265379925258458,0.530791044235229,-0.847498595714569,-0.0729813277721405,0.528380632400513,-0.84586501121521,-0.0713913887739182,0.528799712657928,-0.84573882818222,-0.208446308970451,0.487123012542725,-0.848092794418335,0.0014879887457937,0.523656129837036,-0.851928412914276,-0.0732605755329132,0.532537460327148,-0.843229949474335,-0.172958105802536,0.539649903774261,-0.823931753635406,-0.174039363861084,0.513174772262573,-0.840453445911407,-0.0728115513920784,0.525859951972961,-0.847449004650116,-0.211954325437546,0.506961345672607,-0.835503220558167,0.0824778750538826,0.834692358970642,-0.544505417346954,-0.0897675231099129,0.825763583183289,-0.556827008724213,0.133251562714577,0.832539021968842,-0.537701487541199,0.0787002593278885,0.847923398017883,-0.524244487285614,-0.0961133167147636,0.827199280261993,-0.553627729415894,-0.0898724943399429,0.828402757644653,-0.552875936031342,0.132682979106903,0.809529066085815,-0.571889936923981,-0.0898442715406418,0.827689945697784,-0.553947150707245,-0.0149967111647129,0.826216578483582,-0.563153028488159,-0.0898770168423653,0.828517198562622,-0.552703678607941,-0.0961215496063232,0.827219486236572,-0.553596019744873,-0.238219514489174,0.787996351718903,-0.56772655248642,-0.0160789247602224,0.822467088699341,-0.568585395812988,-0.0898245275020599,0.827192783355713,-0.554692387580872,-0.192060455679893,0.825954496860504,-0.530011355876923,-0.193254858255386,0.815151751041412,-0.546058773994446,-0.0899218916893005,0.82965612411499,-0.550985336303711,-0.242109701037407,0.805031478404999,-0.541578650474548,0.242723420262337,-0.932636499404907,0.26697301864624,0.0678367763757706,-0.957252323627472,0.281187266111374,0.288152694702148,-0.921113431453705,0.261759787797928,0.23940221965313,-0.941738963127136,0.236250549554825,0.0651405677199364,-0.960513055324554,0.27050194144249,0.0680634677410126,-0.960451185703278,0.2700015604496,0.287028640508652,-0.915912508964539,0.28056874871254,0.0683077275753021,-0.963898003101349,0.257360994815826,
  696. 0.142624095082283,-0.953175723552704,0.266672760248184,0.0680210217833519,-0.959852278232574,0.272133648395538,0.0655225813388824,-0.959884524345398,0.272632747888565,-0.074115976691246,-0.951812326908112,0.297590672969818,0.141346752643585,-0.951657652854919,0.272706747055054,0.0682981163263321,-0.96376234292984,0.257871389389038,-0.0262902919203043,-0.971248328685761,0.236612632870674,-0.0297705810517073,-0.962976932525635,0.267935246229172,0.0681068152189255,-0.961062908172607,0.267804890871048,-0.0766494497656822,-0.960619509220123,0.267086267471313,-0.248589634895325,0.921492099761963,-0.298421829938889,-0.31523185968399,0.900305151939392,-0.300132721662521,-0.312882751226425,0.901136159896851,-0.300096988677979,-0.311572432518005,0.892577350139618,-0.325926810503006,-0.249796018004417,0.912985622882843,-0.32258203625679,-0.209501251578331,0.924065232276917,-0.319707423448563,-0.312339782714844,0.898441970348358,-0.308619439601898,-0.258134543895721,0.908737540245056,-0.327967464923859,-0.250166267156601,0.909977912902832,-0.330691874027252,-0.250799536705017,0.904255330562592,-0.345574706792831,-0.238439992070198,0.907272338867188,-0.346414864063263,-0.205029383301735,0.914650201797485,-0.348393708467484,-0.258178263902664,0.908671855926514,-0.328114956617355,-0.313889592885971,0.898728907108307,-0.306202054023743,-0.250185757875443,0.909813106060028,-0.331130266189575,-0.252406030893326,0.93000316619873,-0.267180114984512,-0.246709510684013,0.931976437568665,-0.265620678663254,-0.31007519364357,0.907762229442596,-0.28252637386322,-0.31989124417305,0.882047295570374,-0.345922231674194,-0.269222319126129,0.89087438583374,-0.36587193608284,-0.29763126373291,0.886277318000793,-0.354863733053207,-0.310340285301209,0.907168507575989,-0.284137725830078,-0.524036645889282,0.801751732826233,-0.287367224693298,-0.250195860862732,0.926658511161804,-0.280545860528946,-0.375015407800674,0.869497537612915,-0.321461379528046,-0.319831997156143,0.882229387760162,-0.345512688159943,-0.297576516866684,0.886359989643097,-0.354703277349472,
  697. -0.516833364963531,0.791924178600311,-0.325175851583481,-0.313200861215591,0.90044116973877,-0.301845967769623,-0.43643707036972,0.841773509979248,-0.317710638046265,-0.420253485441208,0.880798637866974,-0.218130737543106,-0.311445206403732,0.904640913009644,-0.290906757116318,-0.351874381303787,0.897783994674683,-0.264893114566803,-0.164993926882744,0.893298029899597,0.418085962533951,-0.114505134522915,0.921187043190002,0.371891349554062,-0.262919336557388,0.82312947511673,0.503320157527924,-0.1039669662714,0.917521834373474,0.383855104446411,-0.267337799072266,0.867386043071747,0.419728487730026,-0.313090354204178,0.847954034805298,0.427724897861481,-0.0352876335382462,0.869106531143188,0.493364572525024,0.0202849023044109,0.96411406993866,0.264712333679199,-0.0283024050295353,0.884396314620972,0.465878009796143,-0.314624398946762,0.882659196853638,0.349176704883575,-0.283771514892578,0.894498467445374,0.34546560049057,-0.153704524040222,0.932722926139832,0.326194524765015,-0.197105571627617,0.941509485244751,0.27332991361618,-0.185579776763916,0.960291862487793,0.208325922489166,-0.236200660467148,0.807521522045136,0.540479719638824,-0.0833229124546051,0.909662425518036,0.406905025243759,-0.327416121959686,0.853866040706635,0.40461277961731,-0.304907411336899,0.861538887023926,0.405933737754822,-0.260905772447586,0.79523229598999,0.547296822071075,-0.250963091850281,0.816338956356049,0.520200133323669,-0.137650713324547,0.965160846710205,0.222523733973503,-0.272325724363327,0.82824432849884,0.489744871854782,-0.434557855129242,0.759230017662048,0.484488725662231,-0.287799686193466,0.822903513908386,0.489899337291718,-0.141773447394371,0.740714371204376,0.65669059753418,-0.104381583631039,0.779284119606018,0.617916464805603,-0.19910092651844,0.673746347427368,0.711635231971741,-0.385374039411545,0.641636669635773,0.663166046142578,-0.144824683666229,0.743137359619141,0.653278529644012,-0.252040356397629,0.704736828804016,0.663190543651581,0.154050290584564,0.802345335483551,0.576637387275696,-0.0128657994791865,0.816978216171265,0.576525151729584,
  698. 0.207520246505737,0.792715966701508,0.573181211948395,0.151647344231606,0.789829850196838,0.594282627105713,-0.0205579828470945,0.816203117370605,0.577399134635925,-0.0128433974459767,0.815555691719055,0.578536093235016,0.206240758299828,0.808730721473694,0.550835132598877,-0.012714465148747,0.807368516921997,0.589910686016083,0.0644161850214005,0.812434375286102,0.579483330249786,-0.0128554832190275,0.816323161125183,0.577452421188354,-0.0202866587787867,0.817070662975311,0.576180517673492,-0.153432190418243,0.822477877140045,0.54771226644516,0.0630214065313339,0.816516876220703,0.573871552944183,-0.0127237923443317,0.80796080827713,0.589098811149597,-0.121112175285816,0.78718638420105,0.604706227779388,-0.124985560774803,0.809820294380188,0.573210179805756,-0.0128475986421108,0.81582248210907,0.578159749507904,-0.155796661973,0.806345522403717,0.570556282997131,0.118207797408104,-0.969236731529236,-0.215887039899826,-0.0114976819604635,-0.969346225261688,-0.245429679751396,-0.0447104834020138,-0.966614842414856,-0.252303242683411,0.120840288698673,-0.965222835540771,-0.231824681162834,0.181581899523735,-0.957788944244385,-0.222864121198654,-0.0115344095975161,-0.968665182590485,-0.248102366924286,-0.0450670979917049,-0.967024207115173,-0.250665426254272,-0.0114828636869788,-0.969618558883667,-0.244352519512177,-0.195153996348381,-0.941325187683105,-0.275357574224472,-0.0114144934341311,-0.97085577249527,-0.239392429590225,0.180815368890762,-0.949008584022522,-0.25824111700058,0.0893368646502495,-0.964008450508118,-0.25041326880455,-0.197446018457413,-0.950841426849365,-0.238569855690002,-0.0115208495408297,-0.968917667865753,-0.247115030884743,-0.101813748478889,-0.964402377605438,-0.244053542613983,-0.0992558151483536,-0.969944953918457,-0.222160488367081,-0.0114219421520829,-0.970722496509552,-0.239932030439377,0.088110476732254,-0.962193191051483,-0.257722407579422,0.157478421926498,-0.956234931945801,-0.246607780456543,-0.0133874081075192,-0.970488429069519,-0.240775883197784,0.207117840647697,-0.946636736392975,-0.246943950653076,
  699. 0.155397355556488,-0.952176928520203,-0.263079643249512,-0.0203279294073582,-0.971257030963898,-0.237163558602333,-0.0134161915630102,-0.971092104911804,-0.238328039646149,0.20496678352356,-0.957479536533356,-0.203031048178673,-0.0133976880460978,-0.97070449590683,-0.23990261554718,0.0559505149722099,-0.971706807613373,-0.22946760058403,-0.013417499139905,-0.971119403839111,-0.238216444849968,-0.0202733390033245,-0.971328258514404,-0.236876174807549,-0.157853871583939,-0.965420424938202,-0.207474306225777,0.0549361519515514,-0.972904980182648,-0.224583759903908,-0.0133949471637607,-0.970646917819977,-0.240135580301285,-0.110817231237888,-0.959150612354279,-0.260287642478943,-0.113440565764904,-0.965306878089905,-0.235189393162727,-0.0134303513914347,-0.971387445926666,-0.237120270729065,-0.160314545035362,-0.959060966968536,-0.233455196022987,0.158244386315346,0.142818421125412,-0.977016687393188,-0.0145326219499111,0.135656073689461,-0.990649461746216,0.205611348152161,0.144051417708397,-0.96797376871109,0.157356515526772,0.150277823209763,-0.976040720939636,-0.0147485863417387,0.123297110199928,-0.992260277271271,-0.0146551700308919,0.123312793672085,-0.992259621620178,0.204220101237297,0.112469390034676,-0.97244268655777,-0.0144107872620225,0.147688001394272,-0.988929033279419,0.0594381466507912,0.136598527431488,-0.988841772079468,-0.0146461501717567,0.124229736626148,-0.992145359516144,-0.0149113656952977,0.124176904559135,-0.992148101329803,-0.159160867333412,0.0940469801425934,-0.982762932777405,0.0587884038686752,0.133297517895699,-0.989331007003784,-0.0143857337534428,0.150133848190308,-0.988561034202576,-0.110745579004288,0.17103873193264,-0.979020595550537,-0.113445334136486,0.14357428252697,-0.98311585187912,-0.0144402617588639,0.144798547029495,-0.989355862140656,-0.163202583789825,0.142414391040802,-0.976259708404541,-0.156499490141869,0.910681188106537,0.382318824529648,0.0115908980369568,0.925413191318512,0.378782391548157,-0.208963304758072,0.900581061840057,0.38116666674614,-0.154117062687874,0.902971148490906,0.40111255645752,
  700. 0.0149466749280691,0.925156235694885,0.379292130470276,0.0115757817402482,0.924980819225311,0.379837393760681,-0.20673206448555,0.916875302791595,0.341469883918762,0.0115729868412018,0.924900770187378,0.380032360553741,-0.0624263808131218,0.927307784557343,0.369057178497314,0.0115839364007115,0.925214231014252,0.379268556833267,0.0148211866617203,0.92541640996933,0.378661930561066,0.158178523182869,0.924202919006348,0.347604155540466,-0.0613217428326607,0.929397761821747,0.363949745893478,0.0115717006847262,0.924863934516907,0.380122035741806,0.118923142552376,0.908730864524841,0.400082021951675,0.121857509016991,0.919619619846344,0.373430728912354,0.0116210337728262,0.926272809505463,0.376674354076386,0.160238698124886,0.914618492126465,0.371209532022476,0.156638577580452,-0.91112607717514,-0.381200522184372,-0.0116065330803394,-0.925859570503235,-0.377689480781555,0.208905354142189,-0.90106600522995,-0.380050718784332,0.154371351003647,-0.903802037239075,-0.399138301610947,-0.0145596768707037,-0.925957024097443,-0.377348095178604,-0.0116045884788036,-0.925804138183594,-0.377825647592545,0.206829741597176,-0.916248917579651,-0.343088179826736,-0.0115504078567028,-0.924253344535828,-0.381604969501495,0.0627620294690132,-0.926666259765625,-0.370608597993851,-0.0116134369745851,-0.926056385040283,-0.377206325531006,-0.0144264250993729,-0.926231801509857,-0.37667840719223,-0.157996222376823,-0.925000250339508,-0.345560252666473,0.0615985542535782,-0.928877174854279,-0.365229815244675,-0.0115525042638183,-0.924313485622406,-0.38145911693573,-0.118776865303516,-0.908177971839905,-0.401378691196442,-0.121989771723747,-0.920101046562195,-0.372199773788452,-0.0116382436826825,-0.926762342453003,-0.375467836856842,-0.1601342856884,-0.915131032466888,-0.369989365339279,0.163336053490639,0.577203512191772,0.800098478794098,-0.00933048687875271,0.592485904693604,0.805526793003082,0.206279098987579,0.570583164691925,0.794911205768585,0.161213010549545,0.562662065029144,0.810815513134003,-0.0218238681554794,0.595411956310272,0.803124189376831,
  701. -0.00935169123113155,0.59383237361908,0.804534494876862,0.204176992177963,0.602086305618286,0.771883368492126,-0.00927741173654795,0.589115619659424,0.807995498180389,0.0570575818419456,0.596132278442383,0.800856232643127,-0.00935738626867533,0.594193994998932,0.804267346858978,-0.0216803848743439,0.596035242080688,0.802665531635284,-0.157521679997444,0.610085427761078,0.776519656181335,0.0559157580137253,0.600908875465393,0.79735940694809,-0.00928845629096031,0.589816987514496,0.807483553886414,-0.113332718610764,0.566621601581573,0.816146850585938,-0.116327941417694,0.592968285083771,0.796778798103333,-0.00939465221017599,0.596560418605804,0.802513182163239,-0.159835860133171,0.589524388313293,0.791778743267059,0.158198013901711,-0.905824601650238,-0.393007874488831,-0.0114350179210305,-0.920917928218842,-0.389588683843613,0.209499835968018,-0.895894765853882,-0.391768366098404,0.156302765011787,-0.899210870265961,-0.408643156290054,-0.0164009816944599,-0.922107815742493,-0.38658532500267,-0.011467038653791,-0.921847939491272,-0.387382060289383,0.20721834897995,-0.913687884807587,-0.34962123632431,-0.0114529617130756,-0.921439528465271,-0.388352870941162,0.0569670125842094,-0.923930168151855,-0.378296136856079,-0.0114678358659148,-0.92187112569809,-0.3873271048069,-0.016366071999073,-0.922181725502014,-0.386410474777222,-0.161594599485397,-0.920876204967499,-0.354787796735764,0.0559387765824795,-0.925894021987915,-0.373618900775909,-0.0114513467997313,-0.921392619609833,-0.388464212417603,-0.113291136920452,-0.906201183795929,-0.407387495040894,-0.115724459290504,-0.916464507579803,-0.38301545381546,-0.0114870341494679,-0.92242693901062,-0.386000633239746,-0.163978174328804,-0.910256147384644,-0.380190461874008,-0.267519354820251,0.959565460681915,0.0875655934214592,-0.354739129543304,0.934113264083862,0.0399070642888546,-0.296885877847672,0.952210366725922,0.071792759001255,-0.264406025409698,0.962348103523254,0.0630519762635231,-0.441164612770081,0.889623999595642,0.11808005720377,-0.360982835292816,0.92792147397995,0.0930225923657417,
  702. -0.293811172246933,0.953766882419586,0.063275121152401,-0.24296972155571,0.966702699661255,0.0803216472268105,-0.265659838914871,0.961316227912903,0.0727747529745102,-0.442524462938309,0.889678359031677,0.112448118627071,-0.266476184129715,0.960581123828888,0.0792115852236748,-0.203524276614189,0.976769387722015,0.0670786798000336,-0.284871757030487,0.956348180770874,0.0651641264557838,-0.265490978956223,0.961461961269379,0.0714538618922234,-0.242499262094498,0.966943919658661,0.0788261517882347,-0.285156041383743,0.954956889152527,0.0821177735924721,-0.205912351608276,0.97703891992569,0.0547278746962547,-0.266005128622055,0.961011469364166,0.0754870176315308,-0.285000503063202,0.955800831317902,0.0722466707229614,-0.244568705558777,0.965862274169922,0.0854175612330437,-0.280198872089386,0.957098782062531,0.073827400803566,-0.203423023223877,0.976754605770111,0.0675984174013138,-0.284939557313919,0.956073641777039,0.068795457482338,-0.251442015171051,0.965455293655396,0.0683590546250343,-0.413522690534592,0.90919417142868,0.0486294478178024,-0.285070031881332,0.955453455448151,0.0764442160725594,-0.281024277210236,0.956584274768829,0.0772776901721954,-0.285039573907852,0.955610930919647,0.074566550552845,-0.413452744483948,0.904807984828949,0.101879343390465,-0.251612275838852,0.965477466583252,0.0674129277467728,-0.414268046617508,0.904894411563873,0.0977144986391068,-0.28508123755455,0.955393373966217,0.0771503672003746,-0.407563805580139,0.908046305179596,0.0966631174087524,-0.244193866848946,0.778115570545197,0.578710317611694,-0.274096101522446,0.772523701190948,0.572781324386597,-0.235559672117233,0.779583811759949,0.580310821533203,-0.234560072422028,0.759873628616333,0.606278479099274,-0.26832515001297,0.745609521865845,0.609973788261414,-0.25452384352684,0.751581013202667,0.608558654785156,-0.233943223953247,0.74932998418808,0.619495868682861,-0.185406655073166,0.750616192817688,0.634192228317261,-0.250851809978485,0.748420536518097,0.613954544067383,-0.320350617170334,0.737300395965576,0.594780385494232,
  703. -0.235224321484566,0.772494494915009,0.589849054813385,-0.260925859212875,0.762645483016968,0.59185266494751,-0.193841725587845,0.729202747344971,0.656268775463104,-0.232782989740372,0.731521785259247,0.640849411487579,-0.275008171796799,0.732585072517395,0.622647285461426,-0.275903791189194,0.720960259437561,0.635683476924896,-0.233525216579437,0.742654740810394,0.627638459205627,-0.30354243516922,0.705709338188171,0.640184640884399,-0.274670898914337,0.736647129058838,0.61798620223999,-0.192914217710495,0.733378052711487,0.651874899864197,-0.19225412607193,0.733328700065613,0.652125358581543,-0.450769543647766,0.559919059276581,0.695196032524109,-0.27961140871048,0.642192363739014,0.713727176189423,-0.271940618753433,0.645238637924194,0.713943600654602,-0.186069041490555,0.747165143489838,0.638061583042145,-0.272991836071014,0.754888594150543,0.596337735652924,-0.296438336372375,0.755774736404419,0.583891272544861,-0.338115483522415,0.137724369764328,0.930972516536713,-0.250757843255997,0.179985284805298,0.951170742511749,-0.28637832403183,0.163110181689262,0.944130599498749,0.0785261914134026,-0.0845461711287498,0.993320524692535,0.287623375654221,-0.0212914794683456,0.957506895065308,0.0735415816307068,-0.0859899446368217,0.99357807636261,-0.251480132341385,-0.243498086929321,0.93673187494278,0.0761278048157692,-0.0751209482550621,0.994264245033264,0.0706492587924004,-0.0780694037675858,0.994441509246826,0.288796454668045,-0.0252752527594566,0.957056820392609,0.0801478326320648,-0.090931124985218,0.99262672662735,0.253303378820419,-0.0368568152189255,0.966684639453888,0.0763823837041855,-0.0761203691363335,0.994168817996979,-0.260405898094177,-0.225427284836769,0.938813805580139,-0.224714770913124,-0.210362643003464,0.951446712017059,-0.0392129383981228,-0.0961448401212692,0.994594752788544,0.252783238887787,-0.0346495024859905,0.966902315616608,0.0755684822797775,-0.072925977408886,0.994470357894897,-0.242265120148659,-0.122360624372959,0.962463319301605,-0.0360092036426067,-0.107730284333229,0.993527829647064,
  704. 0.0817718282341957,-0.0973352491855621,0.991886734962463,0.196259155869484,-0.0843276754021645,0.976919233798981,0.260938286781311,-0.0699038803577423,0.962821185588837,-0.0297375041991472,-0.130310371518135,0.991027176380157,-0.0334958843886852,-0.1167948320508,0.992591023445129,-0.242287129163742,-0.122242718935013,0.962472677230835,-0.239419505000114,-0.122203759849072,0.963194966316223,-0.157795444130898,-0.19106836616993,0.968810319900513,0.185614228248596,-0.0461500771343708,0.981538414955139,-0.0275394171476364,-0.138193055987358,0.990022420883179,-0.231542721390724,-0.182944849133492,0.955468058586121,-0.036347184330225,-0.10650972276926,0.993647158145905,-0.22561776638031,-0.180688008666039,0.957313120365143,-0.0274289846420288,-0.13858862221241,0.989970147609711,-0.215382188558578,-0.220246136188507,0.951368570327759,-0.1560368090868,-0.195066407322884,0.968298316001892,0.0998281687498093,0.281708091497421,0.954292953014374,-0.074875146150589,0.272858142852783,0.959136188030243,0.153618112206459,0.282705545425415,0.946825861930847,0.0997143313288689,0.258229643106461,0.960923850536346,-0.0786259546875954,0.268811643123627,0.959978222846985,-0.0743570178747177,0.268657475709915,0.960361480712891,0.147265285253525,0.321919649839401,0.935243725776672,-0.0743628740310669,0.268704921007156,0.960347771644592,-0.00100909918546677,0.288000732660294,0.957629680633545,-0.0743525698781013,0.268621355295181,0.960372030735016,-0.0786207914352417,0.268881618976593,0.959959089756012,-0.220602199435234,0.274714708328247,0.935877442359924,-0.00414303690195084,0.29739236831665,0.95474636554718,-0.0749014392495155,0.273071438074112,0.959073483943939,-0.170131742954254,0.237658143043518,0.956333518028259,-0.176090687513351,0.264837443828583,0.948078691959381,-0.0755752250552177,0.278544217348099,0.957445323467255,-0.220133379101753,0.257871210575104,0.940767645835876,0.0599117949604988,0.87143737077713,-0.486834168434143,-0.107550509274006,0.856524467468262,-0.504776060581207,0.114633172750473,0.870905935764313,-0.47789341211319,
  705. 0.0566915944218636,0.879104495048523,-0.473245590925217,-0.111293956637383,0.853892683982849,-0.508410215377808,-0.107271529734135,0.854805469512939,-0.507740437984467,0.116336211562157,0.850703299045563,-0.512610793113709,-0.107922077178955,0.858810365200043,-0.500796914100647,-0.0330979116261005,0.86095130443573,-0.507609486579895,-0.107303276658058,0.855001211166382,-0.507404088973999,-0.111364647746086,0.854018270969391,-0.508183717727661,-0.236379265785217,0.815818190574646,-0.527793109416962,-0.0340838879346848,0.856663584709167,-0.514748275279999,-0.107707343995571,0.857489824295044,-0.503100693225861,-0.209261804819107,0.85069352388382,-0.482213705778122,-0.209694683551788,0.834523439407349,-0.509508371353149,-0.107063055038452,0.85351949930191,-0.509943127632141,-0.240279167890549,0.826990127563477,-0.508284628391266,0.0397176668047905,0.99428528547287,-0.0990926250815392,-0.131060272455215,0.984798908233643,-0.113993093371391,0.0943921506404877,0.991117596626282,-0.0936808213591576,0.0359721966087818,0.996508121490479,-0.0753500163555145,-0.136695295572281,0.984422564506531,-0.110574141144753,-0.13119812309742,0.985291063785553,-0.109492972493172,0.0939446538686752,0.986418902873993,-0.134730309247971,-0.131178140640259,0.985220372676849,-0.110151052474976,-0.0508737824857235,0.991510808467865,-0.11965899169445,-0.131202787160873,0.985307574272156,-0.109338469803333,-0.136696815490723,0.984423100948334,-0.110567346215248,-0.276686489582062,0.950562655925751,-0.140979498624802,-0.0519393496215343,0.99060595035553,-0.126499757170677,-0.131155446171761,0.985139787197113,-0.110895328223705,-0.228046253323555,0.969428896903992,-0.0905679911375046,-0.229064837098122,0.967274725437164,-0.109128452837467,-0.131275594234467,0.985562920570374,-0.106922447681427,-0.280668824911118,0.953495740890503,-0.109867691993713,0.274644494056702,-0.938093841075897,-0.211069762706757,0.106928870081902,-0.971987366676331,-0.209300652146339,0.324281990528107,-0.922269821166992,-0.210379660129547,0.273319751024246,-0.935885369777679,-0.222294867038727,
  706. 0.108784005045891,-0.973407030105591,-0.201605379581451,0.106850288808346,-0.973678171634674,-0.201330259442329,0.322481870651245,-0.931142210960388,-0.170234203338623,0.106959648430347,-0.971261143684387,-0.212630093097687,0.181554615497589,-0.962978005409241,-0.199277117848396,0.10684260725975,-0.973832428455353,-0.200586840510368,0.108908928930759,-0.973530292510986,-0.200941830873489,-0.0309063717722893,-0.984065890312195,-0.175097391009331,0.180903777480125,-0.963755786418915,-0.196083158254623,0.106981799006462,-0.970711588859558,-0.215114012360573,0.00730486866086721,-0.971102476119995,-0.238551527261734,0.00406399695202708,-0.978591799736023,-0.205770596861839,0.106887549161911,-0.972903609275818,-0.205021098256111,-0.033465713262558,-0.978084623813629,-0.205500990152359,-0.244715392589569,0.693637669086456,-0.677481472492218,-0.316050142049789,0.672601938247681,-0.669118106365204,-0.308502495288849,0.675032615661621,-0.670192003250122,-0.31248813867569,0.654124319553375,-0.688819766044617,-0.24581004679203,0.675373435020447,-0.695304453372955,-0.206850364804268,0.686099648475647,-0.697481334209442,-0.307859927415848,0.667498469352722,-0.677988231182098,-0.260646432638168,0.667994797229767,-0.69702684879303,-0.246210142970085,0.667803525924683,-0.702437937259674,-0.246732443571091,0.656930685043335,-0.712436139583588,-0.236851736903191,0.658771157264709,-0.714088141918182,-0.202158898115158,0.664661526679993,-0.719275295734406,-0.260662585496902,0.667949199676514,-0.697064459323883,-0.311306774616241,0.668719232082367,-0.675205707550049,-0.24623242020607,0.667364478111267,-0.702847301959991,-0.250929713249207,0.714745342731476,-0.652819633483887,-0.242936313152313,0.718177795410156,-0.652075707912445,-0.307277470827103,0.688736021518707,-0.656675934791565,-0.317176789045334,0.636138319969177,-0.703368246555328,-0.271779596805573,0.635269165039063,-0.722889304161072,-0.300020605325699,0.635991275310516,-0.710987210273743,-0.307634115219116,0.687030732631683,-0.65829336643219,-0.524262547492981,0.590126991271973,-0.613920927047729,
  707. -0.248665764927864,0.705602586269379,-0.663543879985809,-0.374872386455536,0.635783016681671,-0.674722731113434,-0.317123115062714,0.636457741260529,-0.703103482723236,-0.299957573413849,0.636156439781189,-0.710866034030914,-0.516917824745178,0.564573049545288,-0.64346969127655,-0.310399353504181,0.673376321792603,-0.670981824398041,-0.433837085962296,0.614018857479095,-0.65936803817749,-0.417910248041153,0.691810607910156,-0.588854014873505,-0.308967918157578,0.680542349815369,-0.664380192756653,-0.352003127336502,0.686361134052277,-0.636397838592529,-0.163132280111313,0.986290156841278,-0.024892445653677,-0.115856200456619,0.990411758422852,-0.0752455592155457,-0.263938426971436,0.960715174674988,0.0858076065778732,-0.106089003384113,0.992314517498016,-0.0636947751045227,-0.269246846437454,0.963026285171509,-0.00930389389395714,-0.314982324838638,0.94907534122467,0.00650498364120722,-0.0346935391426086,0.9980149269104,0.052559994161129,0.0197622645646334,0.981684267520905,-0.189487859606743,-0.0290040336549282,0.999215364456177,0.0269718263298273,-0.310194343328476,0.947202801704407,-0.0811572894454002,-0.285374820232391,0.954361975193024,-0.0880593508481979,-0.155518427491188,0.980233073234558,-0.122300051152706,-0.197414830327034,0.965064287185669,-0.172274425625801,-0.186017289757729,0.953219890594482,-0.238263070583344,-0.235457196831703,0.964841842651367,0.116791322827339,-0.0859790220856667,0.995495438575745,-0.0399574302136898,-0.321618288755417,0.946698307991028,-0.018005819991231,-0.300384849309921,0.953606307506561,-0.0201027300208807,-0.262233912944794,0.954674899578094,0.14081597328186,-0.249072074890137,0.963684558868408,0.0963088423013687,-0.138529941439629,0.963802397251129,-0.227803438901901,-0.26671302318573,0.961278676986694,0.0693359225988388,-0.432098716497421,0.896718204021454,0.0958507061004639,-0.283407866954803,0.956289052963257,0.0720505490899086,-0.138803794980049,0.957048535346985,0.254542291164398,-0.107131667435169,0.971684753894806,0.210598468780518,-0.201020956039429,0.918587207794189,0.340276926755905,
  708. -0.383117347955704,0.870784819126129,0.308147668838501,-0.139734670519829,0.957249045372009,0.253275573253632,-0.255477219820023,0.924981355667114,0.281319916248322,0.157467916607857,0.97453248500824,0.159657016396523,-0.0143575044348836,0.98814070224762,0.152878448367119,0.207507371902466,0.964934527873993,0.160755068063736,0.154955640435219,0.971125900745392,0.181392505764961,-0.0204492453485727,0.987845659255981,0.154087007045746,-0.0143343238160014,0.987791180610657,0.155123203992844,0.206207081675529,0.969343841075897,0.133608505129814,-0.0141848158091307,0.985442876815796,0.169414147734642,0.0648207515478134,0.985381722450256,0.157547935843468,-0.0143483160063624,0.988002598285675,0.153769135475159,-0.0201763734221458,0.988079905509949,0.152614191174507,-0.155052319169044,0.980051517486572,0.124329514801502,0.0634178221225739,0.986546754837036,0.150677800178528,-0.0141940144822001,0.985591888427734,0.168544098734856,-0.117296762764454,0.974624693393707,0.190652281045914,-0.12112021446228,0.98073673248291,0.153249680995941,-0.0143365254625678,0.987824559211731,0.154910504817963,-0.15755520761013,0.975699543952942,0.152272135019302,0.163945406675339,-0.206975281238556,-0.964511871337891,-0.0170885920524597,-0.219183027744293,-0.975534081459045,0.208333149552345,-0.202858880162239,-0.956789195537567,0.161439925432205,-0.186522334814072,-0.969095766544342,-0.0236983858048916,-0.219974651932716,-0.975217700004578,-0.0170874167233706,-0.218912020325661,-0.975594937801361,0.206402495503426,-0.242571115493774,-0.947922587394714,-0.0170691721141338,-0.214740961790085,-0.976521909236908,0.0525029003620148,-0.224610418081284,-0.97303318977356,-0.0170882176607847,-0.219096153974533,-0.975553631782532,-0.0236316844820976,-0.22032542526722,-0.97514009475708,-0.156793490052223,-0.24323858320713,-0.957209885120392,0.0512965880334377,-0.230436444282532,-0.971734464168549,-0.0170722231268883,-0.215433552861214,-0.976369321346283,-0.108191095292568,-0.193757057189941,-0.975065588951111,-0.110633291304111,-0.218284115195274,-0.969593942165375,
  709. -0.0170886758714914,-0.219201996922493,-0.975529849529266,-0.159089475870132,-0.217043116688728,-0.963111102581024,0.163579374551773,-0.965217173099518,0.20395539700985,-0.0170757193118334,-0.976193070411682,0.216230198740959,0.208467587828636,-0.95740669965744,0.19978429377079,0.161462664604187,-0.969056665897369,0.186705619096756,-0.0236634537577629,-0.975177049636841,0.220158368349075,-0.0170882418751717,-0.975552499294281,0.219101563096046,0.206315606832504,-0.947523534297943,0.244198843836784,-0.0170763563364744,-0.976160883903503,0.216375574469566,0.0521718449890614,-0.972680151462555,0.226211041212082,-0.0170891545712948,-0.975505113601685,0.219312325119972,-0.0235920324921608,-0.975093960762024,0.220533937215805,-0.156774610280991,-0.957159757614136,0.243448153138161,0.051212627440691,-0.971642732620239,0.23084120452404,-0.0170740950852633,-0.976275205612183,0.215859547257423,-0.108233168721199,-0.974977850914001,0.194174885749817,-0.110684216022491,-0.969471454620361,0.21880167722702,-0.0170909333974123,-0.975412428379059,0.219723671674728,-0.159045442938805,-0.963001728057861,0.217559650540352,0.154307797551155,-0.307054579257965,-0.939098834991455,-0.0174352489411831,-0.319268673658371,-0.947503924369812,0.202631190419197,-0.301880538463593,-0.931562483310699,0.153502732515335,-0.300433337688446,-0.941369712352753,-0.0197179168462753,-0.331755012273788,-0.943159461021423,-0.0174650494009256,-0.33141303062439,-0.943324148654938,0.201282739639282,-0.331581056118011,-0.921704530715942,-0.0174028016626835,-0.307155340909958,-0.951500296592712,0.0606747083365917,-0.317636966705322,-0.946269273757935,-0.0174631904810667,-0.330621033906937,-0.943602025508881,-0.0198548994958401,-0.33105531334877,-0.943402469158173,-0.161090970039368,-0.353220403194427,-0.921566665172577,0.0599962286651134,-0.320889711380005,-0.9452143907547,-0.0173954907804728,-0.304556369781494,-0.952335476875305,-0.111446633934975,-0.282082855701447,-0.952895045280457,-0.11414161324501,-0.308683007955551,-0.944291532039642,-0.0174117051064968,-0.310380965471268,-0.950452744960785,
  710. -0.16512431204319,-0.306600242853165,-0.937406182289124,0.150151371955872,-0.986648738384247,0.063077799975872,-0.0162762701511383,-0.997225821018219,0.0726345553994179,0.210564211010933,-0.975791752338409,0.0591036267578602,0.148210644721985,-0.987859487533569,0.0465537309646606,-0.0180322732776403,-0.996991217136383,0.0753882825374603,-0.0162927843630314,-0.997043073177338,0.0750972628593445,0.208671554923058,-0.972981691360474,0.0988080054521561,-0.016237773001194,-0.997624278068542,0.0669485032558441,0.064957894384861,-0.994766294956207,0.0788701549172401,-0.0162970814853907,-0.996994376182556,0.0757404044270515,-0.0179079603403807,-0.996942758560181,0.0760554596781731,-0.157612562179565,-0.982153594493866,0.102628350257874,0.0636592134833336,-0.994311809539795,0.0853906348347664,-0.0162400528788567,-0.997601807117462,0.0672831684350967,-0.116060711443424,-0.992267608642578,0.0439886674284935,-0.119515985250473,-0.989819467067719,0.0772874727845192,-0.0163075719028711,-0.996873378753662,0.0773148611187935,-0.159787893295288,-0.984139859676361,0.0770500153303146,0.113339878618717,0.0922625958919525,0.989263236522675,-0.00681300228461623,0.0662638247013092,0.99777889251709,-0.0447654090821743,0.0578379184007645,0.997321844100952,0.115066096186638,0.0809760913252831,0.990051925182343,0.18298251926899,0.0879542306065559,0.979173839092255,-0.00679058814421296,0.0676409602165222,0.997686624526978,-0.0449795797467232,0.0588315464556217,0.997254133224487,-0.00680812215432525,0.0665637403726578,0.997758984565735,-0.192126974463463,0.0280483514070511,0.980969190597534,-0.00679295882582664,0.0674953758716583,0.99769651889801,0.18212865293026,0.0431330651044846,0.982328236103058,0.0811329334974289,0.0564614906907082,0.995102822780609,-0.194727063179016,0.0658721625804901,0.97864305973053,-0.00686199124902487,0.0632506087422371,0.997974157333374,-0.103889212012291,0.0648878738284111,0.992470026016235,-0.101502977311611,0.0849270299077034,0.991203606128693,-0.00680217612534761,0.0669291615486145,0.997734606266022,0.0800593048334122,0.0498830229043961,0.995541155338287,
  711. 0.116691797971725,0.436016768217087,-0.892340958118439,-0.0142918769270182,0.464913904666901,-0.885240495204926,-0.0449368581175804,0.470471292734146,-0.881270349025726,0.118819810450077,0.447531998157501,-0.886339068412781,0.186351716518402,0.435865193605423,-0.880508124828339,-0.0142831243574619,0.464160323143005,-0.8856360912323,-0.0452808663249016,0.468992978334427,-0.882040441036224,-0.0142801376059651,0.463903337717056,-0.885770738124847,-0.191466048359871,0.486691802740097,-0.852333307266235,-0.0142591521143913,0.462099373340607,-0.886713445186615,0.185573682188988,0.475824385881424,-0.859740376472473,0.08443633466959,0.471260160207748,-0.877943277359009,-0.193826198577881,0.451143205165863,-0.871149361133575,-0.0142723433673382,0.463233053684235,-0.886121511459351,-0.0973204523324966,0.45953294634819,-0.882812738418579,-0.0951724126935005,0.443523287773132,-0.891195476055145,-0.0142298964783549,0.459589779376984,-0.888017296791077,0.0837819203734398,0.474830061197281,-0.876080513000488,0.16409707069397,-0.985146880149841,0.0505747944116592,-0.0161967575550079,-0.998008072376251,0.0609719157218933,0.211051970720291,-0.97631824016571,0.0475370213389397,0.162018790841103,-0.98623651266098,0.0329762734472752,-0.0200498383492231,-0.997713088989258,0.0645487904548645,-0.0162169635295868,-0.997824251651764,0.0639057531952858,0.208942398428917,-0.97344446182251,0.0935354977846146,-0.0161993578076363,-0.997984945774078,0.0613484047353268,0.0576964914798737,-0.995714008808136,0.0722824335098267,-0.0162182785570621,-0.997811913490295,0.0640973821282387,-0.019996415823698,-0.997695565223694,0.0648360922932625,-0.157890126109123,-0.983238518238068,0.0911742746829987,0.056642197072506,-0.995390176773071,0.0773951858282089,-0.0161959175020456,-0.998015463352203,0.0608504004776478,-0.114225015044212,-0.99272745847702,0.0380129292607307,-0.116783656179905,-0.991053223609924,0.0646151080727577,-0.0162218138575554,-0.997778534889221,0.0646134093403816,-0.160320669412613,-0.984961271286011,0.064410112798214,-0.232770442962646,0.871856987476349,0.430910110473633,
  712. -0.320661306381226,0.868323147296906,0.378406226634979,-0.256583899259567,0.871807813644409,0.417271971702576,-0.229606956243515,0.882951200008392,0.409485071897507,-0.40961617231369,0.800999641418457,0.436593949794769,-0.327205002307892,0.843452930450439,0.42605647444725,-0.259312748908997,0.867910385131836,0.423660814762115,-0.209578990936279,0.871752202510834,0.442859977483749,-0.233207508921623,0.8702432513237,0.433925032615662,-0.41075137257576,0.802758812904358,0.432274848222733,-0.231890559196472,0.875043869018555,0.424882382154465,-0.166290730237961,0.892884969711304,0.418454110622406,-0.246556848287582,0.869120121002197,0.428765684366226,-0.233195766806602,0.870287001132965,0.4338438808918,-0.209482058882713,0.871910333633423,0.442594140768051,-0.246533617377281,0.869679987430573,0.4276422560215,-0.168148994445801,0.896716833114624,0.409420162439346,-0.231823861598969,0.875282168388367,0.424427628517151,-0.246781051158905,0.863045871257782,0.440739303827286,-0.213376581668854,0.865448892116547,0.453286737203598,-0.24621444940567,0.863095998764038,0.440957754850388,-0.165778383612633,0.891818881034851,0.420923560857773,-0.24626612663269,0.875478684902191,0.415800601243973,-0.215110644698143,0.882549464702606,0.418131291866302,-0.377367407083511,0.834979236125946,0.400504112243652,-0.246786922216415,0.862865090370178,0.441089689731598,-0.246289357542992,0.862937808036804,0.441225379705429,-0.246234342455864,0.876102149486542,0.414504170417786,-0.373127788305283,0.825590193271637,0.423292487859726,-0.216402366757393,0.885399043560028,0.411386132240295,-0.373459756374359,0.826250672340393,0.421708077192307,-0.246341571211815,0.873948574066162,0.418962687253952,-0.374521017074585,0.825775325298309,0.421697974205017,-0.21326607465744,0.500776588916779,0.838892459869385,-0.238267004489899,0.499190628528595,0.833089113235474,-0.199203073978424,0.501520037651062,0.841900110244751,-0.199449181556702,0.545476794242859,0.814048707485199,-0.241819053888321,0.529369354248047,0.813198387622833,-0.240956246852875,0.529710233211517,0.813232660293579,
  713. -0.19889785349369,0.4801986515522,0.854312062263489,-0.157485589385033,0.475092440843582,0.865728318691254,-0.216803416609764,0.482140153646469,0.848844587802887,-0.286164104938507,0.483563095331192,0.827210307121277,-0.199333235621452,0.514809668064117,0.833808839321136,-0.231646597385406,0.503767251968384,0.832200944423676,-0.16668239235878,0.44772869348526,0.878496468067169,-0.198396220803261,0.455277979373932,0.867963790893555,-0.250353395938873,0.46659392118454,0.848300218582153,-0.252041667699814,0.447404056787491,0.858081936836243,-0.198786616325378,0.473958015441895,0.857815623283386,-0.270999908447266,0.437454283237457,0.8574338555336,-0.249847963452339,0.472054094076157,0.845423519611359,-0.161263853311539,0.452121794223785,0.87725704908371,-0.164927884936333,0.453022003173828,0.876110672950745,-0.430355548858643,0.284049659967422,0.85680216550827,-0.258788466453552,0.346851468086243,0.901511311531067,-0.24194011092186,0.352202981710434,0.904111742973328,-0.18843224644661,0.384283900260925,0.903780519962311,-0.255307346582413,0.404944658279419,0.877973914146423,-0.285364627838135,0.413627594709396,0.864568948745728,-0.332383811473846,-0.0956370085477829,0.938282787799835,-0.255263358354568,-0.0706708878278732,0.964285433292389,-0.318765044212341,-0.09122184664011,0.943433880805969,-0.210958421230316,0.870806753635406,0.444063484668732,-0.236957788467407,0.860244750976563,0.451475322246552,-0.296358287334442,0.833022058010101,0.467168122529984,-0.36908832192421,0.869661927223206,0.327814191579819,-0.213540866971016,0.887277185916901,0.408827096223831,-0.303608357906342,0.880564332008362,0.363907307386398,-0.229156970977783,0.849709212779999,0.474848717451096,-0.208600327372551,0.856306076049805,0.47246789932251,-0.186831548810005,0.862820446491241,0.469717770814896,-0.210682421922684,0.869086265563965,0.447551041841507,-0.387557953596115,0.840877711772919,0.377787709236145,-0.151951998472214,0.871350109577179,0.466540217399597,-0.233304962515831,0.846502184867859,0.478542417287827,-0.185755655169487,0.861042082309723,0.473393380641937,
  714. -0.208291411399841,0.854436993598938,0.475974977016449,-0.157321155071259,0.860041916370392,0.485363841056824,-0.232238426804543,0.862082123756409,0.450421869754791,-0.20954854786396,0.862084984779358,0.461409956216812,-0.240726888179779,0.877105116844177,0.415616869926453,-0.203195929527283,0.888587474822998,0.411246508359909,-0.23056098818779,0.880362093448639,0.414492934942245,-0.233260750770569,0.847245693206787,0.477246433496475,-0.158713385462761,0.857009053230286,0.490250468254089,-0.201054394245148,0.852092087268829,0.483235239982605,-0.358317673206329,0.838384866714478,0.410754531621933,-0.240887120366097,0.877450942993164,0.414792984724045,-0.230578973889351,0.88019210100174,0.414843440055847,-0.359961152076721,0.827127397060394,0.43161141872406,-0.233444482088089,0.844083487987518,0.482728332281113,-0.203805044293404,0.845724523067474,0.49316680431366,-0.232548847794533,0.857979953289032,0.458029866218567,-0.355022877454758,0.838178038597107,0.4140245616436,-0.358706146478653,0.837335646152496,0.412551879882813,0.039327722042799,0.99683153629303,0.0691404789686203,-0.0851873829960823,0.992284119129181,0.0900854617357254,-0.112254232168198,0.989177942276001,0.0944772809743881,0.0399833954870701,0.996368587017059,0.0751738101243973,0.113546438515186,0.991070687770844,0.0699010267853737,-0.0847426354885101,0.992927968502045,0.0831435769796371,-0.112215526401997,0.989159524440765,0.0947163552045822,-0.0852375999093056,0.992208003997803,0.090873010456562,-0.268413692712784,0.956321239471436,0.115775190293789,-0.0854862928390503,0.991820573806763,0.0947853028774261,0.109234347939491,0.98575884103775,0.127856910228729,0.00871475227177143,0.993746280670166,0.111321367323399,-0.268819004297256,0.959922194480896,0.079282708466053,-0.0855031833052635,0.991793513298035,0.0950518324971199,-0.17515242099762,0.980619549751282,0.0877889469265938,-0.172797754406929,0.982236921787262,0.0731538459658623,-0.0855400785803795,0.991734445095062,0.0956339910626411,0.00718793459236622,0.992930710315704,0.118477649986744,0.17560975253582,-0.167456418275833,-0.970113158226013,
  715. 0.0589618235826492,-0.15084008872509,-0.986798226833344,0.0185978785157204,-0.144623726606369,-0.989311933517456,0.176596403121948,-0.157729357481003,-0.971563279628754,0.243691653013229,-0.159314796328545,-0.956678152084351,0.059135016053915,-0.153251364827156,-0.986416339874268,0.0182223953306675,-0.147150531411171,-0.988946259021759,0.0590911768376827,-0.152640655636787,-0.986513614654541,-0.13557805120945,-0.124274037778378,-0.982941865921021,0.0593040436506271,-0.155608773231506,-0.986036956310272,0.240641042590141,-0.118749484419823,-0.963322639465332,0.144299134612083,-0.139062002301216,-0.979714095592499,-0.135697200894356,-0.14817151427269,-0.979607820510864,0.0577883124351501,-0.134605005383492,-0.989212870597839,-0.0394310168921947,-0.14207997918129,-0.989069581031799,-0.0334753096103668,-0.175560995936394,-0.983899354934692,0.0590604841709137,-0.152213260531425,-0.986581444740295,0.142314031720161,-0.129895374178886,-0.981261491775513,0.0807942301034927,0.959843814373016,0.268648624420166,-0.0885366275906563,0.963129162788391,0.254053980112076,0.133955225348473,0.953026413917542,0.271655708551407,0.077058881521225,0.953379213809967,0.291770488023758,-0.0995200574398041,0.96145111322403,0.256334900856018,-0.0886607393622398,0.961860001087189,0.258775532245636,0.133394971489906,0.963598310947418,0.23169869184494,-0.0886190161108971,0.962291538715363,0.257180273532867,-0.0161753110587597,0.968050360679626,0.250233590602875,-0.0886667594313622,0.961797118186951,0.259006768465042,-0.0995094254612923,0.961464941501617,0.256287425756454,-0.233703404664993,0.947170257568359,0.219661742448807,-0.0172252915799618,0.969644129276276,0.243913009762764,-0.0885937064886093,0.962551116943359,0.256215900182724,-0.188126280903816,0.94395500421524,0.271214842796326,-0.1892219632864,0.948676705360413,0.253392070531845,-0.0887125730514526,0.961316287517548,0.2607701420784,-0.237299621105194,0.939016938209534,0.248869642615318,-0.242232412099838,0.804176926612854,0.542791783809662,-0.0696701109409332,0.83125114440918,0.551513910293579,
  716. -0.291991144418716,0.791424810886383,0.537017703056335,-0.239656075835228,0.790884137153625,0.563087224960327,-0.0639844760298729,0.829629480838776,0.55463582277298,-0.0697567462921143,0.828788936138153,0.555196285247803,-0.289775669574738,0.814273834228516,0.502979397773743,-0.069751039147377,0.82895290851593,0.554952144622803,-0.14722740650177,0.828682422637939,0.540009021759033,-0.0697430968284607,0.829180538654327,0.554612934589386,-0.0641304925084114,0.830080330371857,0.553943991661072,0.0749419406056404,0.843624651432037,0.531677722930908,-0.145438596606255,0.833533525466919,0.532981693744659,-0.0696981698274612,0.830459713935852,0.552701413631439,0.0305092632770538,0.818664729595184,0.573460698127747,0.0338691286742687,0.836026668548584,0.547642648220062,-0.0695452019572258,0.834706664085388,0.54628586769104,0.0762419328093529,0.83397901058197,0.54650354385376
  717. }
  718. BinormalsW: *3783 {
  719. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  720. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  721. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  722. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  723. }
  724. }
  725. LayerElementTangent: 0 {
  726. Version: 102
  727. Name: "UVmap_0"
  728. MappingInformationType: "ByPolygonVertex"
  729. ReferenceInformationType: "Direct"
  730. Tangents: *11349 {
  731. a: 0.178649827837944,-0.127284482121468,-0.975644886493683,0.0700849890708923,-0.150393769145012,-0.986138939857483,0.369944751262665,-0.0845292285084724,-0.925200462341309,-0.260775417089462,0.424418538808823,-0.867101550102234,-0.060684509575367,0.476419448852539,-0.877121388912201,0.0224983375519514,0.504774510860443,-0.862958014011383,0.11102369427681,-0.365873843431473,-0.924018442630768,0.360851734876633,-0.311095535755157,-0.879207372665405,0.355055451393127,-0.321772366762161,-0.877723276615143,-0.259980916976929,0.421183079481125,-0.868915855884552,-0.298996806144714,0.40945902466774,-0.861942112445831,-0.0596236549317837,0.471683323383331,-0.879749894142151,-0.189316034317017,0.395424783229828,-0.898776233196259,-0.0518161840736866,0.436637133359909,-0.898144245147705,-0.292459487915039,0.374099403619766,-0.880066514015198,-0.289323061704636,0.357784390449524,-0.887852728366852,-0.308755457401276,0.351024001836777,-0.883997857570648,-0.186944380402565,0.37673631310463,-0.907260596752167,0.322618097066879,0.0339873656630516,-0.945918798446655,0.0456262938678265,-0.0265854764729738,-0.998604774475098,0.117084212601185,0.0198708958923817,-0.992923200130463,-0.181055903434753,0.332179099321365,-0.925675868988037,0.0729582533240318,0.3680320084095,-0.926946461200714,-0.0333025902509689,0.352243959903717,-0.935315549373627,0.087866373360157,0.263555198907852,-0.960634231567383,0.235915586352348,0.273631632328033,-0.932453513145447,0.267832458019257,0.289291024208069,-0.919008433818817,0.245179444551468,0.490625858306885,-0.836165845394135,0.202726051211357,0.502175807952881,-0.840667486190796,0.209504321217537,0.482431650161743,-0.850510239601135,0.224211305379868,0.37993061542511,-0.897430777549744,0.402297794818878,0.373635232448578,-0.835794985294342,0.267318159341812,0.376009166240692,-0.887219309806824,0.401164770126343,0.464653849601746,-0.789407134056091,0.211940467357636,0.467086285352707,-0.858435571193695,0.14527316391468,0.480783462524414,-0.864721298217773,0.221628904342651,0.39986863732338,-0.889373779296875,
  732. 0.069242037832737,0.392467796802521,-0.917155683040619,0.152585670351982,0.389619320631027,-0.908248007297516,0.14605601131916,0.472063630819321,-0.869381129741669,0.37284654378891,0.461261332035065,-0.805123388767242,0.401567786931992,0.452465176582336,-0.796252846717834,-0.18223711848259,0.34092503786087,-0.922257959842682,0.0132394758984447,0.370327591896057,-0.928806841373444,0.0716903507709503,0.376436471939087,-0.923664510250092,0.154326871037483,0.363778352737427,-0.91861230134964,0.0716060325503349,0.376992881298065,-0.923444092273712,0.0139122102409601,0.361750543117523,-0.932171106338501,-0.146249681711197,0.361581325531006,-0.920798659324646,0.0119188036769629,0.387032270431519,-0.921989142894745,-0.18368311226368,0.35175746679306,-0.917892813682556,-0.14752484858036,0.37222421169281,-0.916343569755554,-0.185667470097542,0.366861790418625,-0.911559104919434,-0.307335942983627,0.340900540351868,-0.888443291187286,0.0138799119740725,0.362163364887238,-0.932011306285858,0.0166695006191731,0.367416232824326,-0.929907321929932,0.154309064149857,0.364053547382355,-0.918506264686584,0.0119467778131366,0.386680334806442,-0.922136545181274,-0.14619292318821,0.361110329627991,-0.920992374420166,0.0149411913007498,0.382114112377167,-0.923994362354279,-0.307330250740051,0.340860426425934,-0.888460636138916,-0.161077380180359,0.363634407520294,-0.917509734630585,-0.14750948548317,0.372095346450806,-0.916398406028748,0.014382160268724,0.386840641498566,-0.922034442424774,-0.14678643643856,0.36604717373848,-0.918946802616119,-0.161986321210861,0.377271682024002,-0.911825954914093,-0.160565689206123,0.356147319078445,-0.920531213283539,-0.306435912847519,0.33459734916687,-0.891146242618561,-0.28726527094841,0.337264239788055,-0.896510720252991,-0.287306725978851,0.33817932009697,-0.896152675151825,-0.145826146006584,0.341527998447418,-0.928489804267883,-0.160582199692726,0.35638689994812,-0.920435607433319,-0.139813289046288,0.42356476187706,-0.895011246204376,0.0140467425808311,0.389670073986053,-0.920847415924072,-0.162317872047424,0.382361888885498,-0.909644186496735,
  733. -0.145453497767448,0.347195208072662,-0.926444172859192,-0.287500828504562,0.342546910047531,-0.894429922103882,-0.203274607658386,0.344155877828598,-0.916643977165222,-0.19868215918541,0.38257971405983,-0.902307152748108,-0.00679231574758887,0.361981570720673,-0.932160615921021,-0.143380284309387,0.377154350280762,-0.914984524250031,-0.00453590555116534,0.391341149806976,-0.920234501361847,0.0150082092732191,0.38154661655426,-0.924227774143219,-0.142197996377945,0.393186032772064,-0.908396780490875,-0.00921975541859865,0.352008372545242,-0.935951471328735,-0.00907149631530046,0.359285145998001,-0.93318384885788,-0.143983960151672,0.36868804693222,-0.918334245681763,0.00585808651521802,0.413201302289963,-0.910620868206024,0.106550164520741,0.388373464345932,-0.915321290493011,-0.0026493591722101,0.404523223638535,-0.914523899555206,0.10538487881422,0.366882473230362,-0.924278795719147,0.0153648843988776,0.378522932529449,-0.925464391708374,-0.00709381839260459,0.373326003551483,-0.927673101425171,0.107486054301262,0.406297862529755,-0.907396733760834,0.00926792155951262,0.426790684461594,-0.904303073883057,0.200212195515633,0.389203310012817,-0.899130642414093,0.154001340270042,0.368770033121109,-0.916674554347992,0.0163437370210886,0.370196461677551,-0.928809702396393,0.105077505111694,0.379226565361023,-0.919318199157715,0.104250065982342,0.346722066402435,-0.932156503200531,0.105022877454758,0.379648983478546,-0.919150054454803,0.0162999220192432,0.370570093393326,-0.928661584854126,0.359312862157822,0.525451481342316,-0.771229565143585,0.137997180223465,0.553388893604279,-0.821411907672882,0.0825366526842117,0.535122752189636,-0.840732634067535,0.20530216395855,0.429118812084198,-0.879606783390045,0.259975373744965,0.418207556009293,-0.870353519916534,0.108977779746056,0.436320632696152,-0.893167495727539,0.100689701735973,0.412386685609818,-0.905427396297455,0.107777960598469,0.412023276090622,-0.904776751995087,0.260400950908661,0.414098113775253,-0.872189283370972,0.0877750292420387,0.501864433288574,-0.860481083393097,
  734. 0.249001562595367,0.508331298828125,-0.824377059936523,0.364935547113419,0.500240683555603,-0.785226941108704,0.25586125254631,0.455184817314148,-0.852843344211578,0.210609212517738,0.47362294793129,-0.85517543554306,0.291518151760101,0.453634470701218,-0.842159688472748,0.29289910197258,0.444730907678604,-0.846418678760529,0.375701934099197,0.445976585149765,-0.812374889850616,0.257179141044617,0.443837463855743,-0.858409821987152,0.179388821125031,-0.70990777015686,-0.681065797805786,0.0700543224811554,-0.733102202415466,-0.676500976085663,0.368072748184204,-0.645691633224487,-0.669032692909241,-0.264343023300171,-0.212099194526672,-0.940817058086395,-0.0556612387299538,-0.177541941404343,-0.982537865638733,0.0232075788080692,-0.14643719792366,-0.988947808742523,0.109491489827633,-0.863390266895294,-0.492512792348862,0.361242115497589,-0.79298335313797,-0.490593284368515,0.353750377893448,-0.800718426704407,-0.483436316251755,-0.26346880197525,-0.216229856014252,-0.940121710300446,-0.297264903783798,-0.22007055580616,-0.929086923599243,-0.0545305460691452,-0.18340764939785,-0.981523334980011,-0.190065145492554,-0.254344463348389,-0.948253214359283,-0.0469016209244728,-0.222542464733124,-0.973794162273407,-0.290906667709351,-0.259192675352097,-0.920973658561707,-0.287830710411072,-0.276997059583664,-0.916747689247131,-0.306771337985992,-0.279631376266479,-0.909779012203217,-0.187679573893547,-0.274201273918152,-0.943180799484253,0.32340881228447,-0.565358281135559,-0.75879955291748,0.0463741309940815,-0.643430709838867,-0.764098405838013,0.122056074440479,-0.60557633638382,-0.786371171474457,-0.181709632277489,-0.320773780345917,-0.929562151432037,0.0773090571165085,-0.29255810379982,-0.953117549419403,-0.029309369623661,-0.309951931238174,-0.950300335884094,0.0925023853778839,-0.395369470119476,-0.913852572441101,0.237146854400635,-0.369941413402557,-0.898278772830963,0.268917292356491,-0.34951314330101,-0.897509932518005,0.240379706025124,-0.142071709036827,-0.960225641727448,0.203982025384903,-0.134417295455933,-0.96970272064209,
  735. 0.209607571363449,-0.155623108148575,-0.965321779251099,0.225044056773186,-0.266223639249802,-0.937272846698761,0.403499275445938,-0.232007890939713,-0.885076642036438,0.262611865997314,-0.263531118631363,-0.928216755390167,0.402886658906937,-0.13167679309845,-0.905728220939636,0.212387457489967,-0.174295425415039,-0.961515843868256,0.142223447561264,-0.166670083999634,-0.975701689720154,0.222134485840797,-0.243925765156746,-0.944010853767395,0.0735266506671906,-0.267385482788086,-0.960780322551727,0.149506762623787,-0.265227377414703,-0.952524125576019,0.143005400896072,-0.176447406411171,-0.973866403102875,0.376411318778992,-0.143587380647659,-0.91525799036026,0.403229266405106,-0.145909398794174,-0.90339183807373,-0.182898610830307,-0.31182262301445,-0.932370483875275,0.0132174585014582,-0.292746245861053,-0.956098914146423,0.0760223492980003,-0.283977210521698,-0.955812513828278,0.151240527629852,-0.291863948106766,-0.944426655769348,0.0758820623159409,-0.283042699098587,-0.956100821495056,0.0138922613114119,-0.301948934793472,-0.953222990036011,-0.147326499223709,-0.294579774141312,-0.944202244281769,0.0119252521544695,-0.275094449520111,-0.961343228816986,-0.184334754943848,-0.300804883241653,-0.935701429843903,-0.148587837815285,-0.283576846122742,-0.94736784696579,-0.186393097043037,-0.284596025943756,-0.940352439880371,-0.305315762758255,-0.290372997522354,-0.906899034976959,0.0138640869408846,-0.301564931869507,-0.953344941139221,0.0176536124199629,-0.295343428850174,-0.9552281498909,0.151223093271255,-0.291587978601456,-0.944514691829681,0.0119513869285584,-0.275451838970184,-0.961240589618683,-0.147270143032074,-0.295066386461258,-0.944058954715729,0.0159612745046616,-0.280744522809982,-0.959649801254272,-0.305312037467957,-0.290399968624115,-0.906891644001007,-0.161348596215248,-0.290528148412704,-0.943165004253387,-0.148572787642479,-0.283709317445755,-0.94733053445816,0.0153842717409134,-0.275759160518646,-0.961103737354279,-0.147864788770676,-0.28990963101387,-0.945562481880188,-0.162217989563942,-0.277528613805771,-0.946923017501831,
  736. -0.160816535353661,-0.298247218132019,-0.94084358215332,-0.304401636123657,-0.296960115432739,-0.905071437358856,-0.292614877223969,-0.298029154539108,-0.908600687980652,-0.292655497789383,-0.297146558761597,-0.908876597881317,-0.145294353365898,-0.314777433872223,-0.937979161739349,-0.16082789003849,-0.298084378242493,-0.940893352031708,-0.139563605189323,-0.230901211500168,-0.96291571855545,0.0150539930909872,-0.272903859615326,-0.961923539638519,-0.162556052207947,-0.272335469722748,-0.948371827602386,-0.144936606287956,-0.309096038341522,-0.939921796321869,-0.292857140302658,-0.292677134275436,-0.910260856151581,-0.208932876586914,-0.304326832294464,-0.929372072219849,-0.204596728086472,-0.266117364168167,-0.941977679729462,-0.00422982592135668,-0.301894694566727,-0.953332006931305,-0.142965510487556,-0.27898234128952,-0.949594616889954,-0.0038737750146538,-0.271139055490494,-0.9625324010849,0.0160045195370913,-0.281117856502533,-0.959539890289307,-0.141845256090164,-0.26265949010849,-0.954405546188354,-0.00665726093575358,-0.312066614627838,-0.950037002563477,-0.0083867097273469,-0.304189056158066,-0.952574789524078,-0.143547236919403,-0.287673771381378,-0.946909725666046,0.00836962088942528,-0.248549222946167,-0.968583106994629,0.109580837190151,-0.270301640033722,-0.956519246101379,-0.00199326127767563,-0.257280558347702,-0.966334700584412,0.108465984463692,-0.292454749345779,-0.950108170509338,0.0163498520851135,-0.284099370241165,-0.958655416965485,-0.00641531171277165,-0.289787918329239,-0.957069396972656,0.110483191907406,-0.251344263553619,-0.961571395397186,0.0117660323157907,-0.234011545777321,-0.97216272354126,0.205546662211418,-0.259913682937622,-0.943501710891724,0.15091697871685,-0.286770582199097,-0.946037352085114,0.0173316281288862,-0.292568385601044,-0.956087529659271,0.103494554758072,-0.278894275426865,-0.954728662967682,0.107372403144836,-0.313005834817886,-0.943662285804749,0.103432424366474,-0.278424978256226,-0.954872369766235,0.0172851663082838,-0.292167842388153,-0.956210851669312,0.362966060638428,-0.0718633905053139,-0.929027080535889,
  737. 0.134990692138672,-0.0827439054846764,-0.987385928630829,0.0804238691926003,-0.112076967954636,-0.990439772605896,0.210681796073914,-0.216447547078133,-0.953291058540344,0.257817149162292,-0.219190433621407,-0.941002607345581,0.111900962889194,-0.219330430030823,-0.969212234020233,0.0990460216999054,-0.245598077774048,-0.96429854631424,0.110763445496559,-0.24524649977684,-0.963112473487854,0.258282601833344,-0.224162846803665,-0.939702689647675,0.0857838541269302,-0.149624362587929,-0.98501455783844,0.247171252965927,-0.119417048990726,-0.961585223674774,0.368575692176819,-0.100553944706917,-0.924143314361572,0.253841131925583,-0.179147809743881,-0.950510799884796,0.216011494398117,-0.16643813252449,-0.962100625038147,0.294493407011032,-0.172931015491486,-0.939876854419708,0.295874655246735,-0.182534232735634,-0.937624335289001,0.379277139902115,-0.160371094942093,-0.911279439926147,0.255139976739883,-0.191789835691452,-0.947692036628723,0.189727336168289,-0.309870779514313,-0.931656420230865,0.0823302268981934,-0.337554007768631,-0.937698781490326,0.374432355165482,-0.250519067049026,-0.892771422863007,-0.26800948381424,0.23610907793045,-0.934036076068878,-0.0712021440267563,0.291928827762604,-0.953786015510559,0.00746670365333557,0.325390934944153,-0.945550203323364,0.130612447857857,-0.535511136054993,-0.834367096424103,0.377439886331558,-0.463838845491409,-0.801494002342224,0.36913475394249,-0.473976880311966,-0.799428224563599,-0.267020553350449,0.232365310192108,-0.935257375240326,-0.313536256551743,0.218394786119461,-0.924120545387268,-0.0698851644992828,0.286529213190079,-0.955519378185272,-0.197376668453217,0.203999325633049,-0.958867430686951,-0.0606686547398567,0.248741537332535,-0.96666806936264,-0.305522531270981,0.180399745702744,-0.934939622879028,-0.301700204610825,0.162961974740028,-0.939372360706329,-0.312748372554779,0.158541917800903,-0.936511039733887,-0.194132298231125,0.184329807758331,-0.963501513004303,0.326983720064163,-0.139688968658447,-0.934648931026459,0.0534504577517509,-0.219146966934204,-0.974226713180542,
  738. 0.130139991641045,-0.169942900538445,-0.976822912693024,-0.185790479183197,0.135531231760979,-0.973197400569916,0.0713130757212639,0.182558715343475,-0.98060530424118,-0.039126954972744,0.160420507192612,-0.986273050308228,0.0908750295639038,0.0738651975989342,-0.993119180202484,0.234162122011185,0.095061756670475,-0.967538833618164,0.262905895709991,0.11314868927002,-0.958163797855377,0.233538180589676,0.326064318418503,-0.916046917438507,0.189650565385818,0.334598809480667,-0.923079907894135,0.197160944342613,0.315053820610046,-0.928368926048279,0.217470854520798,0.203925058245659,-0.954526603221893,0.396089464426041,0.217867746949196,-0.891990482807159,0.260131508111954,0.205228924751282,-0.943510830402374,0.391018003225327,0.31606537103653,-0.86441171169281,0.200911939144135,0.295884728431702,-0.933855891227722,0.128719940781593,0.307406067848206,-0.942832291126251,0.213421866297722,0.227643519639969,-0.950068175792694,0.0665042102336884,0.208219707012177,-0.975818514823914,0.139831006526947,0.208809539675713,-0.967908084392548,0.12988369166851,0.297758460044861,-0.945764303207397,0.364855051040649,0.309163212776184,-0.878236353397369,0.391954243183136,0.302802920341492,-0.868724524974823,-0.187380060553551,0.144646510481834,-0.971579194068909,0.00475251954048872,0.180896490812302,-0.983490645885468,0.0696732997894287,0.191353589296341,-0.979045271873474,0.142627596855164,0.181335717439651,-0.973023593425751,0.0694922134280205,0.192321985960007,-0.978868365287781,0.00582862691953778,0.170878544449806,-0.985274851322174,-0.155374437570572,0.167738944292068,-0.973510384559631,0.00275773741304874,0.199404746294022,-0.979913353919983,-0.189206317067146,0.155222088098526,-0.969591200351715,-0.156956419348717,0.178193166851997,-0.971396863460541,-0.192352116107941,0.173709034919739,-0.965829193592072,-0.310934841632843,0.147908449172974,-0.938851773738861,0.00579065689817071,0.17123244702816,-0.98521363735199,0.0135542899370193,0.178414955735207,-0.983861982822418,0.142600879073143,0.181604132056236,-0.972977459430695,
  739. 0.00279583013616502,0.199052050709724,-0.979984939098358,-0.155299752950668,0.167247906327248,-0.973606765270233,0.0111804557964206,0.194208115339279,-0.980896651744843,-0.310927033424377,0.147862955927849,-0.938861608505249,-0.169203355908394,0.168821111321449,-0.971014857292175,-0.156935200095177,0.178052350878716,-0.971426129341125,0.0104248858988285,0.199220076203346,-0.979899346828461,-0.156092092394829,0.172468826174736,-0.97256863117218,-0.170829951763153,0.185483768582344,-0.967684328556061,-0.168402850627899,0.160783380270004,-0.97251695394516,-0.309765070676804,0.141155496239662,-0.940276920795441,-0.292408585548401,0.142953351140022,-0.945548295974731,-0.292491614818573,0.143977388739586,-0.945367217063904,-0.147500574588776,0.146435678005219,-0.978161633014679,-0.168444603681564,0.161200106143951,-0.972440719604492,-0.144985258579254,0.233523309230804,-0.961481213569641,0.00996629800647497,0.202258557081223,-0.979281425476074,-0.171371385455132,0.191133946180344,-0.966488420963287,-0.147365763783455,0.152418434619904,-0.977267622947693,-0.292864292860031,0.148620381951332,-0.944533050060272,-0.213195532560349,0.149482920765877,-0.965506374835968,-0.210464879870415,0.1892911195755,-0.959100306034088,-0.00809944327920675,0.170193761587143,-0.985377430915833,-0.146559327840805,0.184098929166794,-0.971919715404511,-0.0133990803733468,0.202582731842995,-0.979173481464386,0.0112846903502941,0.193516120314598,-0.981032192707062,-0.146061718463898,0.201101034879684,-0.968619823455811,-0.0101294629275799,0.159543961286545,-0.987138867378235,-0.0165845807641745,0.168422192335129,-0.985575437545776,-0.146804094314575,0.175107643008232,-0.973542928695679,0.00249273260124028,0.225346475839615,-0.974275529384613,0.0992430970072746,0.205011919140816,-0.973715126514435,-0.0120678041130304,0.216734632849693,-0.976155936717987,0.0989487841725349,0.181920990347862,-0.978321969509125,0.0117753120139241,0.190257176756859,-0.981663644313812,-0.0151953464373946,0.183371886610985,-0.982926189899445,0.0994456857442856,0.224105641245842,-0.969477832317352,
  740. 0.00532455835491419,0.23997363448143,-0.970764815807343,0.195576325058937,0.212638959288597,-0.957358121871948,0.142100393772125,0.18661142885685,-0.972102701663971,0.0131121007725596,0.181362226605415,-0.983328938484192,0.0966830998659134,0.195991888642311,-0.975827634334564,0.0986270681023598,0.160430580377579,-0.982107400894165,0.096604235470295,0.196462422609329,-0.975740790367126,0.0130527224391699,0.181757807731628,-0.983256697654724,0.348469078540802,0.377757787704468,-0.857827723026276,0.118435144424438,0.387082904577255,-0.914406895637512,0.0671640262007713,0.36053740978241,-0.930323481559753,0.198757842183113,0.255278736352921,-0.946217775344849,0.250034958124161,0.249177098274231,-0.935624539852142,0.0997044891119003,0.256637006998062,-0.96135139465332,0.0908800736069679,0.230137571692467,-0.968905329704285,0.099503181874752,0.230274870991707,-0.968025088310242,0.250610768795013,0.245030105113983,-0.936565279960632,0.0739224851131439,0.324779629707336,-0.94289642572403,0.235075011849403,0.34589409828186,-0.908348500728607,0.355180472135544,0.350847244262695,-0.866460084915161,0.244295656681061,0.288604974746704,-0.925757527351379,0.201939344406128,0.303739607334137,-0.931108355522156,0.283142387866974,0.290975242853165,-0.913872957229614,0.284897774457932,0.281590938568115,-0.916264057159424,0.368335962295532,0.293196171522141,-0.882249772548676,0.246102184057236,0.276546984910965,-0.928953945636749,0.183077976107597,0.0438454188406467,-0.982120275497437,0.0678334608674049,0.0245737545192242,-0.99739396572113,0.365536600351334,0.0776512920856476,-0.927552402019501,-0.259478747844696,0.569153785705566,-0.780214548110962,-0.0585287995636463,0.621304154396057,-0.781380534172058,0.0220617242157459,0.64813756942749,-0.761203646659851,0.107691153883934,-0.199478447437286,-0.973966598510742,0.360068738460541,-0.154088646173477,-0.920112609863281,0.351027339696884,-0.16412553191185,-0.921869099140167,-0.258649528026581,0.566122710704803,-0.782691240310669,-0.298350244760513,0.553299009799957,-0.77771931886673,-0.0573970228433609,0.61666864156723,-0.785127639770508,
  741. -0.193216741085052,0.544913709163666,-0.815926671028137,-0.0497693121433258,0.58506566286087,-0.809457361698151,-0.292044132947922,0.521332263946533,-0.801824867725372,-0.288985937833786,0.506357967853546,-0.812458455562592,-0.307664811611176,0.499554485082626,-0.809807181358337,-0.190804585814476,0.528075337409973,-0.82748419046402,0.323203235864639,0.198219522833824,-0.925337076187134,0.0439799055457115,0.149419531226158,-0.987795412540436,0.117104850709438,0.192479506134987,-0.974288523197174,-0.184668406844139,0.486635208129883,-0.853864014148712,0.0735808238387108,0.523388624191284,-0.848911166191101,-0.0321585796773434,0.509781956672668,-0.859702408313751,0.088302843272686,0.426498889923096,-0.900167405605316,0.233685165643692,0.431642770767212,-0.871249675750732,0.269621759653091,0.444294929504395,-0.854345440864563,0.243435770273209,0.627983033657074,-0.73917281627655,0.205385565757751,0.640447318553925,-0.740029752254486,0.206374958157539,0.623249471187592,-0.754300653934479,0.221635609865189,0.529546320438385,-0.818815231323242,0.400945067405701,0.513358652591705,-0.758752882480621,0.265083014965057,0.524667084217072,-0.808984220027924,0.400229394435883,0.594974994659424,-0.697008728981018,0.209065109491348,0.608440458774567,-0.765566468238831,0.14279443025589,0.624980747699738,-0.767469108104706,0.218802392482758,0.548944711685181,-0.806712627410889,0.0699088647961617,0.545719027519226,-0.835047006607056,0.149736970663071,0.540844857692719,-0.827687084674835,0.143561661243439,0.61682802438736,-0.773894846439362,0.374501019716263,0.593894183635712,-0.712066471576691,0.400583148002625,0.583885312080383,-0.706124007701874,-0.18587338924408,0.494629144668579,-0.848995327949524,0.0111934654414654,0.525896847248077,-0.850474715232849,0.072323314845562,0.531113147735596,-0.844208598136902,0.151366919279099,0.516643166542053,-0.842714607715607,0.0722667053341866,0.531458973884583,-0.843995749950409,0.0118662593886256,0.517884790897369,-0.855368077754974,-0.151442691683769,0.515422999858856,-0.843447864055634,0.00988504104316235,0.541311800479889,-0.840763866901398,
  742. -0.18730203807354,0.50419408082962,-0.843033969402313,-0.15263606607914,0.524619519710541,-0.837541997432709,-0.189488589763641,0.519027352333069,-0.83348947763443,-0.30619889497757,0.490275025367737,-0.816010177135468,0.0118356421589851,0.518250644207001,-0.855146884918213,0.0193522665649652,0.52304071187973,-0.852088093757629,0.151354402303696,0.516838312149048,-0.842597305774689,0.00991224497556686,0.540993511676788,-0.840968370437622,-0.151386916637421,0.514995038509369,-0.843719184398651,0.0175683051347733,0.537443995475769,-0.843116402626038,-0.306194871664047,0.490249693393707,-0.816026926040649,-0.161921814084053,0.517732918262482,-0.840079724788666,-0.152620196342468,0.524496674537659,-0.837621808052063,0.0170382633805275,0.541685461997986,-0.840408563613892,-0.151971518993378,0.519488513469696,-0.840854644775391,-0.162781178951263,0.528838396072388,-0.832965910434723,-0.161384582519531,0.510925114154816,-0.844340324401855,-0.305284798145294,0.484578728675842,-0.819746732711792,-0.290028661489487,0.487183153629303,-0.823732972145081,-0.290071368217468,0.488145112991333,-0.823148190975189,-0.138118475675583,0.497693210840225,-0.856285452842712,-0.16139417886734,0.511045753955841,-0.844265460968018,-0.132156312465668,0.572496056556702,-0.809186637401581,0.0166962072253227,0.544413447380066,-0.838650822639465,-0.163122415542603,0.533326864242554,-0.830032289028168,-0.137745544314384,0.502929627895355,-0.85328072309494,-0.290247768163681,0.4922034740448,-0.820665538311005,-0.205032542347908,0.498466640710831,-0.842313885688782,-0.20086607336998,0.532672047615051,-0.822139501571655,-0.00331231602467597,0.517633736133575,-0.855595886707306,-0.135681107640266,0.530422925949097,-0.836804866790771,-0.00368152325972915,0.5448397397995,-0.838532090187073,0.0176785383373499,0.536559820175171,-0.843677222728729,-0.134510740637779,0.545009613037109,-0.827569544315338,-0.00575058814138174,0.508456349372864,-0.861068546772003,-0.00792304705828428,0.516144633293152,-0.856464922428131,-0.136281952261925,0.522666275501251,-0.841574251651764,
  743. 0.00939364638179541,0.564427316188812,-0.825429320335388,0.108781017363071,0.541223585605621,-0.833812773227692,-0.00192280800547451,0.556543827056885,-0.830816030502319,0.107536032795906,0.521309018135071,-0.846565365791321,0.0180496014654636,0.533577620983124,-0.84555846452713,-0.00607790471985936,0.52870899438858,-0.848781406879425,0.109762422740459,0.557428121566772,-0.822937488555908,0.0128008564934134,0.576681077480316,-0.81686919927597,0.204585060477257,0.538397192955017,-0.817479908466339,0.151064738631248,0.521304070949554,-0.839893758296967,0.0190272685140371,0.525679349899292,-0.850469946861267,0.10851638764143,0.534068703651428,-0.838447988033295,0.106330581009388,0.502625405788422,-0.857940316200256,0.108455643057823,0.534482002258301,-0.838192284107208,0.0189856719225645,0.526016652584076,-0.850262343883514,0.360911160707474,0.651093900203705,-0.667697429656982,0.135921224951744,0.689252853393555,-0.711657166481018,0.085554800927639,0.671402275562286,-0.736138224601746,0.209718555212021,0.574416100978851,-0.791242241859436,0.260149747133255,0.562989473342896,-0.784452021121979,0.111355639994144,0.584859609603882,-0.803454637527466,0.104073159396648,0.563527464866638,-0.819515466690063,0.110072493553162,0.562651097774506,-0.819333732128143,0.260569661855698,0.559328258037567,-0.786927938461304,0.0908866077661514,0.642574608325958,-0.76081371307373,0.249137476086617,0.64372593164444,-0.723565876483917,0.366535604000092,0.62883049249649,-0.68572872877121,0.256024539470673,0.596315324306488,-0.760828137397766,0.215042427182198,0.613963663578033,-0.759477078914642,0.295514732599258,0.592664778232574,-0.749279320240021,0.296890199184418,0.584894299507141,-0.754821240901947,0.377348452806473,0.580238401889801,-0.721755981445313,0.257344096899033,0.586134493350983,-0.768258035182953,0.0994604676961899,-0.716540515422821,-0.690418243408203,-0.0401582084596157,-0.707361876964569,-0.705709934234619,0.141308844089508,-0.721653819084167,-0.677678048610687,0.245320841670036,-0.692516565322876,-0.678408801555634,0.100314281880856,-0.705940186977386,-0.701131582260132,
  744. 0.145537868142128,-0.699444353580475,-0.699711620807648,-0.0276164151728153,-0.668877124786377,-0.742859840393066,0.100406490266323,-0.704768478870392,-0.702296197414398,-0.0557212866842747,-0.678059458732605,-0.732891976833344,-0.242326065897942,-0.699417412281036,-0.672378897666931,-0.054963693022728,-0.75048553943634,-0.658597350120544,-0.0697737634181976,-0.738079369068146,-0.671096444129944,0.10040757060051,-0.704754590988159,-0.702309966087341,0.245310828089714,-0.691693127155304,-0.679251968860626,0.133720055222511,-0.708623826503754,-0.69279956817627,0.323664009571075,-0.672599792480469,-0.665470600128174,0.133725196123123,-0.708798766136169,-0.692619621753693,0.245308741927147,-0.691526174545288,-0.679422676563263,-0.0669130310416222,-0.726135849952698,-0.684287548065186,-0.118390239775181,-0.713663041591644,-0.690412044525146,-0.237894013524055,-0.685209393501282,-0.688400030136108,-0.306123971939087,-0.679403364658356,-0.666857779026031,-0.241765022277832,-0.697616755962372,-0.674448311328888,-0.118904374539852,-0.718034684658051,-0.685775518417358,-0.0630805939435959,-0.709911048412323,-0.701460719108582,0.0994182899594307,-0.717052936553955,-0.689892113208771,0.000131186316139065,-0.715388059616089,-0.698727428913116,-0.117139920592308,-0.703080058097839,-0.701396226882935,-0.0614757984876633,-0.703042387962341,-0.708485782146454,0.000183757190825418,-0.718679130077362,-0.695341885089874,0.0993408784270287,-0.717990458011627,-0.688927471637726,0.133644610643387,-0.70608788728714,-0.695398509502411,0.000122726705740206,-0.714856922626495,-0.699270725250244,-0.306173294782639,-0.682134807109833,-0.664040803909302,-0.119743213057518,-0.725193738937378,-0.67805278301239,-0.177948221564293,-0.701312303543091,-0.69028651714325,-0.177623122930527,-0.710606157779694,-0.680800199508667,-0.116928160190582,-0.701294362545013,-0.703216910362244,0.00017446672427468,-0.718098640441895,-0.695941269397736,-0.285585224628448,-0.677974581718445,-0.677341520786285,-0.306220054626465,-0.684995532035828,-0.661067605018616,
  745. -0.177929937839508,-0.70186322927475,-0.689731061458588,0.00012291876191739,-0.714869022369385,-0.699258387088776,0.133644104003906,-0.706071019172668,-0.695415735244751,0.0896163731813431,-0.710205614566803,-0.698267161846161,0.133657351136208,-0.706514358520508,-0.694962799549103,0.323528945446014,-0.67078709602356,-0.667363226413727,0.0896335691213608,-0.710768103599548,-0.697692334651947,-0.0550817549228668,-0.716642498970032,-0.69526219367981,-0.177725419402123,-0.70779025554657,-0.683700680732727,0.00013500674685929,-0.715627789497375,-0.698481857776642,-0.28353625535965,-0.695397675037384,-0.660325109958649,-0.177672922611237,-0.709246635437012,-0.682203531265259,-0.0550988726317883,-0.716292500495911,-0.695621430873871,0.222447022795677,-0.693544447422028,-0.685210525989532,0.0896572843194008,-0.711543083190918,-0.696898877620697,0.323656290769577,-0.672495365142822,-0.665579915046692,0.324014276266098,-0.677424669265747,-0.660386681556702,0.336591869592667,-0.674719095230103,-0.656856238842011,0.222461923956871,-0.694660305976868,-0.684074401855469,-0.000168948608916253,-0.717753708362579,-0.6962970495224,0.00014401254884433,-0.716192364692688,-0.697902917861938,0.0896485075354576,-0.711252987384796,-0.697196125984192,0.0896117985248566,-0.710056841373444,-0.698418915271759,0.222477316856384,-0.695857524871826,-0.682851433753967,-0.00014898223162163,-0.716503977775574,-0.697583079338074,-0.00032974177156575,-0.727735161781311,-0.685858190059662,-0.0542316026985645,-0.733464896678925,-0.677560448646545,0.000372535199858248,-0.730367064476013,-0.683054864406586,0.336131304502487,-0.669483840465546,-0.662425220012665,0.0711885988712311,-0.730427742004395,-0.679269909858704,0.222453385591507,-0.694013774394989,-0.684733152389526,0.222462356090546,-0.694692969322205,-0.684041082859039,0.0666581615805626,-0.702156782150269,-0.708895325660706,-0.000124911515740678,-0.714994251728058,-0.699130415916443,0.00897867418825626,-0.746024489402771,-0.665857970714569,0.0709629580378532,-0.729031383991241,-0.680791854858398,
  746. 0.336067587137222,-0.668773770332336,-0.663174331188202,-0.12821190059185,-0.685284852981567,-0.716900587081909,0.0620289444923401,-0.672785937786102,-0.737232327461243,-0.00666807638481259,-0.676696002483368,-0.736232340335846,-0.161201104521751,-0.709857821464539,-0.685650110244751,-0.283837109804153,-0.692952156066895,-0.66276228427887,-0.0550967268645763,-0.716336369514465,-0.695576429367065,-0.159159228205681,-0.740869164466858,-0.652519106864929,-0.0536759719252586,-0.743901014328003,-0.666130781173706,-0.00049148133257404,-0.737626552581787,-0.675208687782288,-0.282679796218872,-0.702169001102448,-0.653491377830505,-0.160776376724243,-0.716871500015259,-0.678414523601532,-0.209545955061913,-0.711043059825897,-0.671199202537537,0.0695563703775406,-0.72029846906662,-0.690168142318726,-0.0907973498106003,-0.7311030626297,-0.676198303699493,-0.000291727919830009,-0.725388765335083,-0.688339352607727,-0.0871621146798134,-0.753210008144379,-0.651979804039001,-0.159204736351967,-0.740244150161743,-0.653217077255249,-0.000528936099726707,-0.739895880222321,-0.672721207141876,0.0657544732093811,-0.696460425853729,-0.714576244354248,-0.122552588582039,-0.709782004356384,-0.693678855895996,-0.0944330617785454,-0.707536280155182,-0.700339078903198,-0.0917658433318138,-0.724972724914551,-0.682637214660645,-0.208463475108147,-0.720033407211304,-0.661887347698212,-0.160332843661308,-0.723849952220917,-0.671069800853729,-0.209564462304115,-0.710885405540466,-0.671360373497009,-0.0932186618447304,-0.715577900409698,-0.692285060882568,-0.121764309704304,-0.713080823421478,-0.690426826477051,0.0989338308572769,0.191606819629669,-0.976472675800323,-0.0411432683467865,0.209094777703285,-0.977029502391815,0.137697488069534,0.178648322820663,-0.974230051040649,0.247154206037521,0.194076463580132,-0.949341416358948,0.0996672138571739,0.205397427082062,-0.973590433597565,0.141759917140007,0.208633825182915,-0.967665255069733,-0.0288256909698248,0.260753333568573,-0.964975118637085,0.0997491627931595,0.20695935189724,-0.973251223564148,
  747. -0.0572850406169891,0.2470583319664,-0.967305958271027,-0.238821819424629,0.184961438179016,-0.953285574913025,-0.0556706413626671,0.146689102053642,-0.987614870071411,-0.0708334445953369,0.164039090275764,-0.983907401561737,0.0997519642114639,0.207012534141541,-0.973239719867706,0.247142225503922,0.195233657956123,-0.949107229709625,0.13109128177166,0.196911081671715,-0.971617758274078,0.325490444898605,0.19440783560276,-0.925344049930573,0.131104037165642,0.196435645222664,-0.971712291240692,0.247140437364578,0.195406779646873,-0.949072182178497,-0.0680753290653229,0.181300461292267,-0.981068849563599,-0.120663166046143,0.192923918366432,-0.973766267299652,-0.234723016619682,0.205391585826874,-0.950115442276001,-0.309686601161957,0.191381439566612,-0.93137925863266,-0.23827363550663,0.187729761004448,-0.952881634235382,-0.121156230568886,0.186798676848412,-0.97489869594574,-0.0643830150365829,0.204114228487015,-0.976827621459961,0.0989041328430176,0.191054806113243,-0.976583957672119,-0.00156431482173502,0.198668003082275,-0.980065584182739,-0.119462199509144,0.207574427127838,-0.970897436141968,-0.0628457814455032,0.21351532638073,-0.974916219711304,-0.00153025053441525,0.194341748952866,-0.980932712554932,0.0988404303789139,0.189873725175858,-0.976820647716522,0.130949169397354,0.202131137251854,-0.970564424991608,-0.00156936270650476,0.199309125542641,-0.97993540763855,-0.309743165969849,0.187451377511024,-0.932159423828125,-0.121962174773216,0.176641553640366,-0.97668981552124,-0.182225212454796,0.199627175927162,-0.962778747081757,-0.181824266910553,0.185278937220573,-0.9657182097435,-0.119258053600788,0.210027888417244,-0.970394670963287,-0.0015370094915852,0.195200115442276,-0.980762243270874,-0.285486489534378,0.201240092515945,-0.937016487121582,-0.309797823429108,0.18327397108078,-0.932971596717834,-0.182212218642235,0.199139401316643,-0.962882339954376,-0.0015691239386797,0.199278801679611,-0.979941606521606,0.130947828292847,0.20217989385128,-0.97055447101593,0.0835945159196854,0.201699748635292,-0.975873529911041,
  748. 0.131019994616508,0.199547410011292,-0.971089363098145,0.325345873832703,0.19687981903553,-0.924872100353241,0.0836470350623131,0.199656099081039,-0.976289212703705,-0.0539654977619648,0.19571341574192,-0.97917515039444,-0.181941166520119,0.189325094223022,-0.964911103248596,-0.00156359781976789,0.198576867580414,-0.98008406162262,-0.283416599035263,0.177357062697411,-0.942454099655151,-0.181906580924988,0.18811696767807,-0.965153872966766,-0.0539397336542606,0.194851070642471,-0.979348540306091,0.223479583859444,0.199615776538849,-0.954049587249756,0.0836790800094604,0.198401689529419,-0.976542174816132,0.325502812862396,0.194194540381432,-0.92538446187973,0.325946420431137,0.186357975006104,-0.926838517189026,0.342133224010468,0.185837879776955,-0.921091258525848,0.22348715364933,0.198436111211777,-0.954293787479401,0.00154144479893148,0.195763379335403,-0.980649948120117,-0.00155343359801918,0.197286173701286,-0.980344712734222,0.0836284458637238,0.200380712747574,-0.976142346858978,0.0835855230689049,0.202047914266586,-0.975802302360535,0.223507806658745,0.194924682378769,-0.955012381076813,0.00155524944420904,0.197516575455666,-0.980298340320587,0.00142247078474611,0.180653974413872,-0.983545780181885,-0.0532531552016735,0.172306567430496,-0.983602941036224,-0.00140174059197307,0.178020864725113,-0.984025716781616,0.341699153184891,0.193128749728203,-0.919751584529877,0.0691582560539246,0.174251571297646,-0.982269585132599,0.223483979701996,0.198934406042099,-0.954190790653229,0.223497942090034,0.196660593152046,-0.95465874671936,0.0646873861551285,0.214206486940384,-0.974644124507904,0.00157122546806932,0.199545562267303,-0.979887306690216,0.00719242263585329,0.152696654200554,-0.988246917724609,0.0689350515604019,0.176278173923492,-0.981923699378967,0.341639161109924,0.194111704826355,-0.919566929340363,-0.130076587200165,0.23002116382122,-0.964453399181366,0.0600959248840809,0.253906488418579,-0.965360045433044,-0.00923725590109825,0.251305609941483,-0.967863738536835,-0.160920321941376,0.190649390220642,-0.968378782272339,
  749. -0.283721029758453,0.180756032466888,-0.941716313362122,-0.0539282821118832,0.194468051195145,-0.979425311088562,-0.158956810832024,0.146555796265602,-0.976347327232361,-0.0527769513428211,0.157135590910912,-0.986165821552277,0.00130942289251834,0.166296914219856,-0.986074864864349,-0.282555937767029,0.167938426136971,-0.944435715675354,-0.16050985455513,0.18083444237709,-0.970327496528625,-0.207713007926941,0.178171843290329,-0.96182644367218,0.0675622746348381,0.18866753578186,-0.979714214801788,-0.0917715132236481,0.170883685350418,-0.981008052825928,0.00145274552050978,0.184498712420464,-0.98283177614212,-0.0880319327116013,0.138367250561714,-0.98646080493927,-0.15899832546711,0.1474220007658,-0.976210176944733,0.00128536985721439,0.163242101669312,-0.986585199832916,0.0637924745678902,0.222047224640846,-0.97294682264328,-0.124435432255268,0.19721919298172,-0.972430169582367,-0.0955172926187515,0.204175665974617,-0.974263191223145,-0.0928178057074547,0.180107727646828,-0.979257941246033,-0.206673175096512,0.165638357400894,-0.964287400245667,-0.160082086920738,0.170974150300026,-0.9721839427948,-0.207743048667908,0.178539663553238,-0.961751759052277,-0.0943072810769081,0.193338423967361,-0.976589262485504,-0.123645700514317,0.192675590515137,-0.973441243171692,0.100372418761253,-0.262695997953415,-0.95964378118515,-0.0347610898315907,-0.248765334486961,-0.967939794063568,0.141111999750137,-0.274112284183502,-0.951288521289825,0.246647611260414,-0.248557597398758,-0.93668794631958,0.10108158737421,-0.249259665608406,-0.963146984577179,0.145377948880196,-0.243643209338188,-0.958907306194305,-0.0223678108304739,-0.197035640478134,-0.98014110326767,0.101160608232021,-0.247736036777496,-0.963531732559204,-0.0586943328380585,-0.209949821233749,-0.975948810577393,-0.240512639284134,-0.258073538541794,-0.935709238052368,-0.0494590923190117,-0.309708923101425,-0.949544310569763,-0.0715966373682022,-0.28982800245285,-0.954397022724152,0.101163730025291,-0.247675687074661,-0.963546931743622,0.246638312935829,-0.247410863637924,-0.936993837356567,
  750. 0.135737463831902,-0.255021631717682,-0.957360625267029,0.323705554008484,-0.238102272152901,-0.915708601474762,0.135742664337158,-0.255264908075333,-0.957295119762421,0.246636167168617,-0.247151672840118,-0.937062799930573,-0.0689639151096344,-0.273440390825272,-0.959413647651672,-0.120178513228893,-0.260491967201233,-0.957967162132263,-0.236175462603569,-0.237881153821945,-0.942143261432648,-0.305616766214371,-0.243235468864441,-0.920562267303467,-0.239961504936218,-0.255485057830811,-0.93656063079834,-0.120693005621433,-0.266625642776489,-0.956213355064392,-0.0654570236802101,-0.251683175563812,-0.965593576431274,0.100344702601433,-0.26321268081665,-0.959505081176758,0.00203151069581509,-0.258001804351807,-0.966142296791077,-0.118926197290421,-0.245757222175598,-0.96200829744339,-0.0640077888965607,-0.242715373635292,-0.967983722686768,0.00206491560675204,-0.262244343757629,-0.964999318122864,0.10028425604105,-0.264337807893753,-0.959202170372009,0.135661512613297,-0.251503646373749,-0.958301544189453,0.00202649715356529,-0.257365077733994,-0.966312229633331,-0.305681020021439,-0.247243225574493,-0.919472634792328,-0.12152673304081,-0.276669383049011,-0.953249871730804,-0.181013211607933,-0.250123023986816,-0.951142847537994,-0.180699184536934,-0.262773215770721,-0.947785973548889,-0.11871550232172,-0.24330447614193,-0.962657570838928,0.00205819727852941,-0.261391133069992,-0.965230762958527,-0.289298266172409,-0.237044677138329,-0.927424550056458,-0.305743247270584,-0.251476615667343,-0.918303072452545,-0.180994406342506,-0.250918567180634,-0.950936853885651,0.0020267425570637,-0.257396221160889,-0.966303825378418,0.135661005973816,-0.251480519771576,-0.958307683467865,0.0885126739740372,-0.253149837255478,-0.963369429111481,0.135674402117729,-0.252095341682434,-0.958144247531891,0.323569416999817,-0.235571876168251,-0.916410803794861,0.0885700881481171,-0.255321025848389,-0.96279102563858,-0.056609321385622,-0.26052862405777,-0.963805079460144,-0.180799141526222,-0.258884876966476,-0.948836386203766,0.00203202362172306,-0.258067041635513,-0.966124892234802,
  751. -0.287335634231567,-0.260283827781677,-0.921786725521088,-0.180744171142578,-0.261037111282349,-0.948257029056549,-0.0566016659140587,-0.260762959718704,-0.963742136955261,0.221343636512756,-0.24583412706852,-0.943701505661011,0.0886030346155167,-0.256573081016541,-0.962455093860626,0.323697924613953,-0.237960174679756,-0.915748119354248,0.32406023144722,-0.24489688873291,-0.913789093494415,0.343718826770782,-0.243244767189026,-0.90702223777771,0.221352607011795,-0.247072324156761,-0.943376004695892,-0.00205381726846099,-0.260834902524948,-0.965381264686584,0.00204219063743949,-0.259358108043671,-0.965779066085815,0.0885465890169144,-0.254428565502167,-0.963029384613037,0.0885030478239059,-0.252787560224533,-0.963465452194214,0.221373289823532,-0.250108063220978,-0.942570865154266,-0.00204025884158909,-0.259112954139709,-0.965844869613647,-0.00217094202525914,-0.275709450244904,-0.961238563060761,-0.0558317080140114,-0.28376042842865,-0.957268416881561,0.00219071772880852,-0.27822133898735,-0.960514605045319,0.343254804611206,-0.235877081751823,-0.909141421318054,0.0662263110280037,-0.282270729541779,-0.957046151161194,0.221348479390144,-0.246489480137825,-0.943529546260834,0.221362173557281,-0.248428180813789,-0.943017601966858,0.06142533197999,-0.241618052124977,-0.968425452709198,-0.00202459516003728,-0.257123678922653,-0.966376483440399,0.00759253604337573,-0.30090457201004,-0.953624129295349,0.0659862235188484,-0.28022575378418,-0.957663476467133,0.343190252780914,-0.234875693917274,-0.909425020217896,-0.127194970846176,-0.222491234540939,-0.966601848602295,0.0566717423498631,-0.201845824718475,-0.977776348590851,-0.00786035507917404,-0.205803379416466,-0.978561818599701,-0.159997388720512,-0.259616762399673,-0.952365458011627,-0.287617385387421,-0.257073611021042,-0.922599375247955,-0.0565939843654633,-0.260997951030731,-0.963679015636444,-0.157834783196449,-0.304042220115662,-0.939492702484131,-0.0553173013031483,-0.298532068729401,-0.952795147895813,-0.00228115078061819,-0.289705961942673,-0.957113087177277,
  752. -0.286498099565506,-0.269604682922363,-0.919365108013153,-0.159550189971924,-0.269456803798676,-0.949703514575958,-0.213215678930283,-0.268319398164749,-0.939437985420227,0.0644376426935196,-0.267066031694412,-0.961521565914154,-0.091206394135952,-0.282972186803818,-0.954781830310822,-0.00214117532595992,-0.271929234266281,-0.96231484413147,-0.087592788040638,-0.31426128745079,-0.945286929607391,-0.157890677452087,-0.30298313498497,-0.939825415611267,-0.00230429018847644,-0.292644739151001,-0.956218481063843,0.0605005323886871,-0.233844146132469,-0.970389902591705,-0.121763974428177,-0.25528809428215,-0.959167122840881,-0.0948289856314659,-0.250389516353607,-0.963489770889282,-0.0921708196401596,-0.274420917034149,-0.957182168960571,-0.212110966444016,-0.280871391296387,-0.936012923717499,-0.159084543585777,-0.27930673956871,-0.946931838989258,-0.213230833411217,-0.268143951892853,-0.939484655857086,-0.093619130551815,-0.261413276195526,-0.960676193237305,-0.120905011892319,-0.260371685028076,-0.957908451557159,-0.0475482642650604,-0.470820099115372,0.88094699382782,-0.0862249955534935,-0.478490024805069,0.873849272727966,-0.0274665206670761,-0.464017748832703,0.885399997234344,0.0988881215453148,-0.420935243368149,0.90168434381485,-0.049524512141943,-0.463928997516632,0.884486973285675,-0.0280636269599199,-0.462265938520432,0.886297166347504,0.102895870804787,-0.430082410573959,0.896906793117523,-0.155116990208626,-0.537100613117218,0.829133093357086,0.229883193969727,-0.374938458204269,0.89809513092041,-0.0314618200063705,-0.452252238988876,0.891335010528564,-0.288346707820892,-0.516223549842834,0.806454837322235,0.100742362439632,-0.425170302391052,0.899489521980286,-0.156902939081192,-0.533655166625977,0.831019639968872,0.101452082395554,-0.426789909601212,0.898642241954803,-0.287462294101715,-0.518568217754364,0.805265426635742,-0.189935550093651,-0.467026025056839,0.863603591918945,-0.288019061088562,-0.517092764377594,0.806014955043793,-0.492687225341797,-0.533943831920624,0.687141358852386,-0.0344952493906021,-0.443250238895416,0.895734071731567,
  753. -0.505990624427795,-0.494834125041962,0.706479072570801,-0.296429574489594,-0.494326859712601,0.817172229290009,-0.495279371738434,-0.529297709465027,0.688870310783386,-0.289813935756683,-0.512311458587646,0.808421194553375,-0.499195158481598,-0.529393672943115,0.685963928699493,-0.289775520563126,-0.512414157390594,0.808369874954224,-0.495337039232254,-0.530781865119934,0.687685966491699,-0.499176204204559,-0.529444098472595,0.685938835144043,-0.49997690320015,-0.527309238910675,0.686999320983887,-0.496645301580429,-0.526569604873657,0.689976751804352,-0.504344761371613,-0.526207566261292,0.684647381305695,-0.0479550920426846,0.184327378869057,0.981694340705872,-0.0882656499743462,0.173636734485626,0.980846285820007,-0.0265832934528589,0.192971751093864,0.980844140052795,0.101652130484581,0.237742468714714,0.965994596481323,-0.0499356798827648,0.191940262913704,0.980135381221771,-0.02708550542593,0.194578319787979,0.980512976646423,0.106165289878845,0.226536780595779,0.968199372291565,-0.152192428708076,0.100940823554993,0.983182787895203,0.227256581187248,0.269320428371429,0.935853183269501,-0.0303401593118906,0.204982206225395,0.97829532623291,-0.281816869974136,0.103166870772839,0.953905701637268,0.104015700519085,0.231883153319359,0.967166423797607,-0.153966337442398,0.104765236377716,0.982506394386292,0.104715339839458,0.230144962668419,0.967506170272827,-0.28093957901001,0.100640498101711,0.954434096813202,-0.187747478485107,0.178412288427353,0.965877830982208,-0.282280892133713,0.104505233466625,0.953622758388519,-0.494860917329788,0.0123541140928864,0.868884384632111,-0.0338059663772583,0.216046258807182,0.975797712802887,-0.505276560783386,0.056189700961113,0.861126184463501,-0.290492504835129,0.128441825509071,0.948217689990997,-0.497410446405411,0.0170155167579651,0.867348432540894,-0.284076273441315,0.109697975218296,0.952505648136139,-0.500019907951355,0.01629395224154,0.865860641002655,-0.284062147140503,0.109657026827335,0.952514588832855,-0.494705200195313,0.0169812459498644,0.868894934654236,-0.500015437602997,0.0162810366600752,0.865863442420959,
  754. -0.500790476799011,0.0185239613056183,0.865370273590088,-0.495995938777924,0.021606607362628,0.868056118488312,-0.504880547523499,0.0181932561099529,0.862997472286224,-0.0388101600110531,-0.291031807661057,0.95592588186264,-0.074582614004612,-0.300672560930252,0.950806736946106,-0.012674966827035,-0.28088590502739,0.959657490253448,0.106037475168705,-0.232082009315491,0.966899275779724,-0.0411510542035103,-0.283377319574356,0.958125293254852,-0.0134786991402507,-0.278628528118134,0.960304379463196,0.110811419785023,-0.242530673742294,0.963794529438019,-0.140863180160522,-0.368239641189575,0.918998003005981,0.238038003444672,-0.181476309895515,0.954151093959808,-0.0174880288541317,-0.267338633537292,0.96344393491745,-0.26804181933403,-0.358492940664291,0.894223928451538,0.108456283807755,-0.237376034259796,0.965344429016113,-0.142766743898392,-0.364591866731644,0.920157849788666,0.109227493405342,-0.239063963294029,0.964840829372406,-0.267064690589905,-0.360950738191605,0.893527269363403,-0.177326232194901,-0.296282172203064,0.938494682312012,-0.268356382846832,-0.357699543237686,0.894447267055511,-0.477685987949371,-0.408150345087051,0.777965068817139,-0.0203202571719885,-0.259334087371826,0.965573906898499,-0.492349922657013,-0.368318617343903,0.78862726688385,-0.277540057897568,-0.334189802408218,0.90071576833725,-0.480430334806442,-0.403445303440094,0.778728842735291,-0.270343482494354,-0.352672189474106,0.895844161510468,-0.483958661556244,-0.403981357812881,0.776262223720551,-0.27032145857811,-0.352728068828583,0.895828783512115,-0.480549097061157,-0.404701799154282,0.778003215789795,-0.48394638299942,-0.404012441635132,0.776253700256348,-0.484826296567917,-0.401779919862747,0.776863157749176,-0.48198738694191,-0.400422662496567,0.779326558113098,-0.489628463983536,-0.401256233453751,0.774117171764374,-0.0480048879981041,-0.61675763130188,0.785687923431396,-0.0869711339473724,-0.623028635978699,0.777349054813385,-0.0272379014641047,-0.61070328950882,0.79139107465744,0.100145190954208,-0.570544064044952,0.815138399600983,
  755. -0.0500094778835773,-0.6104696393013,0.790459275245667,-0.0278625916689634,-0.609057188034058,0.792636752128601,0.104261673986912,-0.578906416893005,0.808700740337372,-0.152396678924561,-0.671904981136322,0.724788904190063,0.229983270168304,-0.525104284286499,0.819373786449432,-0.0312907993793488,-0.599967360496521,0.799412310123444,-0.286006510257721,-0.648761987686157,0.705200791358948,0.102132551372051,-0.574587106704712,0.812045931816101,-0.154150605201721,-0.668886303901672,0.727206110954285,0.102833911776543,-0.57601135969162,0.81094765663147,-0.28513041138649,-0.650836527347565,0.703642308712006,-0.186884298920631,-0.609354734420776,0.770558953285217,-0.285965859889984,-0.648858428001404,0.70512855052948,-0.495772421360016,-0.645348131656647,0.58115029335022,-0.0341934263706207,-0.59219616651535,0.805068016052246,-0.505367994308472,-0.610571444034576,0.609758734703064,-0.294286161661148,-0.628653705120087,0.719854354858398,-0.49837127327919,-0.641065418720245,0.58366185426712,-0.287770539522171,-0.644554674625397,0.708334267139435,-0.498918324708939,-0.640480637550354,0.583836495876312,-0.287741124629974,-0.644625246524811,0.708282053470612,-0.494822263717651,-0.642165958881378,0.585468888282776,-0.49890074133873,-0.640522718429565,0.58380538225174,-0.499689757823944,-0.638632714748383,0.585199475288391,-0.496109932661057,-0.638495981693268,0.588385760784149,-0.507300078868866,-0.636525750160217,0.580931663513184,0.0287459529936314,0.664775133132935,0.746490240097046,0.000605212640948594,0.664740741252899,0.747073888778687,-0.0372272431850433,0.663423776626587,0.74731719493866,-0.0696028470993042,0.655746579170227,0.751765847206116,0.0287458542734385,0.664780080318451,0.746485829353333,-0.0372274108231068,0.663427948951721,0.747313499450684,0.350590318441391,0.649855852127075,0.674369275569916,0.0282437261193991,0.688604772090912,0.724586606025696,-0.0678238570690155,0.646239697933197,0.76011461019516,-0.0712520703673363,0.664518177509308,0.743867456912994,-0.0363046005368233,0.640613675117493,0.767004668712616,
  756. -0.264202684164047,0.629167079925537,0.730989515781403,0.350869953632355,0.648234903812408,0.675782382488251,-0.0673384666442871,0.643637835979462,0.76236218214035,0.151362776756287,0.61551821231842,0.773451268672943,0.115732297301292,0.695302963256836,0.709337651729584,-0.0694491043686867,0.654926776885986,0.752494335174561,-0.254570245742798,0.598519921302795,0.759584009647369,0.352780908346176,0.935434281826019,0.0225456524640322,0.535454928874969,0.844070971012115,-0.0288480278104544,0.372106641530991,0.928173780441284,-0.00548088178038597,0.35303983092308,0.935308337211609,0.0236891470849514,0.374423444271088,0.927144706249237,0.0144838662818074,0.186200320720673,0.980968058109283,0.0550559349358082,-0.166616126894951,0.973283588886261,0.157981514930725,0.353295147418976,0.935182750225067,0.0248187202960253,0.190852507948875,0.978237807750702,0.0814011543989182,0.375225573778152,0.926679074764252,0.021717045456171,0.271348088979721,0.961904883384705,0.0333083942532539,0.186697110533714,0.980713665485382,0.0578351877629757,-0.175866395235062,0.975149393081665,0.134739384055138,0.192218765616417,0.977282702922821,0.0892786458134651,-0.00714087672531605,0.990393221378326,0.138095170259476,0.189446240663528,0.979146718978882,0.073360800743103,0.275053679943085,0.957896530628204,0.0823390409350395,-0.0108135575428605,0.994093716144562,0.107984870672226,0.0366258658468723,-0.266198694705963,0.963222205638886,-0.00301844743080437,-0.267244040966034,0.963624179363251,-0.0391466431319714,-0.268024832010269,0.962616324424744,-0.0666657537221909,-0.275559037923813,0.958969712257385,0.0366257652640343,-0.266192197799683,0.963223874568939,-0.0391468293964863,-0.268019884824753,0.962617814540863,0.350333124399185,-0.21395255625248,0.911861300468445,0.0361394286155701,-0.234712719917297,0.971392750740051,-0.0646779015660286,-0.288847029209137,0.955188035964966,-0.0685285925865173,-0.262978106737137,0.962365090847015,-0.0381387434899807,-0.294957160949707,0.954749047756195,-0.267196655273438,-0.272451668977737,0.924324631690979,
  757. 0.350594639778137,-0.215906113386154,0.911300122737885,-0.0641378238797188,-0.292433083057404,0.954132735729218,0.150965839624405,-0.315959811210632,0.936684966087341,0.115274153649807,-0.218706488609314,0.968957960605621,-0.0665294229984283,-0.276474893093109,0.958715558052063,-0.256799727678299,-0.315104246139526,0.913653790950775,0.349510490894318,0.490098655223846,0.798527240753174,0.532479703426361,0.482562631368637,0.695412576198578,0.374503165483475,0.509075999259949,0.774976789951324,0.350051403045654,0.48787933588028,0.799648523330688,0.376824259757996,0.490757435560226,0.785595715045929,0.190266460180283,0.486194491386414,0.852885484695435,-0.166265696287155,0.395881235599518,0.903124451637268,0.351253181695938,0.482903510332108,0.802138030529022,0.194896027445793,0.46272486448288,0.864812850952148,0.377623200416565,0.484064012765884,0.789355933666229,0.269551128149033,0.493889659643173,0.826689302921295,0.190757885575294,0.483751863241196,0.854163646697998,-0.175165057182312,0.415912240743637,0.892375588417053,0.196252420544624,0.455647677183151,0.868257105350494,-0.0106820780783892,0.420199185609818,0.907369017601013,0.193481460213661,0.4700066447258,0.861196100711823,0.273301094770432,0.451286435127258,0.849498271942139,-0.0143685759976506,0.448486477136612,0.89367413520813,0.0294128004461527,0.189970672130585,0.981349110603333,-0.00393531611189246,0.189208313822746,0.981929183006287,-0.0383217670023441,0.188278585672379,0.981367826461792,-0.0666017681360245,0.179899081587791,0.981427788734436,0.0294127073138952,0.189977303147316,0.981347799301147,-0.0383219420909882,0.188283860683441,0.981366813182831,0.350475698709488,0.214013993740082,0.911792099475861,0.0289469379931688,0.222109034657478,0.97459203004837,-0.0647274106740952,0.166932642459869,0.983841359615326,-0.0683507770299912,0.19204369187355,0.979003369808197,-0.0373544245958328,0.159626260399818,0.986470520496368,-0.263446062803268,0.167654305696487,0.949993908405304,0.350753575563431,0.211910560727119,0.912176549434662,-0.0642181560397148,0.163418278098106,0.984464585781097,
  758. 0.154021695256233,0.135790348052979,0.978692233562469,0.119196452200413,0.235853657126427,0.964450776576996,-0.0664588809013367,0.178908810019493,0.981618463993073,-0.25370317697525,0.126413375139236,0.958986103534698,0.349730968475342,0.793513178825378,0.498021155595779,0.534137070178986,0.740841567516327,0.4072485268116,0.377326428890228,0.799373507499695,0.467575371265411,0.350101888179779,0.792509734630585,0.499356597661972,0.379643946886063,0.788137912750244,0.484468132257462,0.188883453607559,0.815057098865509,0.547727048397064,-0.168372720479965,0.755147218704224,0.633563995361328,0.350751459598541,0.790740132331848,0.501700520515442,0.193595066666603,0.798970937728882,0.569356143474579,0.380446374416351,0.783976197242737,0.49055290222168,0.272008270025253,0.809603869915009,0.520147204399109,0.189387127757072,0.813389122486115,0.550027906894684,-0.177728325128555,0.768731415271759,0.614381492137909,0.194974005222321,0.794051051139832,0.57573264837265,-0.0135706588625908,0.780479669570923,0.625033855438232,0.192151859402657,0.804015100002289,0.562705397605896,0.275761544704437,0.781619727611542,0.559487640857697,-0.017243716865778,0.79882937669754,0.601310431957245,-0.425992697477341,0.863535165786743,0.269883781671524,-0.197558745741844,0.973416686058044,0.115890212357044,-0.410463929176331,0.875685036182404,0.254352360963821,-0.1228067278862,0.968559443950653,0.216358870267868,-0.139985173940659,0.969453155994415,0.201406896114349,-0.390061587095261,0.852754473686218,0.347363948822021,-0.0208352562040091,0.930643856525421,0.365332901477814,-0.0445323660969734,0.936985552310944,0.346518337726593,0.150421336293221,0.961858093738556,0.228478610515594,-0.0477031022310257,0.938691735267639,0.341441363096237,0.056955449283123,0.958015143871307,0.281003683805466,0.150442004203796,0.96184629201889,0.228514522314072,-0.0370450466871262,0.932816445827484,0.358442962169647,0.0267546400427818,0.948838770389557,0.31462550163269,0.0668831914663315,0.952128767967224,0.298290818929672,-0.365091890096664,0.842329919338226,0.396469742059708,
  759. -0.201146394014359,0.914791345596313,0.350281178951263,-0.0981186330318451,0.961011350154877,0.258514881134033,0.0301398113369942,0.946441173553467,0.321466445922852,-0.0406100228428841,0.934825956821442,0.352776437997818,-0.177198559045792,0.897900402545929,0.402958512306213,-0.182862237095833,0.902147054672241,0.390758633613586,-0.34190109372139,0.83082377910614,0.439130425453186,-0.338815748691559,0.831963002681732,0.439364820718765,-0.256657510995865,0.882091403007507,0.395021110773087,0.0259179845452309,0.949421763420105,0.312932193279266,-0.182209819555283,0.901665568351746,0.392171919345856,-0.319654792547226,0.853506088256836,0.41151961684227,-0.192236706614494,0.908836722373962,0.370217591524124,-0.347623825073242,0.839387834072113,0.417834848165512,-0.192861020565033,0.909266889095306,0.368833810091019,-0.320773273706436,0.854481220245361,0.408615112304688,-0.257091671228409,0.88247811794281,0.393873333930969,-0.427403450012207,0.240870222449303,0.871382713317871,-0.195756629109383,0.432904005050659,0.879928112030029,-0.408480852842331,0.263460755348206,0.873917639255524,-0.124098233878613,0.342325896024704,0.931349992752075,-0.137850537896156,0.358896493911743,0.923141777515411,-0.391489893198013,0.16990964114666,0.904359638690948,-0.0178055092692375,0.199593037366867,0.979717195034027,-0.0467661209404469,0.216772198677063,0.975101411342621,0.149097576737404,0.329938381910324,0.932153701782227,-0.0497360117733479,0.221655145287514,0.973855912685394,0.0537109561264515,0.281937450170517,0.95792818069458,0.149564415216446,0.32910344004631,0.932374060153961,-0.0391075164079666,0.204158246517181,0.978156447410584,0.0309883859008551,0.252491772174835,0.967102706432343,0.0637002214789391,0.264266431331635,0.962343871593475,-0.366515308618546,0.122971400618553,0.922249734401703,-0.199370503425598,0.204129263758659,0.95842719078064,-0.0993462949991226,0.30250546336174,0.947956085205078,0.0344251245260239,0.245318457484245,0.968831241130829,-0.0425242409110069,0.209789603948593,0.97682136297226,-0.17446731030941,0.149270534515381,0.973282814025879,
  760. -0.180838540196419,0.163219928741455,0.969874560832977,-0.343395054340363,0.0810086578130722,0.935690879821777,-0.338154017925262,0.0827619731426239,0.937444567680359,-0.253396660089493,0.149107754230499,0.955801784992218,0.0301606804132462,0.254216283559799,0.966677010059357,-0.179357409477234,0.159971997141838,0.970690429210663,-0.321594327688217,0.116653010249138,0.939664363861084,-0.190250530838966,0.183933541178703,0.964351177215576,-0.347002267837524,0.104722142219543,0.931999325752258,-0.190801009535789,0.185149028897285,0.964009761810303,-0.322657763957977,0.119436711072922,0.938949882984161,-0.253463178873062,0.149289175868034,0.955755829811096,-0.427102118730545,0.60357803106308,0.673258721828461,-0.198320686817169,0.777806401252747,0.596394240856171,-0.410814672708511,0.6223184466362,0.666296541690826,-0.120523817837238,0.722864389419556,0.680397748947144,-0.140370562672615,0.730821132659912,0.66797947883606,-0.39137527346611,0.554674685001373,0.734276115894318,-0.019636195152998,0.612951397895813,0.789876580238342,-0.042832538485527,0.629627048969269,0.775715947151184,0.150185883045197,0.709972560405731,0.688028573989868,-0.0459039472043514,0.633572936058044,0.772319972515106,0.0530876517295837,0.678404748439789,0.732767939567566,0.150164231657982,0.710002422332764,0.688002467155457,-0.0352725721895695,0.61982524394989,0.783946752548218,0.0319674760103226,0.656716227531433,0.753459930419922,0.0630996748805046,0.664547920227051,0.744576752185822,-0.366377681493759,0.520381689071655,0.771343171596527,-0.200038984417915,0.607387840747833,0.768807113170624,-0.0957738161087036,0.694670379161835,0.712923884391785,0.0354715660214424,0.650946378707886,0.758294522762299,-0.0386551022529602,0.62422651052475,0.780286490917206,-0.176544740796089,0.566486775875092,0.804937720298767,-0.181937426328659,0.575955331325531,0.796978175640106,-0.343376159667969,0.488780170679092,0.801989257335663,-0.339283496141434,0.490469664335251,0.802699327468872,-0.254454612731934,0.556540071964264,0.790895819664001,0.0312008913606405,0.657971978187561,0.752395749092102,
  761. -0.18162402510643,0.575406134128571,0.797446250915527,-0.322067320346832,0.522227048873901,0.789652824401855,-0.19129267334938,0.592268764972687,0.782703518867493,-0.348119854927063,0.507761001586914,0.788030028343201,-0.191906079649925,0.593333303928375,0.781746506690979,-0.323123514652252,0.52438497543335,0.787789046764374,-0.255291998386383,0.558295667171478,0.789387106895447,-0.0890968292951584,-0.541666030883789,-0.835858643054962,-0.0372156947851181,-0.490250915288925,-0.870786428451538,0.114201486110687,-0.419621080160141,-0.900486648082733,-0.111466780304909,-0.515028595924377,-0.849894523620605,-0.25237187743187,-0.58577835559845,-0.770176708698273,-0.0208147317171097,-0.525749742984772,-0.850384593009949,0.115095041692257,-0.420958369970322,-0.899748384952545,-0.0469122491776943,-0.468738555908203,-0.882090389728546,0.135329842567444,-0.393411189317703,-0.909347951412201,-0.019412299618125,-0.528733789920807,-0.848565816879272,-0.251020580530167,-0.58864438533783,-0.768431305885315,-0.0649948418140411,-0.579859793186188,-0.812119603157043,0.142704859375954,-0.418192684650421,-0.897078692913055,-0.0410190038383007,-0.481859773397446,-0.875287711620331,-0.0896207094192505,-0.461027473211288,-0.882848680019379,-0.156043693423271,-0.756728410720825,-0.634832680225372,-0.0164244007319212,-0.719971001148224,-0.693809807300568,0.140462800860405,-0.650186002254486,-0.746678233146667,-0.166918441653252,-0.740513026714325,-0.650982856750488,-0.194271519780159,-0.761034607887268,-0.618938505649567,-0.0198323205113411,-0.71410059928894,-0.699762105941772,0.161785826086998,-0.675934255123138,-0.718984246253967,-0.0130611006170511,-0.725704729557037,-0.687882304191589,0.189693301916122,-0.645448982715607,-0.739872992038727,-0.0173578877002001,-0.718369007110596,-0.695445656776428,-0.199674472212791,-0.735925853252411,-0.646949231624603,0.0414332002401352,-0.735055208206177,-0.676740109920502,-0.0147538837045431,-0.722826302051544,-0.690872251987457,0.0368814952671528,-0.68262505531311,-0.729837536811829,0.193063318729401,-0.655175268650055,-0.730391621589661,
  762. -0.349252671003342,-0.231823980808258,-0.907898902893066,-0.202668011188507,-0.188565000891685,-0.960920870304108,-0.0336545743048191,-0.122079700231552,-0.991949558258057,-0.356770187616348,-0.208974286913872,-0.910518944263458,-0.379080384969711,-0.237824901938438,-0.89428037405014,-0.205150276422501,-0.179571256041527,-0.962116181850433,-0.0157692953944206,-0.163651362061501,-0.986392199993134,-0.200211837887764,-0.197384685277939,-0.95966374874115,0.0167998466640711,-0.132298782467842,-0.99106752872467,-0.203357622027397,-0.186074703931808,-0.961260676383972,-0.38058340549469,-0.201925590634346,-0.90243136882782,-0.154432713985443,-0.217258393764496,-0.963820278644562,-0.201455369591713,-0.192929193377495,-0.960309386253357,-0.151324987411499,-0.14664401113987,-0.977546036243439,0.0184796042740345,-0.145526885986328,-0.989181697368622,0.063403531908989,0.687869787216187,0.72305953502655,0.152130469679832,0.685083568096161,0.712402164936066,0.05319669470191,0.691086292266846,0.720811903476715,0.305344700813293,0.674046456813812,0.672626197338104,0.152059242129326,0.685976684093475,0.711557447910309,0.0634704977273941,0.687183618545532,0.723705887794495,-0.10755779594183,0.68758237361908,0.71809595823288,0.0635766312479973,0.686094641685486,0.724729001522064,0.0513035356998444,0.681026935577393,0.730459034442902,0.0611064396798611,0.710693776607513,0.700842618942261,-0.136869639158249,0.658966660499573,0.739614605903625,0.301625698804855,0.688811361789703,0.659212291240692,-0.108049362897873,0.682413995265961,0.722936034202576,-0.143746346235275,0.687439024448395,0.711873948574066,0.0620540641248226,0.701441466808319,0.710020542144775,0.0440452918410301,0.673378050327301,0.737985134124756,0.302917689085007,0.683769583702087,0.663852453231812,-0.13556757569313,0.653559029102325,0.74463552236557,-0.420033484697342,0.579163730144501,0.698671042919159,-0.140304818749428,0.67320841550827,0.726019978523254,-0.113632552325726,0.61625063419342,0.779309213161469,0.0315068885684013,0.715474128723145,0.697928428649902,-0.140178635716438,0.672685921192169,0.726528465747833,
  763. -0.419848591089249,0.578452467918396,0.699371039867401,0.462478011846542,0.73834890127182,0.490871638059616,0.00222963560372591,0.746883869171143,0.664950847625732,0.272263526916504,0.738001763820648,0.617434978485107,0.462059944868088,0.739738166332245,0.48917093873024,0.247999712824821,0.797059655189514,0.550628781318665,-0.000153421235154383,0.752965986728668,0.658059418201447,0.231921777129173,0.805981934070587,0.544614970684052,-0.00905981101095676,0.775096595287323,0.631777942180634,-0.197996243834496,0.712709844112396,0.672935485839844,-0.00555963208898902,0.766512513160706,0.642205476760864,0.24939127266407,0.7840296626091,0.568420171737671,-0.0858659520745277,0.767027914524078,0.635842144489288,-0.0150975147262216,0.789558947086334,0.613489031791687,-0.0871170908212662,0.77124285697937,0.630551397800446,-0.211360171437263,0.737425804138184,0.641506135463715,0.249715402722359,0.780760645866394,0.572760879993439,0.14740626513958,0.794964253902435,0.588475346565247,-0.0860201269388199,0.767548561096191,0.635192692279816,-0.182797610759735,0.740204811096191,0.64705628156662,-0.227344214916229,0.766137540340424,0.601122140884399,-0.0881606563925743,0.774741113185883,0.626102149486542,-0.0869966223835945,0.770837962627411,0.631062924861908,0.148520082235336,0.766179919242859,0.625228047370911,-0.1850845515728,0.751858830451965,0.632812798023224,0.23132187128067,0.602296888828278,0.764021515846252,-0.236112117767334,0.48846697807312,0.840030550956726,0.0331418737769127,0.535820782184601,0.843681037425995,0.230795234441757,0.604364335536957,0.762546598911285,0.00885012373328209,0.607183635234833,0.794512271881104,-0.238707631826401,0.496083974838257,0.834817111492157,-0.00857668556272984,0.615912675857544,0.787767767906189,-0.24825057387352,0.524257123470306,0.814571142196655,-0.426366090774536,0.426080137491226,0.797914564609528,-0.244523867964745,0.513222634792328,0.822685122489929,0.0103064635768533,0.589528381824493,0.807681918144226,-0.326025635004044,0.504103362560272,0.799741864204407,-0.326903104782104,0.5078444480896,0.797012150287628,
  764. -0.439412832260132,0.456646263599396,0.773557066917419,-0.254544824361801,0.542993128299713,0.800228476524353,0.0106659401208162,0.585116744041443,0.810878932476044,-0.101860411465168,0.577844083309174,0.809765815734863,-0.326131224632263,0.5045525431633,0.799415647983551,-0.423380970954895,0.45686012506485,0.782321810722351,-0.454509973526001,0.493360549211502,0.741630673408508,-0.327645123004913,0.511023640632629,0.794671952724457,-0.326840043067932,0.507574915885925,0.797209680080414,-0.100177235901356,0.539464116096497,0.836028099060059,-0.425939440727234,0.472071617841721,0.771831750869751,0.151784658432007,0.619123756885529,0.770485043525696,0.235396131873131,0.611952543258667,0.755051493644714,0.136985585093498,0.623339235782623,0.769859194755554,0.39033031463623,0.59420371055603,0.703252553939819,0.235344633460045,0.612808346748352,0.754373133182526,0.151757135987282,0.61955201625824,0.770146131515503,-0.0252331234514713,0.630079627037048,0.776120603084564,0.15193222463131,0.616813182830811,0.772307157516479,0.135009467601776,0.612754940986633,0.778655171394348,0.14997199177742,0.645600140094757,0.748805046081543,-0.0559438206255436,0.599210500717163,0.798634469509125,0.38689324259758,0.610214650630951,0.691340625286102,-0.0258127823472023,0.624512135982513,0.780588567256927,-0.0629388988018036,0.632083117961884,0.772340357303619,0.150932714343071,0.631983280181885,0.760142385959625,0.125493362545967,0.602690279483795,0.788045585155487,0.388093322515488,0.604735732078552,0.695469796657562,-0.0546773821115494,0.593194246292114,0.803200602531433,-0.341955244541168,0.543368697166443,0.766692280769348,-0.0598132610321045,0.61747020483017,0.784316837787628,-0.0327425040304661,0.55437970161438,0.831619679927826,0.112122789025307,0.652950346469879,0.749055624008179,-0.0596745200455189,0.616818726062775,0.784839987754822,-0.34175631403923,0.542505979537964,0.767391622066498,0.336513161659241,0.853252470493317,0.398395717144012,-0.129817426204681,0.829949259757996,0.542523443698883,0.139672830700874,0.848350942134857,0.510678172111511,
  765. 0.336088538169861,0.854307234287262,0.396489411592484,0.119071461260319,0.893173456192017,0.433662503957748,-0.132560268044472,0.835010588169098,0.534027278423309,0.0982512310147285,0.899456083774567,0.425823211669922,-0.142740592360497,0.853240191936493,0.501603722572327,-0.324117362499237,0.778720676898956,0.53716105222702,-0.138710513710976,0.84613025188446,0.514609754085541,0.120447352528572,0.883278846740723,0.453112751245499,-0.218093663454056,0.836758077144623,0.502265989780426,-0.149463623762131,0.864779531955719,0.479392290115356,-0.219573616981506,0.840442776679993,0.495422452688217,-0.336582273244858,0.795972943305969,0.503129661083221,0.120779067277908,0.880763947963715,0.457894444465637,0.014651071280241,0.885099291801453,0.465171605348587,-0.218270093202591,0.837198317050934,0.501455247402191,-0.31851664185524,0.798256695270538,0.511207759380341,-0.351215124130249,0.815492630004883,0.460021466016769,-0.220776438713074,0.843423783779144,0.489789873361588,-0.219417944550514,0.84005606174469,0.496146976947784,0.0159327648580074,0.862465560436249,0.505864977836609,-0.320995539426804,0.807874202728271,0.494268268346787,-0.0723403319716454,0.203533098101616,0.976391911506653,0.00907843466848135,0.212651088833809,0.977086126804352,-0.0951977595686913,0.205254152417183,0.97406792640686,0.0850867703557014,0.212541982531548,0.97344034910202,0.00994963385164738,0.204724684357643,0.97876912355423,-0.0712942481040955,0.194582536816597,0.978291749954224,-0.252953797578812,0.191276803612709,0.948381543159485,-0.0720530822873116,0.201071992516518,0.976922929286957,-0.096339263021946,0.191853329539299,0.976683795452118,-0.0724418088793755,0.204402789473534,0.976202785968781,-0.261453777551651,0.127129167318344,0.956807255744934,0.0862695798277855,0.208715572953224,0.974163949489594,-0.253058910369873,0.185395926237106,0.949520707130432,-0.277202069759369,0.195504024624825,0.94071102142334,-0.0744172260165215,0.221409529447556,0.972337365150452,-0.167760923504829,0.0978156551718712,0.980962991714478,0.0858421549201012,0.210099339485168,0.973904192447662,
  766. -0.259291738271713,0.118128828704357,0.958547651767731,-0.548717081546783,0.0861533507704735,0.831557095050812,-0.273155272006989,0.177424058318138,0.9454665184021,-0.253567606210709,0.100761219859123,0.962055444717407,-0.252668350934982,0.265870004892349,0.930307388305664,-0.272967606782913,0.176594704389572,0.94567596912384,-0.548729002475739,0.0862152054905891,0.831542789936066,-0.142033189535141,-0.989845871925354,0.00564948795363307,-0.0018215102609247,-0.997186720371246,-0.0749356970191002,0.142572820186615,-0.975220680236816,-0.169167444109917,-0.153724744915962,-0.987999141216278,-0.0150478100404143,-0.179617285728455,-0.983414113521576,0.0251862406730652,-0.00536121055483818,-0.996609747409821,-0.0821003243327141,0.166677266359329,-0.976999282836914,-0.133008018136024,0.00168202817440033,-0.997694909572601,-0.0678397789597511,0.194862693548203,-0.965829193592072,-0.170888036489487,-0.00271390192210674,-0.997047245502472,-0.0767424032092094,-0.18775375187397,-0.982151210308075,-0.0113027859479189,0.0483221784234047,-0.997447907924652,-0.0525612644851208,-9.66975712799467e-005,-0.997444689273834,-0.0714428946375847,0.0381218753755093,-0.991342008113861,-0.125649243593216,0.199385598301888,-0.9672811627388,-0.156883925199509,0.0322697572410107,-0.702591955661774,-0.710860908031464,0.080173097550869,-0.649818003177643,-0.755849719047546,0.228019207715988,-0.559212446212769,-0.797049999237061,0.00627451203763485,-0.682347238063812,-0.731001317501068,-0.121881112456322,-0.75501549243927,-0.644279956817627,0.100860990583897,-0.678870439529419,-0.727297723293304,0.229181110858917,-0.560352683067322,-0.795915126800537,0.0677936002612114,-0.631901800632477,-0.772077798843384,0.232786625623703,-0.540659964084625,-0.808391749858856,0.102624036371708,-0.681294143199921,-0.724780380725861,-0.120279714465141,-0.757154047489166,-0.642067432403564,0.0670053958892822,-0.728532671928406,-0.681726038455963,0.24297870695591,-0.561402857303619,-0.791067898273468,0.0753174424171448,-0.642837643623352,-0.76229065656662,0.0294491332024336,-0.631518244743347,-0.774801552295685,
  767. -0.147791460156441,-0.834129393100739,-0.53139990568161,-0.0169872548431158,-0.79863041639328,-0.601582169532776,0.134774804115295,-0.725940227508545,-0.674423098564148,-0.15942120552063,-0.821686685085297,-0.547189056873322,-0.181725919246674,-0.839302778244019,-0.512392938137054,-0.0203455295413733,-0.794583022594452,-0.606814682483673,0.159558489918709,-0.747106492519379,-0.645269691944122,-0.0136288590729237,-0.802632808685303,-0.596317768096924,0.18787032365799,-0.716555595397949,-0.671753644943237,-0.0178302321583033,-0.797618687152863,-0.602898597717285,-0.190373301506042,-0.818833470344543,-0.541543841362,0.0359496735036373,-0.808572053909302,-0.587297916412354,-0.0153232188895345,-0.8006192445755,-0.59897768497467,0.0246538538485765,-0.76411247253418,-0.644611954689026,0.192558631300926,-0.725263178348541,-0.660995185375214,-0.134094774723053,-0.88825261592865,-0.439347088336945,-0.0129661662504077,-0.85120677947998,-0.524670302867889,0.124232187867165,-0.776368021965027,-0.617915093898773,-0.147920593619347,-0.87820565700531,-0.454834401607513,-0.165945574641228,-0.894792199134827,-0.414498448371887,-0.0178569871932268,-0.847314178943634,-0.530791699886322,0.152640745043755,-0.79285717010498,-0.589981615543365,-0.00812520366162062,-0.854994714260101,-0.518573045730591,0.172163307666779,-0.766394436359406,-0.618869423866272,-0.0142534784972668,-0.850188672542572,-0.526285350322723,-0.178850114345551,-0.877510488033295,-0.444958657026291,0.0451002232730389,-0.856924176216125,-0.513465642929077,-0.0105632562190294,-0.853095054626465,-0.521648585796356,0.0252733174711466,-0.818483948707581,-0.57397323846817,0.178013995289803,-0.77299964427948,-0.608919203281403,-0.179532259702683,-0.613493323326111,-0.769021570682526,-0.0539844483137131,-0.5424924492836,-0.838324308395386,0.084751307964325,-0.43563038110733,-0.896126866340637,-0.194233134388924,-0.596576988697052,-0.77869725227356,-0.208377406001091,-0.62607878446579,-0.751401543617249,-0.0581987053155899,-0.537056803703308,-0.841536045074463,0.114859603345394,-0.464287132024765,-0.878205418586731,
  768. -0.0497910939157009,-0.547866106033325,-0.835082948207855,0.130013570189476,-0.43014669418335,-0.893347799777985,-0.0550452247262001,-0.541127622127533,-0.839137136936188,-0.221404314041138,-0.596753358840942,-0.771275281906128,-0.00229734112508595,-0.554626822471619,-0.83209615945816,-0.0519202463328838,-0.5451420545578,-0.836734414100647,-0.022086488083005,-0.493687927722931,-0.869358599185944,0.135927215218544,-0.440703392028809,-0.887301683425903,-0.0117408288642764,-0.412865221500397,-0.910716474056244,0.0991012379527092,-0.311920195817947,-0.944925785064697,0.217581927776337,-0.175823763012886,-0.960075080394745,-0.027459217235446,-0.397577106952667,-0.917157828807831,-0.0443719103932381,-0.43834576010704,-0.897710502147675,0.0936181768774986,-0.30601641535759,-0.947412073612213,0.250851094722748,-0.202707946300507,-0.946563899517059,0.104519635438919,-0.317739963531494,-0.942399561405182,0.267497152090073,-0.157432541251183,-0.95061057806015,0.0976661890745163,-0.310376465320587,-0.945583403110504,-0.0607460997998714,-0.409015715122223,-0.910503208637238,0.156796976923943,-0.313759922981262,-0.936466574668884,0.101775594055653,-0.314794450998306,-0.943687558174133,0.128766387701035,-0.250342100858688,-0.95955616235733,0.274968653917313,-0.168349906802177,-0.94659948348999,0.0323333963751793,-0.997953951358795,0.0551586747169495,0.0636701658368111,-0.997778952121735,-0.0195772666484118,0.201619833707809,-0.968693673610687,-0.144851878285408,0.00176997855305672,-0.999506413936615,0.031365767121315,-0.105659082531929,-0.981092751026154,0.162151694297791,0.091290757060051,-0.995666801929474,0.0177146941423416,0.203225269913673,-0.968591511249542,-0.143282994627953,0.0471598878502846,-0.998014152050018,-0.0417604893445969,0.204401031136513,-0.964598596096039,-0.16664332151413,0.0936371460556984,-0.995387136936188,0.020893219858408,-0.103553101420403,-0.980855286121368,0.164923816919327,0.0677264705300331,-0.99372410774231,0.0890254005789757,0.218994751572609,-0.96538108587265,-0.14170703291893,0.0572145394980907,-0.997961938381195,-0.0282606370747089,
  769. 0.00792251992970705,-0.999221801757813,-0.0386402793228626,-0.282310634851456,-0.151397958397865,-0.947301089763641,-0.156349420547485,-0.0510374307632446,-0.986382305622101,-0.0262838937342167,0.064584344625473,-0.997566044330597,-0.297144919633865,-0.131937310099602,-0.945672988891602,-0.307277739048004,-0.168997406959534,-0.936493575572968,-0.160793378949165,-0.0444787926971912,-0.985985457897186,0.00317931827157736,0.0317228138446808,-0.999491751194,-0.151933565735817,-0.0575371012091637,-0.986714601516724,0.0253293607383966,0.0743783637881279,-0.996908366680145,-0.157475620508194,-0.0493770018219948,-0.986287653446198,-0.320549964904785,-0.135034963488579,-0.937557101249695,-0.104237325489521,-0.0649631842970848,-0.992428541183472,-0.154174208641052,-0.0542413108050823,-0.98655378818512,-0.124669581651688,0.00577991502359509,-0.992181479930878,0.0315220877528191,0.0616307593882084,-0.99760115146637,-0.00216792011633515,-0.99357134103775,0.113187171518803,0.0407945774495602,-0.998151004314423,0.0450600795447826,0.188383877277374,-0.980841517448425,-0.0496128983795643,-0.0290949419140816,-0.996011137962341,0.084352120757103,-0.162044242024422,-0.966421961784363,0.199424877762794,0.0624892748892307,-0.994205951690674,0.0874634012579918,0.18897308409214,-0.980768799781799,-0.0488050170242786,0.0278433673083782,-0.999416530132294,0.0197838917374611,0.198177173733711,-0.977254509925842,-0.0754959881305695,0.0643376037478447,-0.993763148784637,0.0910797342658043,-0.160457655787468,-0.966077268123627,0.202356740832329,0.0276187993586063,-0.987883329391479,0.15272168815136,0.208501085639,-0.976812958717346,-0.0486183054745197,0.03572753444314,-0.998742699623108,0.0351676717400551,-0.0109532885253429,-0.999760448932648,0.0189491678029299,0.225974872708321,0.971477448940277,-0.0718809589743614,0.0204373672604561,0.983190953731537,-0.181432962417603,-0.11158163100481,0.979674637317657,-0.166695401072502,0.225486561655998,0.971757650375366,-0.0695922747254372,-0.11336188018322,0.980581223964691,-0.160029843449593,0.00721695367246866,0.995764672756195,-0.0916552692651749,
  770. -0.0239010564982891,0.996313869953156,-0.0823856815695763,-0.34314900636673,0.918056428432465,-0.198547691106796,-0.120305769145489,0.983684718608856,-0.13375686109066,-0.115020357072353,0.98138552904129,-0.153794705867767,-0.225423380732536,0.961926341056824,-0.154538080096245,0.00960234180092812,0.99248993396759,-0.1219497397542,-0.126010030508041,0.985704600811005,-0.111838735640049,-0.357041954994202,0.92100727558136,-0.155777513980865,-0.223131164908409,0.959993898868561,-0.169186741113663,0.00953626446425915,0.992593228816986,-0.121110565960407,-0.2261101603508,0.96247124671936,-0.150078341364861,-0.119914330542088,0.984447300434113,-0.128390252590179,-0.360011160373688,0.921406686306,-0.146293208003044,-0.360092908143997,0.918529093265533,-0.163210317492485,-0.226457789540291,0.962740838527679,-0.147807240486145,-0.226353570818901,0.962660431861877,-0.148489058017731,-0.360032051801682,0.918481290340424,-0.163612514734268,-0.118509121239185,0.9810870885849,-0.15304870903492,0.00611798837780952,-0.218555763363838,-0.975805282592773,0.0441495068371296,-0.144150286912918,-0.98857045173645,0.16868768632412,-0.0354759022593498,-0.985030949115753,-0.0251821782439947,-0.193557292222977,-0.980765759944916,-0.134269431233406,-0.318538695573807,-0.938352286815643,0.0709181949496269,-0.181648075580597,-0.98080313205719,0.169809907674789,-0.036616962403059,-0.984796345233917,0.028261074796319,-0.121809035539627,-0.992151141166687,0.182600572705269,-0.00380740850232542,-0.983179807662964,0.0732053443789482,-0.184843555092812,-0.980037689208984,-0.132192015647888,-0.321372747421265,-0.937680661678314,0.0359325334429741,-0.257188230752945,-0.965693056583405,0.196400120854378,-0.0286589507013559,-0.980104923248291,0.0379283651709557,-0.135410010814667,-0.990063428878784,-0.0204711873084307,-0.130919560790062,-0.991181612014771,-0.0279826391488314,-0.281651765108109,-0.959108591079712,0.0921486616134644,-0.178643196821213,-0.979589343070984,0.215736478567123,-0.0503815747797489,-0.975151002407074,-0.043388657271862,-0.264358669519424,-0.96344792842865,
  771. -0.0570040009915829,-0.304384380578995,-0.950842201709747,0.0866634398698807,-0.171808838844299,-0.981310963630676,0.246226221323013,-0.0796358361840248,-0.965935289859772,0.0975579395890236,-0.185377910733223,-0.977812707424164,0.262066781520844,-0.0370333567261696,-0.964338898658752,0.0906774550676346,-0.176810637116432,-0.980059087276459,-0.0721996054053307,-0.271092802286148,-0.95984160900116,0.14543442428112,-0.187056586146355,-0.971524000167847,0.0948436558246613,-0.181999161839485,-0.978713929653168,0.120727524161339,-0.119480542838573,-0.985469162464142,0.269333600997925,-0.0496067963540554,-0.961768567562103,-0.15512016415596,-0.225768029689789,-0.961751818656921,-0.0428773388266563,-0.120081789791584,-0.991837620735168,0.0793258175253868,0.0137963956221938,-0.99675327539444,-0.171388000249863,-0.208586171269417,-0.962869763374329,-0.182839319109917,-0.249734237790108,-0.950895667076111,-0.0476225391030312,-0.11447636783123,-0.992283880710602,0.112732924520969,-0.0160167869180441,-0.993496239185333,-0.0381485931575298,-0.125658586621284,-0.991339802742004,0.12374023348093,0.024119371548295,-0.992021501064301,-0.0440598800778389,-0.118685737252235,-0.99195384979248,-0.199518248438835,-0.217237323522568,-0.955510556697845,0.0165111720561981,-0.125871375203133,-0.991909265518188,-0.040545467287302,-0.122833006083965,-0.991598784923553,-0.0112758297473192,-0.0566547475755215,-0.998330175876617,0.131366237998009,0.0119520798325539,-0.991261839866638,-0.0999371036887169,0.7047159075737,-0.702415883541107,0.00511729903519154,0.784171760082245,-0.620522737503052,0.12072879076004,0.857898354530334,-0.499434888362885,-0.11753473430872,0.714839279651642,-0.689340531826019,-0.127544671297073,0.682767808437347,-0.719416797161102,-0.000519282533787191,0.787840783596039,-0.615878760814667,0.154622852802277,0.839933693408966,-0.520195543766022,0.0107219275087118,0.780471324920654,-0.62509959936142,0.171606719493866,0.861106634140015,-0.478588044643402,0.00367769598960876,0.785113930702209,-0.619340598583221,-0.146018609404564,0.703744828701019,-0.695285439491272,
  772. 0.0636132135987282,0.781922161579132,-0.620121836662292,0.00788604095578194,0.782350242137909,-0.622788846492767,0.0321407243609428,0.822450160980225,-0.567928612232208,0.179844588041306,0.854189813137054,-0.487868756055832,-0.037738136947155,0.367437928915024,-0.929282188415527,-0.0118550704792142,0.429593503475189,-0.902944684028625,0.119497731328011,0.527264893054962,-0.841256201267242,-0.069280818104744,0.389657616615295,-0.918350219726563,-0.176146060228348,0.256826192140579,-0.950269997119904,0.0159244276583195,0.394687980413437,-0.91867733001709,0.120903693139553,0.525997638702393,-0.841848433017731,-0.0283779464662075,0.449914366006851,-0.892620861530304,0.137231022119522,0.555046379566193,-0.82042133808136,0.0182979237288237,0.391662508249283,-0.919927000999451,-0.174027174711227,0.254212379455566,-0.951362609863281,-0.00686447322368622,0.330117046833038,-0.943915069103241,0.151583939790726,0.532756507396698,-0.832582056522369,-0.0183101110160351,0.437571406364441,-0.898997247219086,-0.065663754940033,0.445661932229996,-0.892789840698242,0.220855847001076,0.712751805782318,-0.665738344192505,0.0197064932435751,0.653767645359039,-0.756438732147217,-0.105834230780602,0.661306738853455,-0.742611944675446,0.220445364713669,0.714166581630707,-0.664356768131256,-0.107589028775692,0.66612982749939,-0.738035023212433,0.00978496950119734,0.719198822975159,-0.694735467433929,-0.0234992168843746,0.724906325340271,-0.688446521759033,-0.338502496480942,0.59305214881897,-0.730551302433014,-0.114454254508018,0.684828400611877,-0.719659924507141,-0.10922085493803,0.670599102973938,-0.733735501766205,-0.223438143730164,0.652708053588867,-0.723911345005035,0.0121610313653946,0.697674155235291,-0.716311991214752,-0.120124876499176,0.700063228607178,-0.703904569149017,-0.353301167488098,0.623382091522217,-0.697547912597656,-0.221607074141502,0.644520342350006,-0.731767594814301,0.0120978699997067,0.698256134986877,-0.715745806694031,-0.224201425909996,0.656134784221649,-0.720569908618927,-0.121345564723015,0.686884164810181,-0.716565072536469,
  773. -0.356191396713257,0.629332780838013,-0.690701127052307,-0.361881792545319,0.613231122493744,-0.702131867408752,-0.224989548325539,0.659681975841522,-0.7170769572258,-0.22472970187664,0.658511519432068,-0.718233346939087,-0.361856639385223,0.613110542297363,-0.702250123023987,-0.11991748213768,0.669423460960388,-0.73313844203949,0.00176471844315529,-0.784729838371277,-0.619835615158081,0.0408011302351952,-0.733217597007751,-0.678768932819366,0.169701412320137,-0.643424987792969,-0.746462106704712,-0.0294682495296001,-0.768371045589447,-0.639325857162476,-0.13857538998127,-0.837101697921753,-0.529204726219177,0.0672074481844902,-0.757142245769501,-0.649783670902252,0.170956835150719,-0.644253730773926,-0.745460212230682,0.0250798184424639,-0.718278706073761,-0.695303320884705,0.179084941744804,-0.620417833328247,-0.763551115989685,0.0694617480039597,-0.759116411209106,-0.647238254547119,-0.136534005403519,-0.838850438594818,-0.52696168422699,0.0362531617283821,-0.804193079471588,-0.593261539936066,0.192942664027214,-0.638050138950348,-0.745429515838623,0.0346340462565422,-0.727419018745422,-0.685318946838379,-0.0199469365179539,-0.723480939865112,-0.690056145191193,-0.0251624528318644,-0.819255411624908,-0.572876453399658,0.0913956239819527,-0.753021895885468,-0.651617109775543,0.211861699819565,-0.653137564659119,-0.726997911930084,-0.041361540555954,-0.808016240596771,-0.587706565856934,-0.0580114386975765,-0.832704305648804,-0.550670742988586,0.0865361019968987,-0.749228119850159,-0.656634509563446,0.242901042103767,-0.670382142066956,-0.701132595539093,0.0962147116661072,-0.756741583347321,-0.646594882011414,0.263422638177872,-0.631868720054626,-0.728937864303589,0.0901523754000664,-0.752055406570435,-0.652905225753784,-0.0730845034122467,-0.812698841094971,-0.57808244228363,0.147693529725075,-0.753315150737762,-0.640861093997955,0.0937808975577354,-0.75486832857132,-0.649137079715729,0.123002670705318,-0.709443330764771,-0.693945705890656,0.270638763904572,-0.639987289905548,-0.719145953655243,-0.153909772634506,-0.778252899646759,-0.608797550201416,
  774. -0.0461204349994659,-0.716424345970154,-0.696138679981232,0.0801904425024986,-0.612726986408234,-0.786215722560883,-0.171096041798592,-0.764939546585083,-0.620961844921112,-0.177331015467644,-0.789323389530182,-0.587811648845673,-0.0507992394268513,-0.712388873100281,-0.699943959712982,0.113305076956749,-0.633804500102997,-0.765149533748627,-0.0414336435496807,-0.720426857471466,-0.692292153835297,0.126450419425964,-0.600336015224457,-0.789687871932983,-0.0472671389579773,-0.715439021587372,-0.697074472904205,-0.194141745567322,-0.7665696144104,-0.612111151218414,0.0133704915642738,-0.719921052455902,-0.69392716884613,-0.0438079163432121,-0.718404233455658,-0.694245100021362,-0.0143870990723372,-0.670245110988617,-0.742000341415405,0.134405732154846,-0.609871208667755,-0.781019985675812,-0.0983156114816666,0.110989704728127,-0.988946557044983,0.00553979119285941,0.22335048019886,-0.974722564220428,0.121559999883175,0.357610672712326,-0.925925374031067,-0.116362884640694,0.127417117357254,-0.984999775886536,-0.131364673376083,0.0802218019962311,-0.988082885742188,0.000232527600019239,0.228800892829895,-0.973473310470581,0.155864700675011,0.330364733934402,-0.930894911289215,0.0108195468783379,0.217914804816246,-0.975907921791077,0.167805328965187,0.369340598583221,-0.914018094539642,0.00417658872902393,0.224751725792885,-0.974407136440277,-0.149483576416969,0.11062452942133,-0.982556402683258,0.0701663196086884,0.224328055977821,-0.971984386444092,0.00815929658710957,0.220655277371407,-0.975317716598511,0.0387076810002327,0.288636147975922,-0.956656098365784,0.175997912883759,0.358218669891357,-0.91689920425415,-0.0398549772799015,-0.298517614603043,-0.953571617603302,-0.00840694084763527,-0.228198528289795,-0.973578333854675,0.119530558586121,-0.11558997631073,-0.986078798770905,-0.0721048712730408,-0.273938447237015,-0.959040462970734,-0.179690703749657,-0.397062748670578,-0.900029122829437,0.0189734566956759,-0.264517277479172,-0.964194297790527,0.120896376669407,-0.116910800337791,-0.985756516456604,-0.0246609840542078,-0.206394046545029,-0.978158235549927,
  775. 0.131862938404083,-0.084369570016861,-0.987671077251434,0.0213114693760872,-0.267594575881958,-0.963295876979828,-0.177634134888649,-0.399680852890015,-0.899278223514557,-0.00804850365966558,-0.33311054110527,-0.942853450775146,0.146055340766907,-0.108777418732643,-0.983277857303619,-0.0147755118086934,-0.219676911830902,-0.975460767745972,-0.0666768774390221,-0.212816417217255,-0.974814534187317,-0.0906349420547485,0.406303554773331,-0.909231960773468,-0.0352155528962612,0.466589391231537,-0.883772730827332,0.1144033446908,0.528703987598419,-0.841061234474182,-0.113985680043697,0.433424949645996,-0.893951952457428,-0.251809597015381,0.329364627599716,-0.910005986690521,-0.0183741096407175,0.4285589158535,-0.903327107429504,0.115174166858196,0.527539968490601,-0.841686725616455,-0.045162420719862,0.488665074110031,-0.871301770210266,0.135900750756264,0.550636887550354,-0.823607921600342,-0.01693245023489,0.425265431404114,-0.904910266399384,-0.25046369433403,0.326363682746887,-0.911457479000092,-0.063122920691967,0.367427974939346,-0.927907526493073,0.143277421593666,0.526576519012451,-0.837967038154602,-0.0391150824725628,0.475278198719025,-0.878965675830841,-0.0875767171382904,0.492214471101761,-0.866057276725769,-0.157211229205132,0.122554838657379,-0.979931116104126,-0.0109423324465752,0.194426462054253,-0.98085606098175,0.143166065216064,0.276409566402435,-0.950316488742828,-0.167747601866722,0.144355073571205,-0.9752037525177,-0.193640366196632,0.107455655932426,-0.975170075893402,-0.0139613002538681,0.201747626066208,-0.979338049888611,0.165006339550018,0.238523423671722,-0.957015931606293,-0.00794810615479946,0.187154531478882,-0.98229843378067,0.190064325928688,0.271679759025574,-0.943432927131653,-0.0117171378806233,0.196306452155113,-0.980472564697266,-0.199090644717216,0.143711313605309,-0.969386398792267,0.0371689088642597,0.169751793146133,-0.984785676002502,-0.00945889577269554,0.190825074911118,-0.981578588485718,0.0324617922306061,0.242205992341042,-0.969681620597839,0.193516880273819,0.257809311151505,-0.946617960929871,
  776. -0.347441762685776,0.637090563774109,-0.688040673732758,-0.201366201043129,0.705395400524139,-0.679609417915344,-0.0326065681874752,0.767504632472992,-0.64021360874176,-0.355542689561844,0.65252673625946,-0.669177293777466,-0.378366082906723,0.622374355792999,-0.685192883014679,-0.203262612223625,0.71002322435379,-0.674204230308533,-0.014491674490273,0.740050315856934,-0.672395467758179,-0.199474781751633,0.700768291950226,-0.684933304786682,0.0126676764339209,0.760465323925018,-0.649254977703094,-0.201840415596962,0.706553757190704,-0.678264141082764,-0.379871785640717,0.648679614067078,-0.659478843212128,-0.151355728507042,0.69200325012207,-0.70584911108017,-0.20044669508934,0.703147351741791,-0.68220591545105,-0.148293182253838,0.741766750812531,-0.654057621955872,0.0143503900617361,0.751619756221771,-0.659440517425537,0.0647627711296082,-0.233958631753922,0.970087170600891,0.152569353580475,-0.226422429084778,0.962005972862244,0.0497389622032642,-0.230119645595551,0.971890389919281,0.302723526954651,-0.200193002820015,0.931816101074219,0.152523845434189,-0.225696668028831,0.962183713912964,0.0647659301757813,-0.234005823731422,0.970075607299805,-0.104620963335037,-0.231095999479294,0.967289566993713,0.064942829310894,-0.236622184514999,0.969428896903992,0.0478807687759399,-0.243597507476807,0.968693912029266,0.062539778649807,-0.20150899887085,0.977488160133362,-0.140560492873192,-0.26527002453804,0.953873455524445,0.299010723829269,-0.180581882596016,0.937007367610931,-0.10499881207943,-0.236860290169716,0.965853333473206,-0.147708624601364,-0.225463792681694,0.962989330291748,0.0636083260178566,-0.217006996273994,0.974095463752747,0.0473134927451611,-0.253080040216446,0.966287732124329,0.300261050462723,-0.187120050191879,0.935323178768158,-0.139226719737053,-0.272502690553665,0.952028572559357,-0.422040313482285,-0.272751033306122,0.864574372768402,-0.144327461719513,-0.244517281651497,0.958843529224396,-0.1100168004632,-0.318765461444855,0.941427052021027,0.0352618470788002,-0.198221907019615,0.979522705078125,
  777. -0.144191429018974,-0.245275393128395,0.958670437335968,-0.421835273504257,-0.273810923099518,0.864339411258698,0.462443828582764,-0.0119441840797663,0.886568129062653,0.00779716717079282,-0.153485506772995,0.988120138645172,0.272768259048462,-0.117573313415051,0.95486855506897,0.461953848600388,-0.00943777430802584,0.886853754520416,0.253632515668869,-0.0285148452967405,0.966880261898041,0.00532736908644438,-0.144169509410858,0.989538669586182,0.232725143432617,-0.0199440810829401,0.972338020801544,-0.00395849486812949,-0.109038263559341,0.994029700756073,-0.199159368872643,-0.177156910300255,0.963821053504944,-0.000279377738479525,-0.122977390885353,0.992409527301788,0.254980504512787,-0.0516014732420444,0.965568363666534,-0.0903857126832008,-0.119716517627239,0.988685190677643,-0.0102437194436789,-0.085164949297905,0.996314227581024,-0.091877281665802,-0.111810922622681,0.989473044872284,-0.211859703063965,-0.138625830411911,0.967418491840363,0.255292326211929,-0.0572982393205166,0.965164721012115,0.143599152565002,-0.0633066669106483,0.987609028816223,-0.0905663147568703,-0.118761390447617,0.988783836364746,-0.182215541601181,-0.143598437309265,0.972716391086578,-0.227041155099869,-0.0907815173268318,0.969644904136658,-0.0931031629443169,-0.105284035205841,0.990074276924133,-0.0917283892631531,-0.112601846456528,0.989397168159485,0.144813477993011,-0.108879432082176,0.98345023393631,-0.184669822454453,-0.123117059469223,0.975058615207672,0.232835218310356,-0.314323008060455,0.920319974422455,-0.236411139369011,-0.443188637495041,0.864692807197571,0.0293123237788677,-0.42029732465744,0.906912863254547,0.232378274202347,-0.312235414981842,0.921145677566528,0.00921319611370564,-0.339057475328445,0.940720558166504,-0.239182233810425,-0.434274286031723,0.868445575237274,-0.0131373191252351,-0.328929156064987,0.944263219833374,-0.249401986598969,-0.400304287672043,0.88179087638855,-0.426642537117004,-0.438078910112381,0.791241466999054,-0.245380103588104,-0.413884401321411,0.876634657382965,0.0107115600258112,-0.358582407236099,0.933436632156372,
  778. -0.327903419733047,-0.399584770202637,0.856043994426727,-0.329106748104095,-0.393767416477203,0.85827499628067,-0.439268589019775,-0.401836752891541,0.803474068641663,-0.25607705116272,-0.377122908830643,0.890057802200317,0.0110828774049878,-0.363406151533127,0.93156486749649,-0.0983662679791451,-0.366499423980713,0.925203919410706,-0.328046798706055,-0.398895859718323,0.856310307979584,-0.419563382863998,-0.409180074930191,0.810270488262177,-0.453870624303818,-0.356201380491257,0.816775381565094,-0.330088913440704,-0.388959050178528,0.860088467597961,-0.32899010181427,-0.394334882497787,0.858059167861938,-0.0968078896403313,-0.410479366779327,0.906716585159302,-0.422076404094696,-0.392537981271744,0.817169308662415,0.150008037686348,-0.311456322669983,0.938345670700073,0.239381670951843,-0.301891088485718,0.922799110412598,0.136095896363258,-0.308377802371979,0.941478133201599,0.390341550111771,-0.268388748168945,0.880682110786438,0.239316940307617,-0.300532072782516,0.923259377479553,0.149975135922432,-0.310829520225525,0.9385586977005,-0.0244830530136824,-0.310934782028198,0.950115859508514,0.150155439972878,-0.314278364181519,0.937380611896515,0.134105801582336,-0.321541398763657,0.937350928783417,0.14820758998394,-0.278641879558563,0.948890507221222,-0.054639857262373,-0.348372012376785,0.935762465000153,0.386899441480637,-0.249595820903778,0.887699663639069,-0.0249185804277658,-0.31646591424942,0.94827663898468,-0.0624188967049122,-0.305529147386551,0.950134754180908,0.149176836013794,-0.29594698548317,0.943483769893646,0.127393275499344,-0.335645616054535,0.933334350585938,0.38809260725975,-0.256023466587067,0.885345220565796,-0.0532914772629738,-0.355660736560822,0.933094561100006,-0.34028759598732,-0.349154412746429,0.873095393180847,-0.0594488531351089,-0.322047859430313,0.944855034351349,-0.0311760064214468,-0.39593517780304,0.917749106884003,0.113168798387051,-0.272920608520508,0.955357074737549,-0.0592807605862617,-0.322976738214493,0.944548487663269,-0.340102106332779,-0.350152403116226,0.872767925262451,
  779. 0.336839318275452,0.128258094191551,0.93278580904007,-0.129817143082619,-0.00460475916042924,0.991527259349823,0.140480145812035,0.0315983034670353,0.989579141139984,0.336387276649475,0.130553096532822,0.93263041973114,0.119380481541157,0.120901897549629,0.985459804534912,-0.13251006603241,0.00514783291146159,0.991168320178986,0.0989818274974823,0.130718812346458,0.986466109752655,-0.142513945698738,0.0418129563331604,0.988909244537354,-0.323573440313339,-0.0301225613802671,0.945723474025726,-0.138556391000748,0.0272247046232224,0.989980280399323,0.120732799172401,0.0986639484763145,0.987769722938538,-0.214943751692772,0.033844105899334,0.976039826869965,-0.14911949634552,0.0664140433073044,0.986586332321167,-0.216158047318459,0.0403042063117027,0.97552615404129,-0.336645364761353,0.00898518413305283,0.941588640213013,0.121057085692883,0.0931706354022026,0.988263428211212,0.0128761166706681,0.0891507565975189,0.995935022830963,-0.215090468525887,0.0346220731735229,0.975980222225189,-0.312273383140564,0.00620169844478369,0.949972033500671,-0.352035284042358,0.0574049204587936,0.934224724769592,-0.217167243361473,0.0457101613283157,0.975063562393188,-0.216044500470161,0.0396980494260788,0.975576162338257,0.0143349878489971,0.0443215779960155,0.998914480209351,-0.314585626125336,0.0237407702952623,0.94893217086792,-0.0720192715525627,-0.709728062152863,0.700784802436829,0.0164998769760132,-0.704794585704803,0.709219515323639,-0.0953221172094345,-0.706855058670044,0.700906336307526,0.0862664133310318,-0.70203709602356,0.706896066665649,0.0173498559743166,-0.710418581962585,0.70356547832489,-0.0708719864487648,-0.716581165790558,0.693893790245056,-0.255905002355576,-0.692271590232849,0.674739062786102,-0.0717452690005302,-0.711374700069427,0.699141383171082,-0.0964424684643745,-0.716290235519409,0.691105842590332,-0.0720265209674835,-0.709684491157532,0.700828194618225,-0.262027502059937,-0.735236048698425,0.625115633010864,0.087526336312294,-0.704860746860504,0.703925132751465,-0.256009489297867,-0.696395993232727,0.670441448688507,
  780. -0.278092354536057,-0.684009969234467,0.674384951591492,-0.0742760375142097,-0.695924341678619,0.714263498783112,-0.167745053768158,-0.771530747413635,0.613678991794586,0.0869368836283684,-0.703540861606598,0.705317139625549,-0.259919315576553,-0.741371333599091,0.618716835975647,-0.543906390666962,-0.653415381908417,0.526511311531067,-0.27410688996315,-0.697514712810516,0.662071526050568,-0.256507933139801,-0.752815365791321,0.606195330619812,-0.254428863525391,-0.636298537254334,0.728278875350952,-0.273908078670502,-0.698173701763153,0.661458849906921,-0.543919205665588,-0.653366386890411,0.526558876037598,-0.145044699311256,-0.542992949485779,-0.827115893363953,-0.00856390502303839,-0.481026738882065,-0.876664102077484,0.144339740276337,-0.385682374238968,-0.911271154880524,-0.156681537628174,-0.524681508541107,-0.836755752563477,-0.176599472761154,-0.554651200771332,-0.813126504421234,-0.0123494686558843,-0.474287658929825,-0.880283296108246,0.168544366955757,-0.417109698057175,-0.893091559410095,-0.00480421166867018,-0.487683981657028,-0.873006999492645,0.194412812590599,-0.380799531936646,-0.903988599777222,-0.00956310704350472,-0.479251533746719,-0.877625644207001,-0.18475253880024,-0.522922992706299,-0.832116603851318,0.0503698959946632,-0.496973067522049,-0.866302847862244,-0.00668591959401965,-0.48435652256012,-0.874845147132874,0.0402465984225273,-0.431897014379501,-0.901024639606476,0.19888311624527,-0.39308226108551,-0.897737205028534,0.0353603437542915,0.21844245493412,-0.97520899772644,0.0792462974786758,0.282042562961578,-0.956123530864716,0.227127373218536,0.36534395813942,-0.902738690376282,0.00909842178225517,0.24656155705452,-0.969084441661835,-0.122893400490284,0.131027787923813,-0.983732163906097,0.100099645555019,0.241834878921509,-0.965140402317047,0.228100761771202,0.364022225141525,-0.903027057647705,0.0667862519621849,0.30562824010849,-0.949805736541748,0.234028577804565,0.385937035083771,-0.892347037792206,0.101874575018883,0.238369584083557,-0.965816617012024,-0.121256731450558,0.127911373972893,-0.984345197677612,
  781. 0.0660988315939903,0.177573040127754,-0.981885313987732,0.244207262992859,0.360298544168472,-0.90030425786972,0.0743775889277458,0.291297197341919,-0.953736841678619,0.0284791458398104,0.307534217834473,-0.95111083984375,-0.150393962860107,-0.00866855401545763,-0.988588154315948,-0.0117985336109996,0.0745633393526077,-0.997146487236023,0.13070672750473,0.170434460043907,-0.976661682128906,-0.162757739424706,0.0123975472524762,-0.986588180065155,-0.180725306272507,-0.0248758401721716,-0.983218967914581,-0.0158424079418182,0.0824070796370506,-0.996472835540771,0.156057417392731,0.133865565061569,-0.978634834289551,-0.00779818184673786,0.0668000355362892,-0.997735917568207,0.190289556980133,0.176200613379478,-0.965786337852478,-0.012877237983048,0.0766560584306717,-0.996974527835846,-0.189375817775726,0.0110699497163296,-0.981842398643494,0.0395137742161751,0.0551036670804024,-0.997698485851288,-0.00980557128787041,0.0706961825489998,-0.997449696063995,0.0282193012535572,0.127434715628624,-0.991445422172546,0.194961711764336,0.162492677569389,-0.967256963253021,-0.138790041208267,-0.116535298526287,-0.983441352844238,-0.0138453627005219,-0.0217639319598675,-0.999667286872864,0.124098971486092,0.0974007025361061,-0.987477898597717,-0.152682155370712,-0.0980011224746704,-0.983404278755188,-0.167496651411057,-0.137720108032227,-0.976205945014954,-0.0189794953912497,-0.0141732795163989,-0.999719500541687,0.152245298027992,0.0652135014533997,-0.986189007759094,-0.00877320021390915,-0.0292594842612743,-0.999533355236053,0.169198423624039,0.102865867316723,-0.980199217796326,-0.0152394017204642,-0.0197032280266285,-0.999689698219299,-0.180358663201332,-0.103113107383251,-0.978181183338165,0.0422558262944222,-0.0341505631804466,-0.998522996902466,-0.0113118859007955,-0.0255082957446575,-0.999610602855682,0.0224276762455702,0.0370608493685722,-0.999061286449432,0.175229340791702,0.0904342234134674,-0.980365395545959,-0.178373664617538,0.313989341259003,-0.932519972324371,-0.0535455420613289,0.410058885812759,-0.910485923290253,
  782. 0.0873136073350906,0.517647266387939,-0.85112726688385,-0.193137586116791,0.331360310316086,-0.923524916172028,-0.20867121219635,0.291584134101868,-0.933506846427917,-0.0584105215966702,0.416522979736328,-0.907246828079224,0.116795420646667,0.487503170967102,-0.865274250507355,-0.0487272329628468,0.40363147854805,-0.913623154163361,0.131137400865555,0.517433226108551,-0.845615684986115,-0.0548232868313789,0.411759108304977,-0.909642159938812,-0.221612438559532,0.323698699474335,-0.919840812683105,-0.00324502144940197,0.397558569908142,-0.917571067810059,-0.0511610619723797,0.406881242990494,-0.912047266960144,-0.0230213366448879,0.462321788072586,-0.886413335800171,0.13707123696804,0.506569266319275,-0.851233839988709,-0.00818632263690233,0.543351531028748,-0.839465379714966,0.103519134223461,0.627213656902313,-0.771937191486359,0.220034822821617,0.712047696113586,-0.666762888431549,-0.0244665592908859,0.557474374771118,-0.829833567142487,-0.0415008962154388,0.517517447471619,-0.854665637016296,0.0985369011759758,0.632048070430756,-0.768638849258423,0.252475470304489,0.686604917049408,-0.681784331798553,0.108437165617943,0.622399210929871,-0.775151968002319,0.269933670759201,0.713737368583679,-0.646308541297913,0.102266289293766,0.628433346748352,-0.771111607551575,-0.0579085238277912,0.544288277626038,-0.836897194385529,0.15050533413887,0.61489862203598,-0.774110972881317,0.105924487113953,0.624864161014557,-0.773514568805695,0.122460886836052,0.66882336139679,-0.73326575756073,0.277399629354477,0.704450130462646,-0.653298914432526,0.0336240753531456,-0.587066888809204,-0.808839857578278,0.0657132193446159,-0.523357629776001,-0.849575519561768,0.201837435364723,-0.404206871986389,-0.892120182514191,0.00227678613737226,-0.567558825016022,-0.82332968711853,-0.10667710006237,-0.669156074523926,-0.735425174236298,0.0937913730740547,-0.554221212863922,-0.827068328857422,0.202973380684853,-0.405106872320175,-0.891453981399536,0.0489508174359798,-0.504451811313629,-0.862051129341125,0.208886459469795,-0.380657732486725,-0.900814294815063,
  783. 0.0961774364113808,-0.556797027587891,-0.825061798095703,-0.104615792632103,-0.67129385471344,-0.733771145343781,0.0664834529161453,-0.614339649677277,-0.786235809326172,0.223376750946045,-0.401692926883698,-0.888113498687744,0.0591573379933834,-0.51600593328476,-0.854539811611176,0.00669198948889971,-0.510374248027802,-0.859926342964172,-0.27812647819519,0.716435313224792,-0.639817237854004,-0.153898283839226,0.802180826663971,-0.576906621456146,-0.0230980273336172,0.874256730079651,-0.484914034605026,-0.293542891740799,0.725908398628235,-0.622004508972168,-0.310275912284851,0.693263649940491,-0.650472521781921,-0.158374011516571,0.805427610874176,-0.571142733097076,0.00596283236518502,0.858202636241913,-0.51327645778656,-0.149469971656799,0.798925220966339,-0.582560896873474,0.0250970423221588,0.877715408802032,-0.478524655103683,-0.155053943395615,0.803023397922516,-0.575423061847687,-0.323601514101028,0.712752401828766,-0.622307062149048,-0.0974815636873245,0.80032742023468,-0.591585457324982,-0.151714906096458,0.800581037998199,-0.579700469970703,-0.117920361459255,0.83817446231842,-0.532501995563507,0.0312876328825951,0.871385335922241,-0.489600777626038,-0.00115633010864258,-0.633533596992493,-0.773714303970337,0.0404512844979763,-0.57971054315567,-0.813817799091339,0.191847175359726,-0.487752288579941,-0.851640999317169,-0.0282131023705006,-0.610554218292236,-0.791471779346466,-0.158115968108177,-0.690770089626312,-0.705575048923492,0.0619565658271313,-0.612735331058502,-0.787855803966522,0.192572727799416,-0.488537341356277,-0.851027011871338,0.0276275388896465,-0.559471607208252,-0.828388929367065,0.195007890462875,-0.468165874481201,-0.861854195594788,0.063787043094635,-0.615492880344391,-0.785556972026825,-0.156518071889877,-0.693068504333496,-0.703674733638763,0.0288799796253443,-0.663118898868561,-0.7479567527771,0.205355018377304,-0.49066898226738,-0.846801817417145,0.0354437977075577,-0.571855843067169,-0.819588124752045,-0.00982487015426159,-0.559038579463959,-0.829083442687988,0.187150284647942,0.946889996528625,-0.261484354734421,
  784. -0.0183790698647499,0.927526295185089,-0.373305797576904,-0.148336172103882,0.923617660999298,-0.35344985127449,0.186728373169899,0.947475731372833,-0.259658366441727,-0.150010392069817,0.925563871860504,-0.347604095935822,-0.0305127687752247,0.957753658294678,-0.285966694355011,-0.0653049275279045,0.958610594272614,-0.277129948139191,-0.376038640737534,0.847301542758942,-0.375067055225372,-0.156526535749435,0.932841897010803,-0.324508041143417,-0.151391237974167,0.927145779132843,-0.342755615711212,-0.258524656295776,0.903904616832733,-0.34076601266861,-0.0277455225586891,0.948824346065521,-0.314583450555801,-0.161760345101357,0.938335657119751,-0.305548757314682,-0.390566468238831,0.858112394809723,-0.333318084478378,-0.256181806325912,0.899539768695831,-0.353834837675095,-0.0278311632573605,0.949112236499786,-0.313705891370773,-0.259287565946579,0.905307829380035,-0.336433798074722,-0.159281268715858,0.934063374996185,-0.319617182016373,-0.39359924197197,0.860214829444885,-0.324206799268723,-0.394727528095245,0.853246569633484,-0.340823292732239,-0.259797483682632,0.90624064207077,-0.333516418933868,-0.259640693664551,0.905954241752625,-0.334415346384048,-0.394733369350433,0.853257656097412,-0.340788722038269,-0.157541513442993,0.926249921321869,-0.342405796051025,0.0192367676645517,-0.408436477184296,-0.912584006786346,0.0519534386694431,-0.33762264251709,-0.939846694469452,0.177351638674736,-0.221576243638992,-0.958879768848419,-0.0119672762230039,-0.38670489192009,-0.92212587594986,-0.120183564722538,-0.505357503890991,-0.854499697685242,0.0801605209708214,-0.371857821941376,-0.924822151660919,0.178719982504845,-0.222779557108879,-0.958346724510193,0.0351552180945873,-0.316949725151062,-0.947790682315826,0.189278915524483,-0.190291553735733,-0.963308274745941,0.0825631767511368,-0.37474599480629,-0.923443973064423,-0.118032693862915,-0.507871627807617,-0.853308200836182,0.0516175739467144,-0.44062203168869,-0.896207511425018,0.203966990113258,-0.213318914175034,-0.955454111099243,0.0453867577016354,-0.329566448926926,-0.94304084777832,
  785. -0.00939655862748623,-0.324939697980881,-0.94568806886673,-0.00643397681415081,-0.463918000459671,-0.885854780673981,0.103292614221573,-0.36665952205658,-0.924603402614594,0.223429590463638,-0.232960760593414,-0.946471631526947,-0.0234796274453402,-0.44762197136879,-0.893914580345154,-0.0400493368506432,-0.488253086805344,-0.871782779693604,0.0968193486332893,-0.359782874584198,-0.927999079227448,0.256293058395386,-0.259342133998871,-0.931158185005188,0.10968104749918,-0.373420625925064,-0.921155333518982,0.274010568857193,-0.212931364774704,-0.937858402729034,0.101514711976051,-0.364773392677307,-0.925545871257782,-0.0564821287989616,-0.457917302846909,-0.887198686599731,0.161492124199867,-0.367315411567688,-0.915969252586365,0.106491111218929,-0.370047777891159,-0.922889113426209,0.134333148598671,-0.305542081594467,-0.942655086517334,0.281757324934006,-0.224488288164139,-0.932854771614075,-0.140911549329758,-0.418091744184494,-0.897409200668335,-0.0331965424120426,-0.316498577594757,-0.948011934757233,0.0856184512376785,-0.17988745868206,-0.979954063892365,-0.157586500048637,-0.402327358722687,-0.901831150054932,-0.163751244544983,-0.438290327787399,-0.883791327476501,-0.0375620909035206,-0.311881363391876,-0.949378252029419,0.120410345494747,-0.207266688346863,-0.970846056938171,-0.0288041960448027,-0.321129143238068,-0.946597278118134,0.133617699146271,-0.163580268621445,-0.977439522743225,-0.0341865867376328,-0.315452754497528,-0.948325276374817,-0.181849911808968,-0.407421499490738,-0.894951581954956,0.0303858183324337,-0.316962391138077,-0.947951257228851,-0.0310629270970821,-0.318749785423279,-0.947329759597778,-5.38493623025715e-005,-0.251516819000244,-0.96785295009613,0.142035350203514,-0.175662651658058,-0.97415018081665,-0.120868809521198,0.548256695270538,-0.827529668807983,-0.0204267650842667,0.646782994270325,-0.762400507926941,0.0874075070023537,0.745491147041321,-0.660759329795837,-0.140318036079407,0.560766935348511,-0.815997242927551,-0.144849196076393,0.524922788143158,-0.838734030723572,-0.0264305826276541,0.651197850704193,-0.758447766304016,
  786. 0.123805850744247,0.72446197271347,-0.678105473518372,-0.0144706759601831,0.642358899116516,-0.766267359256744,0.139904797077179,0.756065607070923,-0.639368176460266,-0.0220013912767172,0.6479452252388,-0.761369109153748,-0.164246201515198,0.549309313297272,-0.819318294525146,0.0409575589001179,0.647813856601715,-0.760696828365326,-0.0174719821661711,0.644593775272369,-0.764325618743896,0.00747620407491922,0.696709394454956,-0.717314541339874,0.148784190416336,0.747425496578217,-0.647470772266388,-0.0488252192735672,0.170501232147217,-0.984147071838379,-0.0159200485795736,0.2471584379673,-0.968844294548035,0.106267563998699,0.35657000541687,-0.928205251693726,-0.0811471492052078,0.193082228302956,-0.977821230888367,-0.180846586823463,0.0560537613928318,-0.981912672519684,0.0129382824525237,0.211647525429726,-0.977260529994965,0.107297763228416,0.355645567178726,-0.928441405296326,-0.0330395214259624,0.267991334199905,-0.962854623794556,0.118847019970417,0.386604964733124,-0.914555609226227,0.0154099697247148,0.208583101630211,-0.977883219718933,-0.178604662418365,0.0533400624990463,-0.982474029064178,-0.0100253792479634,0.139043390750885,-0.990235567092896,0.134171351790428,0.362884074449539,-0.92212438583374,-0.0226369556039572,0.255353063344955,-0.966582953929901,-0.0736896470189095,0.25977423787117,-0.962853670120239,-0.0890645012259483,-0.0387859269976616,-0.995270490646362,-0.0351650044322014,0.0245154853910208,-0.999080777168274,0.114735700190067,0.0995757505297661,-0.98839282989502,-0.111784540116787,-0.00834383442997932,-0.993697464466095,-0.252832055091858,-0.110265165567398,-0.961206316947937,-0.0185999050736427,-0.0171117726713419,-0.999680578708649,0.1155154556036,0.0982395634055138,-0.988435745239258,-0.0449516251683235,0.0491692870855331,-0.997778415679932,0.137933909893036,0.127016931772232,-0.982263267040253,-0.01718127168715,-0.0206707790493965,-0.999638795852661,-0.251521497964859,-0.113463066518307,-0.961177945137024,-0.0647978633642197,-0.0838177353143692,-0.994372189044952,0.145307406783104,0.099653571844101,-0.984355092048645,
  787. -0.0390021428465843,0.0341763645410538,-0.99865460395813,-0.0892772153019905,0.055222924798727,-0.994474768638611,-0.156324803829193,-0.325514584779739,-0.932524979114532,-0.0120751596987247,-0.262663096189499,-0.964812159538269,0.141357004642487,-0.177107140421867,-0.973987400531769,-0.166643336415291,-0.304257094860077,-0.93790066242218,-0.19703021645546,-0.33771476149559,-0.920395493507385,-0.0154282143339515,-0.254696547985077,-0.966897964477539,0.162430182099342,-0.213094636797905,-0.963435053825378,-0.00876087322831154,-0.270514845848084,-0.962676048278809,0.194294795393944,-0.175344914197922,-0.965144395828247,-0.0129729453474283,-0.260532259941101,-0.965377986431122,-0.202501639723778,-0.30295518040657,-0.931241750717163,0.042867187410593,-0.285793095827103,-0.957332074642181,-0.0104231974110007,-0.266579508781433,-0.963756680488586,0.038217443972826,-0.213922932744026,-0.976102769374847,0.197692051529884,-0.188747406005859,-0.961921155452728,-0.349679321050644,0.26406192779541,-0.898885786533356,-0.201984226703644,0.329235136508942,-0.922391772270203,-0.0357239320874214,0.40060743689537,-0.915553092956543,-0.357424288988113,0.285533159971237,-0.889223635196686,-0.382755070924759,0.251617103815079,-0.888924837112427,-0.203977108001709,0.336088091135025,-0.919477224349976,-0.0182433873414993,0.362610042095184,-0.931762397289276,-0.200004070997238,0.322447180747986,-0.925216853618622,0.0178119037300348,0.393099099397659,-0.919323563575745,-0.202493578195572,0.330984592437744,-0.921653687953949,-0.384134918451309,0.287375837564468,-0.877414226531982,-0.152828559279442,0.305296391248703,-0.939913690090179,-0.201024800539017,0.325943619012833,-0.923769354820251,-0.149453997612,0.373776197433472,-0.915398716926575,0.0194972679018974,0.380097776651382,-0.924740791320801,0.0648858025670052,0.221918329596519,0.972903966903687,0.148680731654167,0.22485277056694,0.962982475757599,0.0478022322058678,0.226523190736771,0.972832143306732,0.307425856590271,0.235480934381485,0.921975076198578,0.148614138364792,0.225963115692139,0.96273285150528,
  788. 0.0649577751755714,0.220935419201851,0.973122835159302,-0.10647551715374,0.22345831990242,0.968880474567413,0.065058097243309,0.219563737511635,0.973426640033722,0.0459149517118931,0.212962299585342,0.975980997085571,0.0625845268368721,0.25276580452919,0.965501248836517,-0.139935418963432,0.188624426722527,0.972028255462646,0.303715407848358,0.255683302879334,0.917814254760742,-0.106866933405399,0.217518210411072,0.97018826007843,-0.146623969078064,0.226546481251717,0.962900876998901,0.0635207816958427,0.240348801016808,0.968605995178223,0.0460566207766533,0.202010974287987,0.978299736976624,0.304929554462433,0.24916435778141,0.919203519821167,-0.138651266694069,0.181449741125107,0.973576843738556,-0.421549111604691,0.140402019023895,0.895870447158813,-0.143146753311157,0.206714302301407,0.96787303686142,-0.111949190497398,0.133142530918121,0.984754025936127,0.0333973541855812,0.259072542190552,0.965280294418335,-0.143027782440186,0.206040278077126,0.968034327030182,-0.421378254890442,0.139493599534035,0.896092712879181,0.458962261676788,0.38362979888916,0.801362633705139,0.0033483449369669,0.303843706846237,0.952715992927551,0.273115366697311,0.319782227277756,0.907274663448334,0.458459287881851,0.386057049036026,0.800484418869019,0.255371063947678,0.404026567935944,0.87837827205658,0.00103963748551905,0.312388688325882,0.94995379447937,0.233260810375214,0.414720863103867,0.87954306602478,-0.00758456811308861,0.344068080186844,0.938914060592651,-0.193780079483986,0.271664202213287,0.942681193351746,-0.00419144472107291,0.331649363040924,0.943393528461456,0.256740003824234,0.383197903633118,0.887267708778381,-0.0923677980899811,0.332214891910553,0.938670039176941,-0.0134447021409869,0.365377426147461,0.930762469768524,-0.093848317861557,0.339598566293716,0.935876786708832,-0.2066870033741,0.308136105537415,0.928618669509888,0.257058411836624,0.378012329339981,0.889397382736206,0.149629965424538,0.382511734962463,0.911754131317139,-0.0925448462367058,0.33309742808342,0.93833976984024,-0.182187780737877,0.304411679506302,0.934955179691315,
  789. -0.222159996628761,0.352505475282669,0.909057140350342,-0.0950499773025513,0.34559765458107,0.933556497097015,-0.0936917960643768,0.338817566633224,0.936175465583801,0.150785014033318,0.339323490858078,0.928506135940552,-0.184609562158585,0.323364585638046,0.928091943264008,0.230962231755257,0.127036780118942,0.964633643627167,-0.234803676605225,-0.0133266355842352,0.971951484680176,0.0307970065623522,0.0278487224131823,0.99913763999939,0.230363920331001,0.12986034154892,0.964400708675385,0.00752102350816131,0.11462127417326,0.993380784988403,-0.237665981054306,-0.00345274060964584,0.971340835094452,-0.0114625208079815,0.126018494367599,0.991961658000946,-0.24824146926403,0.0338156633079052,0.968107879161835,-0.429846912622452,-0.0420522205531597,0.901921987533569,-0.244070783257484,0.0189656391739845,0.969572067260742,0.00902086775749922,0.09393610060215,0.995537459850311,-0.325942784547806,0.0253562908619642,0.945049405097961,-0.326666831970215,0.0291980858892202,0.944688439369202,-0.442602008581162,-0.00388845684938133,0.896709740161896,-0.255138546228409,0.0588355325162411,0.965112805366516,0.00939266663044691,0.0887936651706696,0.996005773544312,-0.0977538377046585,0.0832659974694252,0.991721212863922,-0.326027363538742,0.0258036889135838,0.945008099079132,-0.420527219772339,-0.00758190220221877,0.907248258590698,-0.457310944795609,0.0431269071996212,0.888260662555695,-0.327280163764954,0.0324732102453709,0.944369196891785,-0.326620697975159,0.0289524029940367,0.944711983203888,-0.0961625799536705,0.0359809249639511,0.994715094566345,-0.42320841550827,0.0121232811361551,0.905951261520386,0.152145683765411,0.138486385345459,0.978607773780823,0.233559891581535,0.139713257551193,0.962252676486969,0.132734775543213,0.143050417304039,0.980774223804474,0.391917705535889,0.151295721530914,0.90747457742691,0.233472794294357,0.141818270087242,0.96196573972702,0.152139097452164,0.138609632849693,0.97859138250351,-0.0209648516029119,0.143883720040321,0.989372491836548,0.152292862534523,0.135714009404182,0.978973209857941,
  790. 0.130823090672493,0.129616960883141,0.982896208763123,0.150285258889198,0.171689033508301,0.973620772361755,-0.0582328252494335,0.105245642364025,0.992739796638489,0.388480871915817,0.171593740582466,0.905338704586029,-0.0213967654854059,0.138148099184036,0.990180432796478,-0.0655789151787758,0.14834401011467,0.986759185791016,0.151214420795441,0.155509889125824,0.976192057132721,0.129599779844284,0.115451961755753,0.98482221364975,0.389636844396591,0.164883509278297,0.906088590621948,-0.056926466524601,0.0976291298866272,0.993593454360962,-0.344523161649704,0.074663370847702,0.935804009437561,-0.0625176057219505,0.130327776074409,0.98949807882309,-0.0276594310998917,0.0533363707363606,0.998193442821503,0.115673214197159,0.180443063378334,0.976759970188141,-0.0623662509024143,0.129439115524292,0.989624261856079,-0.344368875026703,0.0737674087285995,0.935931861400604,0.335311323404312,0.529811084270477,0.779016375541687,-0.127055704593658,0.439538210630417,0.889192342758179,0.134695753455162,0.465187579393387,0.874904334545136,0.334859579801559,0.531797051429749,0.777856647968292,0.11629094183445,0.545785248279572,0.829816162586212,-0.129629001021385,0.447831511497498,0.884671270847321,0.0918107628822327,0.554348468780518,0.827205240726471,-0.139186874032021,0.478609025478363,0.866925835609436,-0.321783751249313,0.395177185535431,0.860401213169098,-0.135415121912956,0.46646848320961,0.87411105632782,0.117684587836266,0.527752161026001,0.841206252574921,-0.22069576382637,0.463856756687164,0.857980370521545,-0.145543605089188,0.499055147171021,0.854260504245758,-0.221649542450905,0.468297451734543,0.855318069458008,-0.334615260362625,0.427981197834015,0.839562356472015,0.118020862340927,0.523256480693817,0.843963086605072,0.018598634749651,0.523110449314117,0.852061927318573,-0.220809787511826,0.464386731386185,0.857664406299591,-0.311122834682465,0.427435874938965,0.848823368549347,-0.349735081195831,0.467628628015518,0.811793625354767,-0.222445830702782,0.47201681137085,0.853064000606537,-0.22157084941864,0.467930436134338,0.855539262294769,
  791. 0.0199510026723146,0.483426690101624,0.875157475471497,-0.313558548688889,0.443915903568268,0.839416325092316,-0.0764489322900772,-0.324311047792435,0.942856252193451,0.0100732743740082,-0.316524833440781,0.948530733585358,-0.095514640212059,-0.32125198841095,0.942164599895477,0.0857318341732025,-0.314469963312149,0.94538813829422,0.0108926510438323,-0.323890149593353,0.946032106876373,-0.0752938017249107,-0.333551734685898,0.939720213413239,-0.24932898581028,-0.320297569036484,0.913917124271393,-0.0761784687638283,-0.326482713222504,0.942128479480743,-0.0966494157910347,-0.334088385105133,0.937573492527008,-0.0764461010694504,-0.324334293603897,0.94284850358963,-0.258384466171265,-0.378986150026321,0.888598322868347,0.0870283469557762,-0.318418592214584,0.943946957588196,-0.249454706907272,-0.326330363750458,0.911746025085449,-0.274042040109634,-0.312232673168182,0.909621775150299,-0.0787146613001823,-0.305919408798218,0.948797821998596,-0.16852542757988,-0.417631685733795,0.892851054668427,0.0863883420825005,-0.316469520330429,0.944660842418671,-0.256205528974533,-0.387702912092209,0.885463237762451,-0.544730007648468,-0.350983500480652,0.761629700660706,-0.269972711801529,-0.330329805612564,0.904431819915771,-0.250147342681885,-0.406098604202271,0.878925621509552,-0.253715306520462,-0.247025892138481,0.935204148292542,-0.269787192344666,-0.331141442060471,0.904190361499786,-0.544745624065399,-0.350903987884521,0.761655151844025,-0.146639689803123,-0.854735314846039,-0.497920036315918,-0.00575908925384283,-0.820032179355621,-0.572288632392883,0.145830899477005,-0.750490188598633,-0.644591212272644,-0.158647462725639,-0.842295050621033,-0.515141010284424,-0.177318319678307,-0.85819935798645,-0.481717824935913,-0.00997962802648544,-0.815131843090057,-0.579189479351044,0.169313788414001,-0.770142078399658,-0.614991068840027,-0.00158505374565721,-0.824805676937103,-0.565414249897003,0.195566937327385,-0.74277400970459,-0.640343964099884,-0.00688753882423043,-0.818729162216187,-0.574138641357422,-0.18544203042984,-0.838761448860168,-0.511947751045227,
  792. 0.0503747761249542,-0.83023989200592,-0.555125296115875,-0.00367591646499932,-0.822423458099365,-0.568863868713379,0.0401295647025108,-0.787806034088135,-0.614614903926849,0.200020343065262,-0.750960767269135,-0.629324853420258,0.0363156832754612,-0.237111151218414,-0.970803618431091,0.0810911953449249,-0.171950310468674,-0.98176234960556,0.225927114486694,-0.0750715360045433,-0.971247255802155,0.0102851586416364,-0.20939314365387,-0.977777540683746,-0.122640192508698,-0.320106357336044,-0.939410209655762,0.101691409945488,-0.211241647601128,-0.97212952375412,0.227087214589119,-0.0766294896602631,-0.970854938030243,0.0687887594103813,-0.14846870303154,-0.98652184009552,0.232717648148537,-0.0517364107072353,-0.971167266368866,0.103445880115032,-0.214586332440376,-0.971211433410645,-0.12099901586771,-0.323182821273804,-0.938569188117981,0.0640411823987961,-0.277997523546219,-0.958444654941559,0.242911517620087,-0.0783945173025131,-0.966875553131104,0.0762773230671883,-0.162763565778732,-0.983712255954742,0.0263852048665285,-0.14846083521843,-0.988566339015961,-0.148370027542114,-0.4469093978405,-0.882189512252808,-0.0118130454793572,-0.376764237880707,-0.926233887672424,0.135750383138657,-0.278879255056381,-0.950682997703552,-0.161025449633598,-0.426769733428955,-0.889909207820892,-0.179878547787666,-0.459369689226151,-0.869840919971466,-0.01554308924824,-0.36997377872467,-0.928912162780762,0.160380423069,-0.311820805072784,-0.936507403850555,-0.00811507925391197,-0.383469849824905,-0.923517763614655,0.186454147100449,-0.273136109113693,-0.943732857704163,-0.0127822067588568,-0.375002473592758,-0.92693567276001,-0.188517943024635,-0.426979929208755,-0.884392082691193,0.0409990511834621,-0.393974989652634,-0.91820627450943,-0.00997934490442276,-0.380092680454254,-0.924894690513611,0.0296286623924971,-0.326869875192642,-0.944604814052582,0.191192135214806,-0.286350399255753,-0.938855171203613,-0.138746038079262,-0.541881740093231,-0.828923344612122,-0.0130766667425632,-0.463674992322922,-0.885908842086792,0.125249668955803,-0.350130558013916,-0.928289473056793,
  793. -0.152740597724915,-0.525157451629639,-0.837185740470886,-0.167897000908852,-0.557645261287689,-0.812922120094299,-0.0178411100059748,-0.457358181476593,-0.889103710651398,0.154247924685478,-0.378998637199402,-0.912451446056366,-0.00836260244250298,-0.469890594482422,-0.88268506526947,0.174518719315529,-0.341162621974945,-0.923661887645721,-0.0143493469804525,-0.461991041898727,-0.886768519878387,-0.180763319134712,-0.527499139308929,-0.83010196685791,0.0383434891700745,-0.475719809532166,-0.878760755062103,-0.0107258846983314,-0.466778814792633,-0.884309053421021,0.0185349248349667,-0.412245988845825,-0.910884141921997,0.180491998791695,-0.352224171161652,-0.918346762657166,-0.176174178719521,-0.13164296746254,-0.975516676902771,-0.0517293699085712,-0.036462564021349,-0.997995376586914,0.0843506902456284,0.0829253420233727,-0.992979526519775,-0.190683662891388,-0.112371690571308,-0.97519862651825,-0.211358025670052,-0.15518981218338,-0.965009808540344,-0.0558283105492592,-0.0303124152123928,-0.997980237007141,0.114343449473381,0.0492265783250332,-0.992220997810364,-0.0476532578468323,-0.0425722859799862,-0.997956395149231,0.132568210363388,0.0882328376173973,-0.987239003181458,-0.0527484081685543,-0.0349341407418251,-0.997996628284454,-0.22435250878334,-0.120045490562916,-0.967085957527161,-0.00207632826641202,-0.0512956045567989,-0.998681366443634,-0.0497262179851532,-0.0394658595323563,-0.997982859611511,-0.0218758527189493,0.0196976698935032,-0.999566733837128,0.13866263628006,0.0755589380860329,-0.987453043460846,-0.0092062670737505,0.11252224445343,-0.993606567382813,0.103420816361904,0.21826146543026,-0.970394790172577,0.219659760594368,0.341559857130051,-0.913830757141113,-0.0252296607941389,0.129227310419083,-0.991293966770172,-0.0424607172608376,0.0827252268791199,-0.995667517185211,0.0980123803019524,0.224525988101959,-0.969526529312134,0.252853512763977,0.311593532562256,-0.915955543518066,0.108749739825726,0.2120660841465,-0.971185624599457,0.267661571502686,0.350607484579086,-0.897458434104919,0.102012626826763,0.219894796609879,-0.970175087451935,
  794. -0.0589255094528198,0.114803105592728,-0.991639077663422,0.15420138835907,0.208115309476852,-0.965872645378113,0.106051318347454,0.215206116437912,-0.970793187618256,0.126229956746101,0.273938417434692,-0.953427374362946,0.275243610143662,0.338956952095032,-0.89963835477829,0.0336678028106689,-0.885580003261566,-0.463265120983124,0.0660073012113571,-0.846631407737732,-0.528070390224457,0.199940010905266,-0.759983479976654,-0.618424654006958,0.00222847098484635,-0.874524652957916,-0.484975963830948,-0.107279717922211,-0.926530838012695,-0.360599011182785,0.0937094464898109,-0.863939166069031,-0.49480065703392,0.201699048280716,-0.760762810707092,-0.616893410682678,0.049446526914835,-0.8354532122612,-0.547332644462585,0.205000504851341,-0.743847548961639,-0.636133372783661,0.0960691869258881,-0.865332186222076,-0.491905391216278,-0.105213917791843,-0.927712738513947,-0.358160793781281,0.0662727504968643,-0.900067508220673,-0.430681318044662,0.219476267695427,-0.757007241249084,-0.615443110466003,0.0595243312418461,-0.842329144477844,-0.535666406154633,0.00645990250632167,-0.839573800563812,-0.543207228183746,-0.282101392745972,0.353933811187744,-0.8917116522789,-0.159004271030426,0.458233684301376,-0.874493896961212,-0.0242839809507132,0.566264748573303,-0.823865592479706,-0.297073870897293,0.36995342373848,-0.880273580551147,-0.312176018953323,0.330698013305664,-0.890609323978424,-0.164086923003197,0.464396387338638,-0.870293915271759,0.0046298373490572,0.539364814758301,-0.84205949306488,-0.153966099023819,0.452103614807129,-0.878576576709747,0.027374217286706,0.574341893196106,-0.818157732486725,-0.160369083285332,0.459890633821487,-0.873374104499817,-0.325439006090164,0.36038002371788,-0.874194324016571,-0.105085484683514,0.451220065355301,-0.88620400428772,-0.15649688243866,0.455185562372208,-0.876535832881927,-0.12551175057888,0.511506259441376,-0.850063741207123,0.0337579734623432,0.563282191753387,-0.825574815273285,0.00145710387732834,-0.910616874694824,-0.413249313831329,0.0380381494760513,-0.881773769855499,-0.470136255025864,
  795. 0.186862900853157,-0.818547070026398,-0.543196976184845,-0.0257922802120447,-0.89786422252655,-0.439516365528107,-0.159919500350952,-0.932570457458496,-0.323632627725601,0.059755053371191,-0.900069653987885,-0.43162938952446,0.187610372900963,-0.818989872932434,-0.542271137237549,0.0250801406800747,-0.869934618473053,-0.492528915405273,0.196546450257301,-0.802109479904175,-0.563905894756317,0.0616000406444073,-0.901534140110016,-0.428301155567169,-0.158311992883682,-0.933793723583221,-0.320884138345718,0.0268411543220282,-0.927427291870117,-0.373039364814758,0.20687310397625,-0.815467894077301,-0.540569722652435,0.0329782478511333,-0.877232432365417,-0.478931874036789,-0.0117034912109375,-0.869043469429016,-0.494597285985947,0.221342921257019,0.970358788967133,0.0970112904906273,0.0203037708997726,0.999769628047943,-0.00697447033599019,-0.108443021774292,0.994056284427643,0.00960368383675814,0.220868736505508,0.97024005651474,0.0992535203695297,-0.110029764473438,0.99380350112915,0.0157558210194111,0.00919755548238754,0.996548652648926,0.0825008749961853,-0.0231594424694777,0.995515823364258,0.0917162150144577,-0.339705944061279,0.939886450767517,-0.0348332747817039,-0.116215631365776,0.992422342300415,0.0399005599319935,-0.111329212784767,0.993565738201141,0.0208065658807755,-0.226017311215401,0.974006295204163,0.0150964399799705,0.0115960529074073,0.998556673526764,0.0524414628744125,-0.121217638254166,0.99083411693573,0.0596159622073174,-0.353642195463181,0.935347557067871,0.00788607727736235,-0.223639026284218,0.974671959877014,-0.000342237821314484,0.0115249920636415,0.998510301113129,0.0533346310257912,-0.226686730980873,0.973772346973419,0.0195075273513794,-0.120868802070618,0.991680264472961,0.0442831367254257,-0.356602489948273,0.934096992015839,0.0172537844628096,-0.365558594465256,0.930785536766052,-0.00228886352851987,-0.22695080935955,0.973674356937408,0.021256148815155,-0.226879894733429,0.973700881004334,0.0207861810922623,-0.365536630153656,0.930793762207031,-0.00243632635101676,-0.119445808231831,0.992637753486633,0.0200756546109915,
  796. 0.00602083839476109,-0.0456879362463951,-0.998937606811523,0.0392275452613831,0.0262144263833761,-0.998886406421661,0.172313824295998,0.139169663190842,-0.975161492824554,-0.025031516328454,-0.0203611813485622,-0.999479293823242,-0.133849322795868,-0.150487452745438,-0.979509115219116,0.0658960416913033,-0.0118719404563308,-0.997755885124207,0.173031255602837,0.138420522212982,-0.975140988826752,0.0233568791300058,0.0487958490848541,-0.998535633087158,0.178979128599167,0.165298298001289,-0.969867587089539,0.0681699812412262,-0.0151277128607035,-0.997559010982513,-0.131816878914833,-0.153310433030128,-0.979346930980682,0.0372460521757603,-0.0847164914011955,-0.995708703994751,0.192890182137489,0.13984626531601,-0.971203684806824,0.0330190323293209,0.0350555963814259,-0.998839735984802,-0.0191134139895439,0.0434736311435699,-0.998871743679047,-0.0277280285954475,-0.111549094319344,-0.993372023105621,0.093359112739563,-0.00481182942166924,-0.995620965957642,0.214979290962219,0.120035335421562,-0.969213843345642,-0.0439840443432331,-0.0929389074444771,-0.994699835777283,-0.0606234297156334,-0.136223658919334,-0.988821506500244,0.0886521488428116,0.00127361225895584,-0.996061861515045,0.246492832899094,0.0888878330588341,-0.965059816837311,0.0980224013328552,-0.0108476262539625,-0.995125114917755,0.26196950674057,0.131161779165268,-0.956121742725372,0.0921708643436432,-0.00327494298107922,-0.995737910270691,-0.0758295357227325,-0.101810157299042,-0.991909563541412,0.147731065750122,-0.0144322402775288,-0.988922357559204,0.0956579595804214,-0.0077864401973784,-0.99538379907608,0.123046725988388,0.0540980137884617,-0.990925252437592,0.269394218921661,0.117956981062889,-0.95577871799469,-0.154376283288002,-0.0551039464771748,-0.986474394798279,-0.0444933548569679,0.0526323802769184,-0.99762225151062,0.0777077823877335,0.184631407260895,-0.97973096370697,-0.171092391014099,-0.0375897772610188,-0.984537661075592,-0.179984599351883,-0.079525388777256,-0.980449497699738,-0.0489785522222519,0.0579381324350834,-0.99711799621582,
  797. 0.110879607498646,0.154856473207474,-0.981695055961609,-0.0400103218853474,0.0473291948437691,-0.998077809810638,0.126825496554375,0.19800953567028,-0.971960663795471,-0.0455866008996964,0.0539256446063519,-0.997503817081451,-0.196757152676582,-0.0463827773928642,-0.979354500770569,0.0148754995316267,0.0476532839238644,-0.998753190040588,-0.0422901846468449,0.050026148557663,-0.997852265834808,-0.0129051031544805,0.116915613412857,-0.993058025836945,0.134561762213707,0.185664191842079,-0.973356008529663,-0.100513651967049,0.815109252929688,-0.570520758628845,0.00518676545470953,0.880074083805084,-0.474808037281036,0.11870251595974,0.931061148643494,-0.345014274120331,-0.118833549320698,0.823063790798187,-0.555377900600433,-0.12873512506485,0.797162711620331,-0.589880406856537,8.03260900283931e-006,0.882666110992432,-0.470000594854355,0.152950659394264,0.916859567165375,-0.368747413158417,0.010360230691731,0.87743479013443,-0.479584008455276,0.169470578432083,0.931025505065918,-0.323220133781433,0.00392067013308406,0.880712389945984,-0.473635166883469,-0.146785572171211,0.812955915927887,-0.563521683216095,0.0688350573182106,0.878886222839355,-0.472039133310318,0.0077320272102952,0.878781855106354,-0.477161049842834,0.0375122167170048,0.909286141395569,-0.414477467536926,0.177862823009491,0.925707101821899,-0.33381313085556,-0.0420045666396618,0.518629133701324,-0.853966891765594,-0.00627203891053796,0.583199024200439,-0.812305092811584,0.121646650135517,0.666952908039093,-0.735102653503418,-0.0732735097408295,0.538483798503876,-0.839443981647491,-0.176171988248825,0.417853951454163,-0.891269624233246,0.0216201487928629,0.551378071308136,-0.833975315093994,0.123251989483833,0.665649175643921,-0.736016392707825,-0.0228255223482847,0.60146826505661,-0.798570573329926,0.133144810795784,0.687503278255463,-0.713870942592621,0.0240072384476662,0.548594236373901,-0.835744023323059,-0.174116685986519,0.415566205978394,-0.892741918563843,-0.0074083199724555,0.489934831857681,-0.871727585792542,0.147324621677399,0.668143510818481,-0.729300856590271,
  798. -0.0127635281533003,0.590418040752411,-0.806996703147888,-0.0659852176904678,0.592838525772095,-0.802613496780396,0.0424283631145954,0.973679184913635,0.223938971757889,-0.13953959941864,0.953119277954102,0.268500238656998,-0.0631464794278145,0.967153966426849,0.246223330497742,-0.138573229312897,0.952452182769775,0.271352797746658,0.0436879247426987,0.972514390945435,0.228707611560822,-0.139284446835518,0.952082276344299,0.272285163402557,-0.0625794380903244,0.96675580739975,0.247925475239754,0.263924926519394,0.95467609167099,0.137612402439117,0.0369167402386665,0.978471636772156,0.203053191304207,0.0427023991942406,0.973428010940552,0.224976599216461,-0.172412216663361,0.946145057678223,0.274013876914978,-0.141243934631348,0.954304873943329,0.263348460197449,0.264185816049576,0.95446914434433,0.138545095920563,0.138983547687531,0.972798228263855,0.18532994389534,0.037039041519165,0.978370547294617,0.203516960144043,-0.167905569076538,0.941744923591614,0.29141765832901,0.0470095165073872,0.969317495822906,0.241275191307068,0.138363510370255,0.973237335681915,0.183479160070419,0.138039514422417,0.973465144634247,0.182512253522873,0.263393431901932,0.955094456672668,0.135714650154114,0.300675690174103,0.945861279964447,0.122232690453529,0.140674695372581,0.97157871723175,0.190382942557335,-0.187758252024651,0.93478524684906,0.301535040140152,-0.169336035847664,0.943170368671417,0.285928308963776,0.345604300498962,0.932905077934265,0.101222574710846,0.138640359044075,0.973041832447052,0.184305384755135,0.301141738891602,0.945518672466278,0.123726062476635,-0.201253980398178,0.938779473304749,0.279625058174133,0.139220178127289,0.972629487514496,0.186036631464958,0.120252564549446,0.983539938926697,0.134864896535873,0.162024557590485,0.961962163448334,0.219947442412376,0.138516187667847,0.973129749298096,0.183934658765793,0.348984181880951,0.930685341358185,0.109703242778778,0.84308922290802,0.40041196346283,0.358985871076584,0.639859616756439,0.50694328546524,0.577570915222168,0.546894669532776,0.499379426240921,0.6719571352005,
  799. 0.642907381057739,0.484415858983994,0.593305468559265,0.211917549371719,0.554819822311401,0.804528415203094,0.523556411266327,0.567906439304352,0.635114908218384,0.858986437320709,0.27228456735611,0.433593660593033,0.967470765113831,0.160911455750465,0.195212349295616,0.649875164031982,0.398520588874817,0.647181272506714,0.147847592830658,0.621116697788239,0.769646108150482,0.186461493372917,0.627925634384155,0.755606710910797,0.631300210952759,0.555786967277527,0.540889143943787,0.618593990802765,0.608954787254334,0.496503323316574,0.948261976242065,0.313350439071655,0.0510950200259686,0.552885055541992,0.464165955781937,0.692002952098846,0.643735468387604,0.477503508329391,0.597992658615112,0.504335701465607,0.606816530227661,0.614344537258148,0.163942947983742,0.580223441123962,0.79778665304184,0.888516068458557,0.371845841407776,0.268830597400665,0.549322307109833,0.477002054452896,0.686085999011993,0.957669258117676,0.273268789052963,0.0905206128954887,0.530624568462372,0.537116348743439,0.655700862407684,0.163074731826782,0.515529572963715,0.841210961341858,0.186588510870934,0.517829358577728,0.834887683391571,0.587637543678284,0.293867886066437,0.753872513771057,0.920646965503693,0.208128273487091,0.330290466547012,0.687088251113892,0.261867463588715,0.677742719650269,0.258987814188004,0.317082822322845,0.912350714206696,0.583195805549622,0.323199719190598,0.745268106460571,0.660363495349884,0.369124531745911,0.6539626121521,-0.115691639482975,0.3740194439888,0.920176565647125,0.00442666281014681,0.367734283208847,0.929920375347137,0.0381215438246727,0.348508208990097,0.93653017282486,-0.118698112666607,0.35599946975708,0.926917016506195,-0.178194418549538,0.359608173370361,0.91593062877655,0.00443082489073277,0.367355525493622,0.930070042610168,0.0468273125588894,0.385695248842239,0.92143714427948,0.00446473294869065,0.3642638027668,0.931285083293915,0.196131780743599,0.355446815490723,0.91388726234436,0.00442415522411466,0.367962628602982,0.929830074310303,-0.178216636180878,0.360522121191025,0.915566861629486,
  800. -0.0920016095042229,0.379954189062119,0.920418679714203,0.196555525064468,0.361391484737396,0.911461532115936,0.00445978948846459,0.364714950323105,0.93110853433609,0.0986367836594582,0.350403696298599,0.931390404701233,0.0946454331278801,0.380678832530975,0.919851005077362,0.00439160550013185,0.370920389890671,0.928654313087463,-0.0879843905568123,0.356871604919434,0.930000782012939,-0.116330064833164,0.714894652366638,-0.689487457275391,0.00603138329461217,0.726540565490723,-0.687097132205963,0.0409429743885994,0.740110337734222,-0.671237945556641,-0.119652196764946,0.728399693965912,-0.674623787403107,-0.182927861809731,0.716180860996246,-0.67351496219635,0.00602360395714641,0.726216316223145,-0.687439858913422,0.0492295026779175,0.713013768196106,-0.699419617652893,0.00611696252599359,0.730090618133545,-0.68332302570343,0.194003000855446,0.716463387012482,-0.670106768608093,0.00601014867424965,0.725656807422638,-0.688030540943146,-0.182948514819145,0.715529978275299,-0.674200892448425,-0.0936041176319122,0.713132083415985,-0.694752514362335,0.194309547543526,0.712616980075836,-0.674107432365417,0.00611789245158434,0.730129837989807,-0.683281064033508,0.0999802872538567,0.733764708042145,-0.672006905078888,0.0965233445167542,0.713186085224152,-0.69429737329483,0.00598349794745445,0.724550068378448,-0.689196228981018,-0.0892918035387993,0.731397092342377,-0.676080822944641,-0.116271585226059,-0.689744651317596,-0.714656054973602,0.00602542608976364,-0.687358736991882,-0.726293087005615,0.0410165935754776,-0.671492040157318,-0.739875733852386,-0.119623273611069,-0.674755394458771,-0.728282511234283,-0.182931825518608,-0.67364639043808,-0.716056227684021,0.00602056132629514,-0.687573432922363,-0.726089894771576,0.0493069253861904,-0.699678897857666,-0.712754011154175,0.00611047772690654,-0.683609664440155,-0.729822218418121,0.194024503231049,-0.670385539531708,-0.716196715831757,0.00600667530670762,-0.688182890415192,-0.725512385368347,-0.182952985167503,-0.674349904060364,-0.715388298034668,-0.093637228012085,-0.694895029067993,-0.7129887342453,
  801. 0.194332852959633,-0.674413919448853,-0.712320625782013,0.0061106258071959,-0.683602392673492,-0.729829072952271,0.0999318659305573,-0.672327756881714,-0.733477354049683,0.0964615345001221,-0.694685041904449,-0.712816953659058,0.00597459077835083,-0.689585864543915,-0.724179267883301,-0.0893795937299728,-0.676462948322296,-0.731032967567444,-0.116303026676178,0.642132759094238,-0.757719695568085,0.00433514453470707,0.653666198253632,-0.756770610809326,0.0395698063075542,0.668304562568665,-0.742834687232971,-0.119428627192974,0.65671306848526,-0.744623899459839,-0.179965123534203,0.645131230354309,-0.742575407028198,0.00432874308899045,0.653381109237671,-0.757016777992249,0.047513023018837,0.639205396175385,-0.767566919326782,0.00442887097597122,0.657817482948303,-0.753164350986481,0.19496351480484,0.645727097988129,-0.738258600234985,0.00431379303336143,0.652717530727386,-0.757589101791382,-0.179984569549561,0.644408941268921,-0.743197619915009,-0.0824679583311081,0.639027833938599,-0.764749944210052,0.195360943675041,0.640956521034241,-0.742299735546112,0.00442955177277327,0.657848417758942,-0.753137469291687,0.099885456264019,0.662398219108582,-0.742463111877441,0.0964422151446342,0.639564096927643,-0.762664318084717,0.00428225658833981,0.651319146156311,-0.758791983127594,-0.0783277153968811,0.658532798290253,-0.748464643955231,-0.116577744483948,-0.576211810112,-0.808943510055542,0.0083948653191328,-0.572949349880219,-0.819547772407532,0.0448039919137955,-0.554593563079834,-0.830914318561554,-0.119341894984245,-0.560829877853394,-0.819284677505493,-0.17730575799942,-0.561606585979462,-0.808183610439301,0.00839270651340485,-0.573065102100372,-0.819466888904572,0.0530088879168034,-0.58627462387085,-0.808376252651215,0.00847231596708298,-0.568832039833069,-0.822410047054291,0.198358297348022,-0.556577861309052,-0.806768298149109,0.00838011410087347,-0.573731899261475,-0.81900030374527,-0.177324518561363,-0.562367618083954,-0.807650089263916,-0.0879420712590218,-0.583272457122803,-0.807501971721649,0.198748186230659,-0.561623513698578,-0.803167581558228,
  802. 0.00847094878554344,-0.568903982639313,-0.822360336780548,0.103032857179642,-0.556648433208466,-0.824334144592285,0.0992969125509262,-0.582686901092529,-0.806607782840729,0.00834700185805559,-0.575479030609131,-0.817773938179016,-0.08379115909338,-0.562660336494446,-0.822430789470673,-0.116578243672848,-0.576209187507629,-0.808945417404175,0.0083949314430356,-0.572945952415466,-0.819550275802612,0.0448033884167671,-0.554591178894043,-0.830915927886963,-0.119340911507607,-0.560835480690002,-0.819280982017517,-0.177305907011032,-0.561612606048584,-0.808179378509521,0.00839259102940559,-0.573071241378784,-0.819462597370148,0.0530218295753002,-0.586324095726013,-0.808339476585388,0.00847121886909008,-0.568890511989594,-0.822369635105133,0.198362618684769,-0.556633293628693,-0.806728959083557,0.00838010478764772,-0.573732435703278,-0.818999946117401,-0.177324533462524,-0.562368094921112,-0.807649791240692,-0.0879420563578606,-0.583272337913513,-0.807502031326294,0.198751524090767,-0.561666786670685,-0.803136646747589,0.00847010966390371,-0.568948686122894,-0.82232940196991,0.10302671790123,-0.556692242622375,-0.824305295944214,0.0993016585707664,-0.582654595375061,-0.806630492210388,0.00834759790450335,-0.575447559356689,-0.817796051502228,-0.0837846696376801,-0.562628030776978,-0.822453558444977,-0.116297535598278,0.0714671239256859,0.990639865398407,0.0073735392652452,0.0616323985159397,0.998071789741516,0.048656240105629,0.0401279963552952,0.998009204864502,-0.119689978659153,0.0511176437139511,0.991494476795197,-0.182456240057945,0.0581850446760654,0.981490910053253,0.0073789949528873,0.0609796456992626,0.998111724853516,0.0565323010087013,0.0782053992152214,0.995333135128021,0.00740226078778505,0.0581907406449318,0.998278021812439,0.193607717752457,0.0554557628929615,0.979510545730591,0.007373898755759,0.0615896172821522,0.998074412345886,-0.182475075125694,0.0591127797961235,0.981431901454926,-0.0922376066446304,0.07626573741436,0.992812037467957,0.193950563669205,0.0612878687679768,0.979094982147217,0.00739702396094799,0.0588189102709293,0.998241245746613,
  803. 0.0975254476070404,0.0454517006874084,0.994194626808167,0.0939367488026619,0.0763146802783012,0.992648959159851,0.00734444800764322,0.0651063993573189,0.997851312160492,-0.0881925448775291,0.0512488670647144,0.994784235954285,-0.109034776687622,-0.568857192993164,-0.815176606178284,0.00853695813566446,-0.565380454063416,-0.824786186218262,0.0429291389882565,-0.547270238399506,-0.835854291915894,-0.112213596701622,-0.552379965782166,-0.826005160808563,-0.177117064595222,-0.554249048233032,-0.81328809261322,0.00853314250707626,-0.565586090087891,-0.824645102024078,0.051195252686739,-0.579323768615723,-0.813488185405731,0.00861178524792194,-0.561357140541077,-0.827528893947601,0.199840202927589,-0.549390554428101,-0.811316132545471,0.00852066371589899,-0.566254556179047,-0.824186503887177,-0.177138224244118,-0.555049896240234,-0.812737166881561,-0.0927339419722557,-0.574693024158478,-0.813098013401031,0.200133845210075,-0.553861975669861,-0.808197617530823,0.00861114822328091,-0.561390459537506,-0.827506244182587,0.0967494770884514,-0.549486935138702,-0.829881727695465,0.0933654978871346,-0.574520528316498,-0.813147604465485,0.00848833564668894,-0.567979574203491,-0.822998881340027,-0.0887802243232727,-0.554454624652863,-0.827464878559113,0.125247567892075,0.312694877386093,-0.941559851169586,0.126192629337311,0.278275430202484,-0.952175498008728,0.344484895467758,0.342878043651581,-0.873936414718628,0.128697872161865,0.298542112112045,-0.945679366588593,-0.241402596235275,0.221829801797867,-0.944730818271637,0.104682222008705,0.338693052530289,-0.935055434703827,0.344736665487289,0.341965287923813,-0.87419468164444,0.303405344486237,0.334484338760376,-0.892224967479706,0.126700237393379,0.306759208440781,-0.943316400051117,-0.230464622378349,0.198677584528923,-0.952582538127899,0.129937827587128,0.29340922832489,-0.947115182876587,-0.186572521924973,0.219705894589424,-0.957559406757355,0.0197035782039166,0.280441910028458,-0.959668755531311,0.126755386590958,0.306533247232437,-0.943382441997528,0.303494721651077,0.33408534526825,-0.892344057559967,
  804. 0.0216930620372295,0.272820025682449,-0.961820483207703,-0.184224709868431,0.206210687756538,-0.961009085178375,0.131213381886482,0.288103073835373,-0.948567271232605,0.0197584368288517,0.280232071876526,-0.959728896617889,0.303519278764725,0.333975672721863,-0.892376780509949,0.237779378890991,0.324609905481339,-0.915472209453583,-0.189027443528175,0.234003245830536,-0.953682899475098,0.0208070781081915,0.276217252016068,-0.960869967937469,-0.17759658396244,0.228382542729378,-0.957236170768738,-0.111643329262733,0.20287624001503,-0.972819209098816,0.0199158675968647,0.279629766941071,-0.959901332855225,0.237977787852287,0.32384580373764,-0.915691256523132,0.0208653081208467,0.275994151830673,-0.960932910442352,-0.191984876990318,0.222378447651863,-0.955871164798737,-0.176308616995811,0.22273775935173,-0.958802998065948,-0.190843313932419,0.219673201441765,-0.956724882125854,0.0199553798884153,0.27947860956192,-0.959944546222687,-0.12993910908699,0.246432930231094,-0.960409641265869,0.16675215959549,0.765969157218933,-0.620874524116516,-0.101665273308754,0.731475651264191,-0.674245893955231,-0.0082977032288909,0.752403616905212,-0.658650100231171,-0.00806199759244919,0.751668691635132,-0.65949159860611,-0.104306943714619,0.738514602184296,-0.666120290756226,-0.282828122377396,0.681496441364288,-0.674959897994995,-0.0143987024202943,0.771102607250214,-0.636548101902008,0.29364287853241,0.774350166320801,-0.560495972633362,0.160795316100121,0.783658564090729,-0.600020289421082,-0.266014069318771,0.69011789560318,-0.67303329706192,-0.00917239207774401,0.755123734474182,-0.655518114566803,-0.283783227205276,0.684148013591766,-0.671869456768036,0.288950055837631,0.792497754096985,-0.53708028793335,-0.0195690952241421,0.786449909210205,-0.61734414100647,0.0824432969093323,0.790061891078949,-0.607458233833313,0.0763688534498215,0.804815351963043,-0.588591575622559,-0.0179015900939703,0.781550884246826,-0.623584628105164,-0.279961258172989,0.720288693904877,-0.634669899940491,0.0846968740224838,0.784433424472809,-0.614402651786804,
  805. 0.357198923826218,0.774996995925903,-0.521333694458008,0.290385514497757,0.787127077579498,-0.544157385826111,-0.194442227482796,0.81901216506958,-0.539825439453125,0.0486829839646816,0.864668011665344,-0.499979197978973,-0.305693328380585,0.775064826011658,-0.553015530109406,0.356898754835129,0.776122570037842,-0.519862473011017,0.0858838707208633,0.781434714794159,-0.618048310279846,0.194049313664436,0.782464981079102,-0.591686904430389,-0.00943177007138729,0.999742209911346,-0.020658815279603,-0.0719681829214096,0.995116651058197,-0.067554734647274,-0.360652923583984,0.922017812728882,-0.140757203102112,0.0696030780673027,-0.273984611034393,0.959212064743042,0.286407738924026,-0.221177741885185,0.932229042053223,0.07479078322649,-0.305073261260986,0.949387490749359,-0.29520258307457,-0.339576035737991,0.89305305480957,0.0731862634420395,-0.290031522512436,0.954214692115784,0.056714229285717,-0.250305682420731,0.966504395008087,0.286717623472214,-0.22237902879715,0.931847929954529,0.0710413008928299,-0.280424207448959,0.957243621349335,0.248660624027252,-0.235628098249435,0.939493119716644,0.0742467045783997,-0.294782757759094,0.952675580978394,-0.285172253847122,-0.362906068563461,0.887116670608521,-0.234469160437584,-0.349437862634659,0.907147943973541,-0.0352220572531223,-0.307470858097076,0.950905382633209,0.248744428157806,-0.236039012670517,0.939367771148682,0.071097269654274,-0.28067484498024,0.957166135311127,-0.232448250055313,-0.361083805561066,0.903098285198212,-0.0331845171749592,-0.315849423408508,0.94822883605957,0.0754992961883545,-0.300396144390106,0.950821757316589,0.190616294741631,-0.252420693635941,0.948656558990479,0.248760312795639,-0.236116901040077,0.939343988895416,-0.0351798236370087,-0.307644933462143,0.950850665569305,-0.0340945273637772,-0.312112003564835,0.949433445930481,-0.236524343490601,-0.337314546108246,0.911194324493408,-0.231219679117203,-0.342855185270309,0.910487651824951,-0.166327893733978,-0.375733822584152,0.911679267883301,0.190627992153168,-0.252467513084412,0.948641717433929,
  806. -0.0349951945245266,-0.308405518531799,0.950611054897308,-0.240272656083107,-0.344974637031555,0.907337605953217,-0.0339766889810562,-0.312596201896667,0.949278235435486,-0.230026841163635,-0.348462909460068,0.908659160137177,-0.0348359160125256,-0.309061229228973,0.950403928756714,-0.239252269268036,-0.347583919763565,0.906611144542694,-0.184416621923447,-0.331149786710739,0.925381183624268,-0.0458031855523586,-0.994733989238739,0.0916875079274178,0.0817433223128319,-0.992708384990692,0.0885905027389526,0.115083001554012,-0.991006016731262,0.0682862550020218,-0.0478772632777691,-0.996226727962494,0.0723885148763657,-0.108326822519302,-0.991176187992096,0.0763888284564018,0.0817449763417244,-0.992710530757904,0.0885641053318977,0.121611945331097,-0.986692190170288,0.107931651175022,0.0820450931787491,-0.993101298809052,0.0837760418653488,0.27009916305542,-0.958716452121735,0.0889347791671753,0.0816925764083862,-0.992640197277069,0.0893968194723129,-0.108398959040642,-0.9910888671875,0.0774113610386848,-0.0206202417612076,-0.994938969612122,0.0983427166938782,0.270129948854446,-0.958190202713013,0.0943468511104584,0.0820428058505058,-0.993098378181458,0.0838126614689827,0.171986356377602,-0.98219507932663,0.0755877122282982,0.166791573166847,-0.980191826820374,0.1067920550704,0.0815524086356163,-0.992449045181274,0.0916193798184395,-0.0155136454850435,-0.997138440608978,0.0739881470799446,-0.177236422896385,0.320791721343994,0.930419206619263,-0.0582469776272774,0.323799580335617,0.944331049919128,-0.0190560407936573,0.306595921516418,0.951649010181427,-0.178968757390976,0.302730739116669,0.936121940612793,-0.241587579250336,0.302035868167877,0.922176659107208,-0.0582455508410931,0.323780953884125,0.944337546825409,-0.0133727621287107,0.342897325754166,0.939277708530426,-0.0578797906637192,0.318990707397461,0.945988833904266,0.134352743625641,0.326129227876663,0.935729265213013,-0.0583030506968498,0.324534922838211,0.944075226783752,-0.241656079888344,0.302884727716446,0.92188036441803,-0.151162579655647,0.329166114330292,0.932094156742096,
  807. 0.134368851780891,0.331731855869293,0.933755338191986,-0.0578894205391407,0.319116622209549,0.945945799350739,0.0357699953019619,0.313955187797546,0.948763728141785,0.0305858235806227,0.342434495687485,0.939043700695038,-0.0584543570876122,0.326520502567291,0.943380892276764,-0.146227613091469,0.307189553976059,0.940346777439117,-0.149851217865944,-0.0831398740410805,0.985206782817841,-0.0243316516280174,-0.0835488885641098,0.99620658159256,0.0107431830838323,-0.101910315454006,0.994735598564148,-0.151437342166901,-0.102814637124538,0.98310524225235,-0.213224947452545,-0.0988923460245132,0.971985399723053,-0.024311849847436,-0.0837691128253937,0.996188580989838,0.0157502479851246,-0.0630702301859856,0.997884809970856,-0.0239597875624895,-0.0876825898885727,0.995860278606415,0.159288331866264,-0.0739640519022942,0.984457492828369,-0.0243732240051031,-0.083086334168911,0.996244251728058,-0.213317260146141,-0.0979631543159485,0.97205913066864,-0.127915278077126,-0.0756700932979584,0.988894283771515,0.159210816025734,-0.0676017478108406,0.984927356243134,-0.0239929147064686,-0.0873146280646324,0.995891809463501,0.066647432744503,-0.0921278670430183,0.993514239788055,0.0606482774019241,-0.0617156028747559,0.996249437332153,-0.0246183108538389,-0.0803582444787025,0.996461987495422,-0.121616221964359,-0.101242400705814,0.987400472164154,-0.101954348385334,0.380011647939682,-0.919345676898956,0.0141195226460695,0.398785471916199,-0.916935563087463,0.0494346730411053,0.420690059661865,-0.905856549739838,-0.106557905673981,0.39717036485672,-0.911537766456604,-0.172309190034866,0.381027430295944,-0.908365368843079,0.0141580477356911,0.39825177192688,-0.917166888713837,0.0610939003527164,0.385285913944244,-0.920772671699524,0.0137470299378037,0.40393540263176,-0.914684236049652,0.203968957066536,0.410511791706085,-0.888750076293945,0.0142178665846586,0.397422671318054,-0.91752552986145,-0.172248125076294,0.380145698785782,-0.908746302127838,-0.0802818015217781,0.376509845256805,-0.922927498817444,0.204783096909523,0.40527018904686,-0.89096587896347,
  808. 0.0137331178411841,0.404127389192581,-0.914599597454071,0.108609862625599,0.418410927057266,-0.901740670204163,0.107703097164631,0.390266865491867,-0.914380550384521,0.0143129760399461,0.396103382110596,-0.918094336986542,-0.078329049050808,0.400153636932373,-0.913094520568848,0.123238414525986,-0.346631705760956,-0.929870307445526,0.131845474243164,-0.37741431593895,-0.916610717773438,0.339218646287918,-0.282332092523575,-0.89734023809433,0.126462817192078,-0.359286278486252,-0.924619138240814,-0.240910887718201,-0.418240994215012,-0.875806152820587,0.109943203628063,-0.318742573261261,-0.941443383693695,0.339313745498657,-0.282657027244568,-0.897201895713806,0.303088366985321,-0.298028260469437,-0.905161082744598,0.124662593007088,-0.352217704057693,-0.927578628063202,-0.229906260967255,-0.441288501024246,-0.86741429567337,0.12774084508419,-0.364309728145599,-0.922475337982178,-0.184477895498276,-0.42798912525177,-0.884756147861481,0.0185408238321543,-0.383765548467636,-0.923244416713715,0.124716594815254,-0.352429658174515,-0.927490770816803,0.303182721138,-0.298440128564835,-0.904993891716003,0.0197588466107845,-0.388140648603439,-0.921388328075409,-0.1821199208498,-0.440804809331894,-0.878933131694794,0.128974556922913,-0.369163066148758,-0.920371770858765,0.0185814537107944,-0.383911669254303,-0.923182964324951,0.303189635276794,-0.298470377922058,-0.90498149394989,0.238545358181,-0.319990664720535,-0.916898190975189,-0.186927750706673,-0.414357334375381,-0.890710949897766,0.0192709565162659,-0.386389076709747,-0.922134518623352,-0.174645990133286,-0.420019745826721,-0.890551745891571,-0.114230431616306,-0.451815128326416,-0.884768068790436,0.018602978438139,-0.383989036083221,-0.923150360584259,0.238618731498718,-0.320256590843201,-0.916786134243011,0.0190985947847366,-0.385769963264465,-0.922397315502167,-0.190104484558105,-0.424501150846481,-0.885245203971863,-0.173144742846489,-0.426480442285538,-0.887769877910614,-0.188917502760887,-0.427235394716263,-0.884183287620544,0.0182324033230543,-0.382656425237656,-0.923710823059082,
  809. -0.132568314671516,-0.410021096467972,-0.902390480041504,0.165947362780571,0.209156021475792,-0.963698744773865,-0.102538391947746,0.148226097226143,-0.983623325824738,-0.0125386994332075,0.17342683672905,-0.984766960144043,-0.0122762341052294,0.172200635075569,-0.984985411167145,-0.105034664273262,0.158279076218605,-0.981791973114014,-0.28883570432663,0.107014298439026,-0.95137894153595,-0.0186629146337509,0.201993182301521,-0.979209125041962,0.29383659362793,0.253093272447586,-0.92173957824707,0.160059899091721,0.234815135598183,-0.958771467208862,-0.262329250574112,0.117884047329426,-0.957750976085663,-0.0133822727948427,0.177368029952049,-0.984053611755371,-0.289793193340302,0.111046478152275,-0.950625479221344,0.289122015237808,0.281678587198257,-0.914912939071655,-0.023841455578804,0.226068839430809,-0.973819553852081,0.0802819728851318,0.235397771000862,-0.968577682971954,0.0743296965956688,0.25828355550766,-0.963205456733704,-0.0220781713724136,0.21788002550602,-0.975725829601288,-0.276545763015747,0.165803372859955,-0.946589529514313,0.0825354978442192,0.226649165153503,-0.970473110675812,0.354849249124527,0.277904331684113,-0.892665207386017,0.290575325489044,0.273057401180267,-0.91706371307373,-0.20088829100132,0.29720464348793,-0.933441758155823,0.0466841720044613,0.360525459051132,-0.931580364704132,-0.302425116300583,0.258920967578888,-0.917332530021667,0.354617834091187,0.279260039329529,-0.892334043979645,0.0837606117129326,0.221873432397842,-0.97147125005722,0.197477087378502,0.239943131804466,-0.950489401817322,-0.00834015384316444,0.767841398715973,-0.640585660934448,-0.073452390730381,0.73314893245697,-0.676089763641357,-0.366918683052063,0.627701699733734,-0.686557531356812,0.0678720995783806,0.387324303388596,0.919441819190979,0.288407057523727,0.410869836807251,0.864874184131622,0.0820321142673492,0.35826113820076,0.930010616779327,-0.29565504193306,0.294372290372849,0.908808708190918,0.0717778503894806,0.370075762271881,0.926224529743195,0.063739188015461,0.41222283244133,0.908850848674774,
  810. 0.288502752780914,0.410513937473297,0.865011274814606,0.069367840886116,0.380747884511948,0.922073304653168,0.250078111886978,0.404612809419632,0.879630267620087,0.0727844834327698,0.365590035915375,0.927925825119019,-0.285399109125137,0.272153407335281,0.918955862522125,-0.237017303705215,0.294871062040329,0.925674915313721,-0.0375883243978024,0.354060262441635,0.934466958045959,0.250160217285156,0.404224574565887,0.879785418510437,0.069428063929081,0.38048243522644,0.922178447246552,-0.234991639852524,0.283200114965439,0.929826140403748,-0.0360805578529835,0.348089635372162,0.936766684055328,0.0741026252508163,0.359691143035889,0.930124223232269,0.186184749007225,0.396506488323212,0.8989537358284,0.250174105167389,0.404158860445023,0.879811644554138,-0.0375450253486633,0.353888899087906,0.934533596038818,-0.036731418222189,0.350668042898178,0.935779333114624,-0.239085361361504,0.30696564912796,0.921200454235077,-0.235163360834122,0.302446693181992,0.923701345920563,-0.163021892309189,0.277986019849777,0.946650743484497,0.186217710375786,0.396377086639404,0.899003982543945,-0.0374639965593815,0.353568315505981,0.934658169746399,-0.241904631257057,0.29842534661293,0.923268377780914,-0.0367842689156532,0.350877523422241,0.935698628425598,-0.233808159828186,0.29600664973259,0.926128387451172,-0.0376109220087528,0.354150086641312,0.934431970119476,-0.240843564271927,0.295852035284042,0.924373269081116,-0.181830838322639,0.322503477334976,0.928939759731293,-0.0467048361897469,-0.717982947826386,0.694491982460022,0.0796341672539711,-0.718704998493195,0.690739929676056,0.111522234976292,-0.729899942874908,0.674395203590393,-0.0488911680877209,-0.73149049282074,0.680096626281738,-0.109365850687027,-0.725005328655243,0.680004715919495,0.0796148106455803,-0.718500971794128,0.690954327583313,0.118082664906979,-0.70164281129837,0.702676236629486,0.0799815133213997,-0.72236967086792,0.686866104602814,0.26799413561821,-0.692189872264862,0.670113682746887,0.0795554965734482,-0.717875480651855,0.691611051559448,-0.109436862170696,-0.724305152893066,0.680739045143127,
  811. -0.0152182634919882,-0.713318884372711,0.70067435503006,0.268012434244156,-0.688514709472656,0.673881947994232,0.0799928903579712,-0.722489714622498,0.68673849105835,0.175035983324051,-0.717647612094879,0.674050688743591,0.169945642352104,-0.696777164936066,0.696864485740662,0.0794424936175346,-0.716684341430664,0.692858159542084,-0.00996481813490391,-0.730569362640381,0.682765781879425,-0.177809238433838,0.832913517951965,0.524060070514679,-0.0567369759082794,0.843895792961121,0.533498644828796,-0.0211566556245089,0.8350470662117,0.549771547317505,-0.179808095097542,0.821825563907623,0.540621697902679,-0.243522271513939,0.81242972612381,0.529768705368042,-0.0567456930875778,0.843959033489227,0.533397853374481,-0.0154902199283242,0.855581402778625,0.517436444759369,-0.0563463866710663,0.841058850288391,0.538001000881195,0.137490332126617,0.839806497097015,0.525187075138092,-0.0568068735301495,0.844402194023132,0.532689332962036,-0.243578240275383,0.812843680381775,0.529107749462128,-0.150096982717514,0.840790331363678,0.520137012004852,0.137502729892731,0.842912077903748,0.520184814929962,-0.0563488118350506,0.841076493263245,0.537973165512085,0.0376024544239044,0.838681876659393,0.543322026729584,0.0321547277271748,0.85525518655777,0.517208695411682,-0.0569445826113224,0.845398664474487,0.531091928482056,-0.144864276051521,0.828406989574432,0.541069507598877,-0.1530901491642,0.552037358283997,0.819645166397095,-0.0224634036421776,0.558769464492798,0.829018771648407,0.0113003887236118,0.5428067445755,0.839781582355499,-0.154715001583099,0.535251080989838,0.83040326833725,-0.214587062597275,0.531218349933624,0.819609344005585,-0.0224488526582718,0.558635771274567,0.829109251499176,0.0166721902787685,0.575948297977448,0.817316114902496,-0.0220821145921946,0.555261492729187,0.831382632255554,0.16183066368103,0.558647036552429,0.813464522361755,-0.0225117690861225,0.559214055538177,0.828717589378357,-0.214665308594704,0.531899094581604,0.819147229194641,-0.129176899790764,0.559810042381287,0.818490087985992,0.161735028028488,0.563677430152893,0.810005903244019,
  812. -0.0221117213368416,0.555534064769745,0.831199705600739,0.0634030252695084,0.549764215946198,0.832910180091858,0.0573853217065334,0.575232267379761,0.815974771976471,-0.0227495860308409,0.561398208141327,0.827233076095581,-0.122863970696926,0.538906872272491,0.833356976509094,-0.103797756135464,-0.279834866523743,-0.954420506954193,0.0186169296503067,-0.262705385684967,-0.96469646692276,0.0491758920252323,-0.239439934492111,-0.969664990901947,-0.108521193265915,-0.261299639940262,-0.959137976169586,-0.169955104589462,-0.271595895290375,-0.947286069393158,0.0186401102691889,-0.263032168149948,-0.964607000350952,0.0606106035411358,-0.275989919900894,-0.959247589111328,0.018262593075633,-0.257705897092819,-0.966050803661346,0.200797557830811,-0.236971288919449,-0.950539410114288,0.018697751685977,-0.263845473527908,-0.964383721351624,-0.169894710183144,-0.272502213716507,-0.947036623954773,-0.0801486149430275,-0.284246653318405,-0.955395221710205,0.201615825295448,-0.242465063929558,-0.948979318141937,0.0182600244879723,-0.257669866085052,-0.9660604596138,0.107244558632374,-0.238507002592087,-0.965201020240784,0.106390327215195,-0.268048346042633,-0.957513034343719,0.0188241023570299,-0.2656289935112,-0.963891565799713,-0.0782074704766274,-0.259711861610413,-0.962514102458954,0.0445478819310665,0.34090319275856,0.939042329788208,-0.13747638463974,0.292424857616425,0.946355104446411,-0.0662909895181656,0.317130744457245,0.94606214761734,-0.136481821537018,0.289577662944794,0.947374105453491,0.0458249114453793,0.336221933364868,0.940667271614075,-0.141710698604584,0.287244111299515,0.947316706180573,-0.0653029382228851,0.314293414354324,0.94707727432251,0.258881568908691,0.401522904634476,0.878498554229736,0.0391411110758781,0.360577374696732,0.931907713413239,0.044869564473629,0.339725226163864,0.939453840255737,-0.170166030526161,0.283585458993912,0.943728148937225,-0.143636092543602,0.295726805925369,0.944412171840668,0.259108275175095,0.400735676288605,0.878791093826294,0.142022222280502,0.372086375951767,0.917268455028534,
  813. 0.0392695441842079,0.360112726688385,0.932081937789917,-0.16573828458786,0.266988545656204,0.9493408203125,0.0491301976144314,0.324044108390808,0.944765388965607,0.140150815248489,0.37738960981369,0.915387809276581,0.141043081879616,0.374864548444748,0.916287958621979,0.258307814598084,0.403510838747025,0.877756297588348,0.299280762672424,0.410246789455414,0.861468851566315,0.14290089905262,0.369587004184723,0.918142020702362,-0.186251118779182,0.254927337169647,0.948853313922882,-0.167111247777939,0.27212256193161,0.947640836238861,0.343271136283875,0.420833468437195,0.839680969715118,0.141681760549545,0.373053193092346,0.916928350925446,0.299727886915207,0.408850789070129,0.86197692155838,-0.199582919478416,0.275357156991959,0.940396249294281,0.141225203871727,0.374348312616348,0.91647082567215,0.118912898004055,0.420841604471207,0.899306416511536,0.161753192543983,0.336088806390762,0.927836418151855,0.141929551959038,0.372349619865417,0.917175948619843,0.346895337104797,0.411970794200897,0.842581570148468,0.842357456684113,-0.0842422693967819,0.532294273376465,0.642326414585114,-0.209129050374031,0.737347841262817,0.544087588787079,-0.295954346656799,0.785098552703857,0.645356476306915,-0.234271422028542,0.727070808410645,0.215226337313652,-0.373485326766968,0.902322769165039,0.520106673240662,-0.226682841777802,0.823470652103424,0.858643531799316,-0.217731297016144,0.464030593633652,0.96783435344696,-0.0762887597084045,0.239743366837502,0.652402460575104,-0.326609015464783,0.68388420343399,0.146327123045921,-0.310358285903931,0.939290225505829,0.189942628145218,-0.292729258537292,0.937140107154846,0.633633136749268,-0.151280358433723,0.758698463439941,0.621173799037933,-0.0866973027586937,0.778862416744232,0.948668420314789,0.127562120556831,0.289406538009644,0.556215941905975,-0.334953337907791,0.760545909404755,0.646158933639526,-0.24166102707386,0.72393274307251,0.503617584705353,-0.183378398418427,0.844240307807922,0.162389889359474,-0.355512917041779,0.92045646905899,0.888487279415131,-0.0241807270795107,0.458263754844666,
  814. 0.55200982093811,-0.321048438549042,0.769553959369659,0.958088934421539,0.0725222155451775,0.277139127254486,0.530664324760437,-0.256113350391388,0.807961344718933,0.161668166518211,-0.427497923374176,0.889443039894104,0.185362741351128,-0.420584112405777,0.888115763664246,0.590305328369141,-0.473980605602264,0.653362095355988,0.920605659484863,-0.164580941200256,0.354116201400757,0.686657965183258,-0.426812648773193,0.58849960565567,0.258750319480896,-0.594425678253174,0.761384546756744,0.585025310516357,-0.447507530450821,0.676374435424805,0.661041855812073,-0.350468039512634,0.663472592830658,-0.109686337411404,-0.571282982826233,0.813390851020813,0.00915607158094645,-0.581410527229309,0.81355881690979,0.0423376746475697,-0.597807943820953,0.800520539283752,-0.112616434693336,-0.58654397726059,0.802049696445465,-0.178376242518425,-0.574233293533325,0.79902321100235,0.00915751978754997,-0.581502556800842,0.813493072986603,0.0506227649748325,-0.565740764141083,0.823027908802032,0.00921036582440138,-0.584858238697052,0.811083257198334,0.197216421365738,-0.574590444564819,0.794324517250061,0.00914822332561016,-0.580912172794342,0.813914835453033,-0.17839615046978,-0.573465883731842,0.799569725990295,-0.0857489183545113,-0.566842019557953,0.819351732730865,0.197603195905685,-0.569536805152893,0.797860145568848,0.00920677743852139,-0.584630310535431,0.811247587203979,0.101107746362686,-0.59194278717041,0.799612998962402,0.0970554500818253,-0.565650880336761,0.818913519382477,0.0091137858107686,-0.578725397586823,0.815471529960632,-0.0819439962506294,-0.586820423603058,0.805560171604156,-0.119906671345234,0.966682910919189,0.22615647315979,0.0113893253728747,0.971303820610046,0.237569332122803,0.0434997566044331,0.965204417705536,0.257853448390961,-0.12298247218132,0.961717486381531,0.244897946715355,-0.181322440505028,0.954642057418823,0.236179500818253,0.0113882925361395,0.971322536468506,0.237492695450783,0.0516769923269749,0.974116444587708,0.220060452818871,0.0114505821838975,0.970205962657928,0.242010906338692,0.19746096432209,0.950902760028839,0.238313600420952,
  815. 0.011378507129848,0.971495568752289,0.236784428358078,-0.181340560317039,0.954854607582092,0.235304564237595,-0.0939442962408066,0.970387160778046,0.222538650035858,0.197774782776833,0.95218950510025,0.232852503657341,0.0114479130133986,0.970253944396973,0.241818532347679,0.102646566927433,0.96246349811554,0.2512526512146,0.0992483422160149,0.96996009349823,0.222097173333168,0.011348626576364,0.972018957138062,0.234628021717072,-0.0898604020476341,0.964768469333649,0.247279062867165,-0.119851894676685,0.225824519991875,-0.966767191886902,0.0113846128806472,0.237228393554688,-0.971387207508087,0.0435710586607456,0.257527023553848,-0.96528834104538,-0.12295201420784,0.244711384177208,-0.961768865585327,-0.181326448917389,0.235987320542336,-0.954688906669617,0.0113855926319957,0.237297400832176,-0.971370339393616,0.0517566613852978,0.219688683748245,-0.974196135997772,0.0114451479166746,0.24161671102047,-0.970304250717163,0.197483479976654,0.237924978137016,-0.950995266437531,0.0113754570484161,0.236563861370087,-0.971549451351166,-0.181345000863075,0.235088601708412,-0.95490700006485,-0.0939790531992912,0.222325697541237,-0.97043251991272,0.197798654437065,0.232432410120964,-0.952287197113037,0.0114419646561146,0.241387099027634,-0.970361471176147,0.102598085999489,0.250832676887512,-0.962578117847443,0.099186010658741,0.221567720174789,-0.970087587833405,0.0113412411883473,0.234094753861427,-0.972147643566132,-0.0899474248290062,0.246757283806801,-0.964893937110901,-0.117093808948994,0.984820544719696,0.128130853176117,0.00997854769229889,0.990315079689026,0.138479337096214,0.0396659038960934,0.986574232578278,0.158423826098442,-0.12020181119442,0.981734812259674,0.147473096847534,-0.180281162261963,0.973746001720428,0.138987943530083,0.00997856631875038,0.990315139293671,0.138478860259056,0.0477025434374809,0.991582930088043,0.120365232229233,0.0100512858480215,0.989605665206909,0.143455728888512,0.191261515021324,0.971291363239288,0.141464307904243,0.00996680185198784,0.990427255630493,0.137675344944,-0.180296421051025,0.973866641521454,0.13811956346035,
  816. -0.0842929854989052,0.988934457302094,0.122080124914646,0.191601619124413,0.972050905227661,0.135668158531189,0.0100487293675542,0.989630997180939,0.143281906843185,0.0975833460688591,0.983250081539154,0.153937488794327,0.0941028445959091,0.987853765487671,0.123651303350925,0.00993241090327501,0.990750551223755,0.135332629084587,-0.0801253542304039,0.985829889774323,0.1473748087883,-0.114725708961487,0.366722345352173,-0.923229515552521,0.013237914070487,0.377687305212021,-0.925838589668274,0.0476690419018269,0.397702246904373,-0.916275501251221,-0.117784321308136,0.384572565555573,-0.915549576282501,-0.181033298373222,0.37389275431633,-0.909632444381714,0.0132416253909469,0.377981394529343,-0.925718486309052,0.0559897273778915,0.36133348941803,-0.930754125118256,0.0132869379594922,0.381608128547668,-0.924228727817535,0.195981279015541,0.375705599784851,-0.905779600143433,0.0132334427908063,0.37732806801796,-0.925985097885132,-0.181044563651085,0.37317630648613,-0.909924328327179,-0.0829336047172546,0.361421078443527,-0.928707182407379,0.196364790201187,0.369984447956085,-0.908048689365387,0.0132823288440704,0.381240725517273,-0.924380362033844,0.10328946262598,0.390678972005844,-0.914713859558105,0.099395178258419,0.361112356185913,-0.9272101521492,0.0131999179720879,0.374660462141037,-0.927068114280701,-0.078889437019825,0.38481816649437,-0.919614851474762,-0.11472550034523,0.366721123456955,-0.923230051994324,0.0132379177957773,0.377687633037567,-0.92583841085434,0.0476694330573082,0.397700577974319,-0.916276216506958,-0.117781475186348,0.384555965662003,-0.915556788444519,-0.181033536791801,0.373877495527267,-0.909638643264771,0.0132414307445288,0.377965837717056,-0.925724864006042,0.05600381270051,0.361271142959595,-0.930777609348297,0.0132860718294978,0.381538808345795,-0.924257338047028,0.195985838770866,0.375638335943222,-0.905806481838226,0.013233307749033,0.377317309379578,-0.925989508628845,-0.181044727563858,0.373165816068649,-0.909928619861603,-0.0829349160194397,0.361413359642029,-0.928709983825684,0.196367904543877,0.36993744969368,-0.908067166805267,
  817. 0.0132817290723324,0.381192684173584,-0.924400329589844,0.103283382952213,0.390632450580597,-0.914734423160553,0.0993994325399399,0.361144542694092,-0.92719703912735,0.0132003277540207,0.374693036079407,-0.927054941654205,-0.0788838863372803,0.384849905967712,-0.919602036476135,-0.115073829889297,-0.793670058250427,0.59736579656601,0.0126743512228131,-0.804821312427521,0.593381881713867,0.0499882213771343,-0.816849172115326,0.574681282043457,-0.118390314280987,-0.805317401885986,0.580902397632599,-0.182259619235992,-0.792929112911224,0.581416249275208,0.0126796057447791,-0.805154979228973,0.592928946018219,0.0581119693815708,-0.793590009212494,0.605671405792236,0.0127084776759148,-0.80698835849762,0.590430617332459,0.189308598637581,-0.793160259723663,0.578843057155609,0.012673607096076,-0.804774045944214,0.593445956707001,-0.182281106710434,-0.792346954345703,0.582202672958374,-0.0918887928128242,-0.792600035667419,0.602778255939484,0.189627781510353,-0.789756119251251,0.583375215530396,0.0127033432945609,-0.806662261486053,0.590876340866089,0.0929537639021873,-0.811089932918549,0.577488481998444,0.0893932431936264,-0.793109357357025,0.602483510971069,0.0126423509791493,-0.802789270877838,0.596128821372986,-0.0878654643893242,-0.807784378528595,0.582892894744873,-0.109033107757568,0.376192390918732,-0.920103847980499,0.0133443083614111,0.386204242706299,-0.922316789627075,0.0457780696451664,0.405832886695862,-0.912800133228302,-0.112146906554699,0.394052684307098,-0.912220120429993,-0.180895209312439,0.382164776325226,-0.906215786933899,0.0133466245606542,0.38638824224472,-0.922239661216736,0.0541644431650639,0.369394898414612,-0.927692651748657,0.0133910151198506,0.389965295791626,-0.920732200145721,0.1983962059021,0.383603453636169,-0.901935338973999,0.013338596560061,0.38574293255806,-0.922509849071503,-0.180908396840096,0.381412208080292,-0.906530261039734,-0.0887387618422508,0.370169460773468,-0.924716174602509,0.198719725012779,0.378337115049362,-0.904085993766785,0.0133869210258126,0.389636904001236,-0.920871257781982,
  818. 0.0933000892400742,0.399812936782837,-0.911835908889771,0.0897493809461594,0.371562451124191,-0.924059748649597,0.0133057655766606,0.383112996816635,-0.923605620861053,-0.0844865217804909,0.394137561321259,-0.91515988111496,0.121142193675041,0.126502573490143,-0.984541356563568,0.124583601951599,0.0924783200025558,-0.987890124320984,0.332488656044006,0.176284402608871,-0.926485359668732,0.125061988830566,0.11240491271019,-0.985760927200317,-0.241263329982758,0.0226533208042383,-0.970195233821869,0.101541556417942,0.152212202548981,-0.983117878437042,0.332631230354309,0.175828635692596,-0.926520764827728,0.293639212846756,0.163748845458031,-0.941786766052246,0.122829683125019,0.12044832110405,-0.985091388225555,-0.229591369628906,-0.00086903793271631,-0.973286747932434,0.126534000039101,0.107079304754734,-0.986165881156921,-0.189369037747383,0.0193922128528357,-0.981714487075806,0.0154704814776778,0.0859305262565613,-0.996181011199951,0.122893832623959,0.120217725634575,-0.985111594200134,0.293750762939453,0.163311630487442,-0.941827893257141,0.0171946734189987,0.0801508724689484,-0.996634423732758,-0.186485126614571,0.00574233941733837,-0.982441008090973,0.128009602427483,0.101723298430443,-0.986542522907257,0.0155226280912757,0.0857557877898216,-0.996195256710052,0.293766289949417,0.163250833749771,-0.94183361530304,0.229242250323296,0.146951094269753,-0.962212741374969,-0.192379176616669,0.0338258109986782,-0.980737507343292,0.0164690967649221,0.0825836509466171,-0.996448040008545,-0.178633823990822,0.0291370376944542,-0.983484208583832,-0.113570407032967,0.00273127248510718,-0.993526220321655,0.0156006291508675,0.0854944959282875,-0.996216595172882,0.229444459080696,0.146263852715492,-0.962269365787506,0.0163618177175522,0.0829434543848038,-0.9964200258255,-0.193071186542511,0.0225482992827892,-0.980925619602203,-0.177004978060722,0.0228720307350159,-0.983944177627563,-0.191720396280289,0.0195939410477877,-0.981253981590271,0.015342503786087,0.0863596871495247,-0.996145904064178,-0.13350285589695,0.0468605421483517,-0.98993992805481,
  819. 0.143565267324448,0.635913670063019,-0.758289396762848,-0.124179475009441,0.580151617527008,-0.804986655712128,-0.0317128635942936,0.607792913913727,-0.793462097644806,-0.0312290918081999,0.606212317943573,-0.794689476490021,-0.127334535121918,0.588971614837646,-0.798059105873108,-0.303636491298676,0.523920893669128,-0.795809030532837,-0.0387523360550404,0.630548655986786,-0.775181710720062,0.267243057489395,0.660536348819733,-0.70162159204483,0.13685442507267,0.656284511089325,-0.741998314857483,-0.285429328680038,0.534180283546448,-0.795727074146271,-0.0325254686176777,0.610442936420441,-0.791392266750336,-0.304733663797379,0.527143061161041,-0.793257713317871,0.261625528335571,0.682447791099548,-0.682507932186127,-0.0446916595101357,0.649391412734985,-0.759140074253082,0.0538945086300373,0.657554984092712,-0.751476466655731,0.0469869449734688,0.675724565982819,-0.735655188560486,-0.0423623695969582,0.64204078912735,-0.765499353408813,-0.301414161920547,0.571209907531738,-0.763458549976349,0.0564275830984116,0.650765657424927,-0.757178962230682,0.329745352268219,0.671367824077606,-0.663726806640625,0.26335620880127,0.675855159759521,-0.688377320766449,-0.228938356041908,0.684889793395996,-0.691746473312378,0.0162910129874945,0.750504553318024,-0.660664439201355,-0.330127567052841,0.638693511486053,-0.695044159889221,0.329458564519882,0.672467052936554,-0.6627556681633,0.0578300431370735,0.646977305412292,-0.760313153266907,0.169843330979347,0.657938301563263,-0.73366916179657,-0.0486595779657364,0.975273966789246,-0.215575888752937,-0.112608715891838,0.958377420902252,-0.262358546257019,-0.401216268539429,0.858249604701996,-0.320051670074463,0.0762727484107018,-0.0756899565458298,0.994210004806519,0.288008391857147,-0.0225970428436995,0.957361340522766,0.0821858644485474,-0.109711810946465,0.990559935569763,-0.28762298822403,-0.168330013751984,0.942835092544556,0.0808888971805573,-0.0938522294163704,0.992294788360596,0.0606396570801735,-0.0507219731807709,0.996870160102844,0.288142025470734,-0.0230506844818592,0.957310318946838,
  820. 0.0780300870537758,-0.0825948417186737,0.993523716926575,0.25304052233696,-0.0357407703995705,0.966795265674591,0.0820788964629173,-0.0985472649335861,0.99174165725708,-0.276381582021713,-0.192290097475052,0.9416144490242,-0.232161700725555,-0.174347028136253,0.956924378871918,-0.03337786719203,-0.117219977080822,0.992545008659363,0.25314524769783,-0.0361852720379829,0.966751337051392,0.0781011059880257,-0.0828741043806076,0.993494987487793,-0.229600638151169,-0.186936765909195,0.955163955688477,-0.0313375629484653,-0.124562203884125,0.991716802120209,0.0836449339985847,-0.104734115302563,0.990976452827454,0.188049674034119,-0.0547983460128307,0.980629622936249,0.2531678378582,-0.0362810790538788,0.966741919517517,-0.0333196967840195,-0.117429479956627,0.992522120475769,-0.0322290621697903,-0.121355764567852,0.992085695266724,-0.234798207879066,-0.161149427294731,0.95859307050705,-0.229042828083038,-0.166555538773537,0.959061443805695,-0.156500041484833,-0.194014519453049,0.968434870243073,0.188111275434494,-0.0550177246332169,0.98060554265976,-0.0331679172813892,-0.117976158857346,0.992462456226349,-0.236760079860687,-0.170641422271729,0.956465482711792,-0.0322021283209324,-0.121452696621418,0.992074728012085,-0.227455198764801,-0.173135980963707,0.958273470401764,-0.0331857688724995,-0.117911897599697,0.992469489574432,-0.235667750239372,-0.173228189349175,0.956270217895508,-0.175978288054466,-0.149096682667732,0.973037421703339,-0.00326344417408109,-0.958456695079803,0.285219371318817,0.117288671433926,-0.952237725257874,0.281933784484863,0.150666669011116,-0.953199088573456,0.262128293514252,-0.00525032822042704,-0.963910400867462,0.26617506146431,-0.071406215429306,-0.960319817066193,0.269605278968811,0.117275521159172,-0.952189683914185,0.282101601362228,0.156761333346367,-0.940877735614777,0.300291508436203,0.117672756314278,-0.953635394573212,0.277006685733795,0.30391937494278,-0.911945998668671,0.275658398866653,0.117209494113922,-0.951947927474976,0.28294363617897,-0.0714800134301186,-0.960059940814972,0.270510137081146,
  821. 0.0231902338564396,-0.955616414546967,0.293699711561203,0.303906798362732,-0.910273432731628,0.281145662069321,0.117679119110107,-0.953658401966095,0.276924669742584,0.208410456776619,-0.940846920013428,0.26715561747551,0.202989414334297,-0.933026731014252,0.297080159187317,0.117062911391258,-0.951409876346588,0.284808248281479,0.028914101421833,-0.962605893611908,0.269358336925507,-0.201549634337425,0.48983445763588,0.848198056221008,-0.081150695681572,0.500035285949707,0.862194418907166,-0.0444600284099579,0.486716896295547,0.872427761554718,-0.202674001455307,0.472966879606247,0.857452988624573,-0.263195306062698,0.466695576906204,0.844347953796387,-0.081165224313736,0.500151216983795,0.862125813961029,-0.0399079322814941,0.520600616931915,0.852867126464844,-0.0805714800953865,0.495422810316086,0.864907205104828,0.117684498429298,0.508598208427429,0.852923452854156,-0.0812549218535423,0.500865936279297,0.861702382564545,-0.263300210237503,0.467499047517776,0.843870639801025,-0.173567324876785,0.498759359121323,0.849184155464172,0.117489993572235,0.513575673103333,0.849962413311005,-0.0805751159787178,0.495451629161835,0.864890336990356,0.0172940213233233,0.494880646467209,0.868788838386536,0.0106101594865322,0.521792590618134,0.853006541728973,-0.0814539343118668,0.502451479434967,0.860759973526001,-0.167858332395554,0.479085206985474,0.861568868160248,-0.154621988534927,0.105936005711555,0.982277870178223,-0.0309661962091923,0.112673126161098,0.99314957857132,0.00905754137784243,0.0951041355729103,0.995426118373871,-0.155378133058548,0.0863839834928513,0.984070956707001,-0.219289869070053,0.0851101726293564,0.971940457820892,-0.0309735853224993,0.112728856503963,0.993142902851105,0.0128717124462128,0.135153040289879,0.99074113368988,-0.030357101932168,0.108096316456795,0.993676841259003,0.152739450335503,0.127153739333153,0.980052351951599,-0.0310723856091499,0.113471485674381,0.99305534362793,-0.219406113028526,0.085955947637558,0.971839785575867,-0.132783427834511,0.114954680204391,0.984456181526184,0.152409806847572,0.133494272828102,0.979260206222534,
  822. -0.0303810983896255,0.108276426792145,0.993656575679779,0.0564660653471947,0.106491535902023,0.99270898103714,0.0494853220880032,0.13600093126297,0.989472031593323,-0.0313724167644978,0.115726679563522,0.992785632610321,-0.125438466668129,0.089775063097477,0.988031208515167,-0.113505601882935,0.186571374535561,-0.975862503051758,0.00918581336736679,0.211675137281418,-0.977296888828278,0.0370048843324184,0.23482272028923,-0.971333682537079,-0.118769980967045,0.204590857028961,-0.971615314483643,-0.182882130146027,0.187541946768761,-0.965081393718719,0.00922411028295755,0.211327254772186,-0.97737181186676,0.0497194230556488,0.198402360081673,-0.978858768939972,0.00862665008753538,0.216753214597702,-0.9761883020401,0.193538665771484,0.235691785812378,-0.952361345291138,0.00931485928595066,0.210502251982689,-0.977549016475677,-0.182794079184532,0.186745271086693,-0.965252578258514,-0.0825612246990204,0.184802070260048,-0.979301691055298,0.194598644971848,0.230063155293465,-0.953521013259888,0.00862134154886007,0.216801226139069,-0.97617769241333,0.0958301350474358,0.237701624631882,-0.966599464416504,0.0960123166441917,0.206763714551926,-0.97366863489151,0.00950917322188616,0.208734586834908,-0.977926194667816,-0.0817515328526497,0.209166347980499,-0.97445684671402,0.0403898730874062,0.721880257129669,0.690838396549225,-0.133550778031349,0.684126436710358,0.717032194137573,-0.0644485577940941,0.705124258995056,0.7061488032341,-0.132576137781143,0.682078421115875,0.719161033630371,0.0416623651981354,0.718361079692841,0.694421887397766,-0.146900534629822,0.677289843559265,0.720901310443878,-0.0640586167573929,0.704286813735962,0.707019507884979,0.260966747999191,0.750392079353333,0.607295751571655,0.0346540883183479,0.73746645450592,0.674494206905365,0.0405864603817463,0.721338033676147,0.69139301776886,-0.170416310429573,0.673887550830841,0.718911588191986,-0.148879140615463,0.683858036994934,0.714264094829559,0.261224269866943,0.749745309352875,0.607983529567719,0.139058440923691,0.741214871406555,0.656706392765045,0.0347472541034222,0.737216830253601,0.67476212978363,
  823. -0.165880486369133,0.661128997802734,0.731704950332642,0.0451232045888901,0.708676218986511,0.704089403152466,0.137828677892685,0.743811845779419,0.654023885726929,0.138105437159538,0.743228793144226,0.654628038406372,0.260432422161102,0.751729965209961,0.605868816375732,0.303256988525391,0.750479280948639,0.587210416793823,0.140355691313744,0.738457977771759,0.659530222415924,-0.189685374498367,0.648293495178223,0.737383902072906,-0.167318776249886,0.665181934833527,0.727693200111389,0.338675528764725,0.750484883785248,0.567513287067413,0.138724476099014,0.741921782493591,0.655978441238403,0.30371767282486,0.749431967735291,0.588308870792389,-0.203029945492744,0.662839829921722,0.720709502696991,0.138787776231766,0.741787791252136,0.656116485595703,0.119885750114918,0.776326298713684,0.618825435638428,0.161629498004913,0.714306175708771,0.680913090705872,0.138844430446625,0.741668045520782,0.656239926815033,0.342340439558029,0.7437624335289,0.574125826358795,0.84247750043869,0.160741448402405,0.514192402362823,0.638826668262482,0.14030148088932,0.756449580192566,0.548060953617096,0.0850831642746925,0.832099795341492,0.641779065132141,0.114315256476402,0.758321583271027,0.211267560720444,0.0656184330582619,0.975223183631897,0.523676335811615,0.165077641606331,0.835770726203918,0.858419299125671,0.0122687527909875,0.512801885604858,0.967904448509216,0.0381807312369347,0.248401701450348,0.649165570735931,0.0096343019977212,0.760586142539978,0.145730778574944,0.14008717238903,0.979355990886688,0.185793578624725,0.153493598103523,0.970525860786438,0.629889070987701,0.202631771564484,0.749786734580994,0.617714643478394,0.267545461654663,0.739491760730743,0.948645830154419,0.242856040596962,0.202711760997772,0.553696572780609,0.0440535135567188,0.831552386283875,0.64253956079483,0.106896534562111,0.758759558200836,0.504337131977081,0.208509489893913,0.837954580783844,0.161823973059654,0.0903889089822769,0.98267138004303,0.888324439525604,0.181545779109001,0.421806573867798,0.550006926059723,0.0585872940719128,0.833102583885193,
  824. 0.958027422428131,0.188521966338158,0.215969800949097,0.530782878398895,0.127406477928162,0.837876558303833,0.161188051104546,0.0124463979154825,0.986845254898071,0.18438409268856,0.0178436972200871,0.982692301273346,0.58831912279129,-0.132800593972206,0.797649443149567,0.920524954795837,0.0111529463902116,0.390524476766586,0.686107695102692,-0.121523916721344,0.717278301715851,0.257684379816055,-0.194233044981956,0.946505308151245,0.583710372447968,-0.102296784520149,0.805492103099823,0.659645855426788,-0.0177764594554901,0.751366317272186,-0.112695775926113,-0.149129495024681,0.982374727725983,0.0102736940607429,-0.158745616674423,0.987266063690186,0.0430723652243614,-0.17948779463768,0.982816815376282,-0.11574849486351,-0.168194591999054,0.978934586048126,-0.179893240332603,-0.158862009644508,0.970773577690125,0.0102726258337498,-0.158670082688332,0.98727822303772,0.051358912140131,-0.140744999051094,0.988712966442108,0.0103382458910346,-0.16321212053299,0.986536860466003,0.19753985106945,-0.16131579875946,0.9669309258461,0.010261669754982,-0.157913208007813,0.987399697303772,-0.179912969470024,-0.15793539583683,0.970921099185944,-0.089705266058445,-0.143595308065414,0.985562443733215,0.197930902242661,-0.1551883071661,0.967853248119354,0.010335941798985,-0.163053795695305,0.986563146114349,0.102003782987595,-0.173867970705032,0.979471862316132,0.0981838405132294,-0.142586752772331,0.98490047454834,0.0102273048833013,-0.155545756220818,0.98777574300766,-0.0858074575662613,-0.167936474084854,0.982056319713593,-0.116948582231998,0.966743767261505,-0.227441683411598,0.00422728108242154,0.975629687309265,-0.2193833142519,0.0431815534830093,0.979186594486237,-0.198315277695656,-0.120253883302212,0.970749378204346,-0.20780922472477,-0.182564437389374,0.959846019744873,-0.21299259364605,0.00421819742769003,0.975512564182281,-0.219903215765953,0.05147560313344,0.970289885997772,-0.236406460404396,0.00431751366704702,0.976775169372559,-0.214223399758339,0.197899714112282,0.957528948783875,-0.209699809551239,0.00420403946191072,0.975330114364624,-0.220711410045624,
  825. -0.182587638497353,0.959626913070679,-0.213957697153091,-0.0875561013817787,0.968441247940063,-0.233357459306717,0.198177114129066,0.95632266998291,-0.214878603816032,0.00431914441287518,0.97679591178894,-0.214129135012627,0.0982531681656837,0.9742271900177,-0.203046128153801,0.0950035378336906,0.96808934211731,-0.23189951479435,0.00417794380337,0.97499281167984,-0.222197100520134,-0.0835385099053383,0.974358916282654,-0.208916410803795,-0.116887934505939,-0.227798387408257,-0.966667115688324,0.00422087917104363,-0.219748675823212,-0.97554737329483,0.0432581529021263,-0.198667049407959,-0.979111909866333,-0.120223425328732,-0.207992032170296,-0.970714092254639,-0.182568937540054,-0.213179051876068,-0.959803760051727,0.00421488005667925,-0.220092535018921,-0.975469887256622,0.0515531674027443,-0.236762702465057,-0.970198810100555,0.00431079184636474,-0.21460810303688,-0.976690828800201,0.197920083999634,-0.210076928138733,-0.957442045211792,0.00420024991035461,-0.220927581191063,-0.975281178951263,-0.182592734694481,-0.214169561862946,-0.959578812122345,-0.0875900015234947,-0.233564555644989,-0.968388140201569,0.198198959231377,-0.215290516614914,-0.956225454807281,0.00431169290095568,-0.214555531740189,-0.976702392101288,0.0982067659497261,-0.203464895486832,-0.974144458770752,0.0949442237615585,-0.23241750895977,-0.967970907688141,0.00416879262775183,-0.222718715667725,-0.974873840808868,-0.0836227238178253,-0.209426730871201,-0.974242210388184,-0.114189356565475,0.9395831823349,-0.322713822126389,0.00248445500619709,0.948579967021942,-0.316527873277664,0.0392574854195118,0.953976154327393,-0.297302097082138,-0.117140837013721,0.945281326770782,-0.304501563310623,-0.181549102067947,0.933724761009216,-0.308541804552078,0.00247720279730856,0.948447704315186,-0.316923916339874,0.0470559857785702,0.941723167896271,-0.33308133482933,0.00258248439058661,0.95034646987915,-0.311183393001556,0.194761946797371,0.932274341583252,-0.304848074913025,0.00246173795312643,0.948166131973267,-0.317765533924103,-0.181571692228317,0.933403611183167,-0.309498697519302,
  826. -0.0834569185972214,0.93994402885437,-0.330968856811523,0.195114091038704,0.93034839630127,-0.310455471277237,0.00258370116353035,0.950368463993073,-0.311115980148315,0.096783310174942,0.949235618114471,-0.299307405948639,0.0932602062821388,0.939833998680115,-0.328655779361725,0.0024313167668879,0.947611212730408,-0.319417089223862,-0.079168863594532,0.948559582233429,-0.306540429592133,-0.114934086799622,-0.0818429663777351,-0.989995896816254,0.00669069588184357,-0.0737681612372398,-0.997253000736237,0.0435310043394566,-0.0521139539778233,-0.997691929340363,-0.117758229374886,-0.0631521567702293,-0.991032302379608,-0.182678177952766,-0.0696557760238647,-0.98070216178894,0.00668684113770723,-0.0740057975053787,-0.997235417366028,0.0519906431436539,-0.0914456248283386,-0.994452059268951,0.00677495123818517,-0.0685992315411568,-0.997621297836304,0.194762945175171,-0.0664237439632416,-0.978598654270172,0.00667323591187596,-0.0748390555381775,-0.997173309326172,-0.182694047689438,-0.0705262050032616,-0.980637013912201,-0.0863638371229172,-0.0887999162077904,-0.992298364639282,0.195167019963264,-0.0726978704333305,-0.978072106838226,0.00677457917481661,-0.0686209872364998,-0.997619807720184,0.104760490357876,-0.0574738904833794,-0.992835342884064,0.10102192312479,-0.0889209806919098,-0.990902423858643,0.00664109643548727,-0.0768026486039162,-0.997024178504944,-0.0823341608047485,-0.0638452470302582,-0.994557619094849,-0.114934243261814,-0.0818419381976128,-0.989995956420898,0.006690738722682,-0.0737655311822891,-0.997253179550171,0.0435309149324894,-0.0521135330200195,-0.997692048549652,-0.117756567895412,-0.0631631389260292,-0.99103170633316,-0.182678356766701,-0.0696651041507721,-0.980701506137848,0.00668668560683727,-0.0740152969956398,-0.997234702110291,0.0520037785172462,-0.0915069133043289,-0.994445621967316,0.00677380431443453,-0.0686696618795395,-0.997616469860077,0.194767326116562,-0.0664911940693855,-0.978593170642853,0.00667315581813455,-0.0748439729213715,-0.997172951698303,-0.182694137096405,-0.0705309882760048,-0.980636656284332,
  827. -0.0863641649484634,-0.0888019874691963,-0.992298066616058,0.195170059800148,-0.0727460756897926,-0.978067815303802,0.00677376240491867,-0.0686711221933365,-0.997616350650787,0.104754716157913,-0.0575232245028019,-0.992833077907562,0.10102567076683,-0.08888990432024,-0.990904867649078,0.00664161052554846,-0.0767712146043777,-0.99702662229538,-0.0823291912674904,-0.063814640045166,-0.99456000328064,-0.118277572095394,-0.444594472646713,0.887888610363007,0.0141971679404378,-0.456788092851639,0.889462232589722,0.0439663045108318,-0.474631786346436,0.879085659980774,-0.12150789052248,-0.462127178907394,0.8784499168396,-0.186100259423256,-0.451173335313797,0.872816920280457,0.0142015516757965,-0.457160532474518,0.889270782470703,0.0517911463975906,-0.44065073132515,0.896183371543884,0.0142373982816935,-0.460235297679901,0.887682795524597,0.193732887506485,-0.452659487724304,0.870383203029633,0.0141945797950029,-0.456564158201218,0.889577269554138,-0.186113506555557,-0.450445681810379,0.873189806938171,-0.0897755399346352,-0.441543370485306,0.89273726940155,0.194034799933434,-0.447715640068054,0.872869551181793,0.0142325144261122,-0.459818184375763,0.887899041175842,0.0985901728272438,-0.469038546085358,0.8776575922966,0.0948678255081177,-0.441260129213333,0.892350614070892,0.0141619378700852,-0.453782886266708,0.890999734401703,-0.0857694000005722,-0.463939934968948,0.881704807281494,-0.115013942122459,-0.0736658871173859,-0.990628659725189,0.00684029562398791,-0.0645864233374596,-0.997888684272766,0.0416285954415798,-0.0433025360107422,-0.998194336891174,-0.118353143334389,-0.0535155348479748,-0.991528451442719,-0.182507380843163,-0.0607221499085426,-0.981327593326569,0.00683465972542763,-0.0649347230792046,-0.997866213321686,0.0501506961882114,-0.0828702375292778,-0.99529767036438,0.00692191906273365,-0.0595565997064114,-0.998200953006744,0.201311454176903,-0.0573894195258617,-0.977844655513763,0.00682116113603115,-0.0657651498913765,-0.997811913490295,-0.182525545358658,-0.0616364516317844,-0.981267333030701,-0.0926330834627151,-0.0787288174033165,-0.992583036422729,
  828. 0.20164230465889,-0.0631172060966492,-0.977423548698425,0.0069222878664732,-0.0595328211784363,-0.998202443122864,0.0972517654299736,-0.0478358566761017,-0.994109570980072,0.0936444848775864,-0.0787910521030426,-0.992483079433441,0.00678975693881512,-0.0676921978592873,-0.997683167457581,-0.0885898321866989,-0.0536918193101883,-0.994620025157928,0.126230359077454,0.470125913619995,-0.87352591753006,0.128268465399742,0.439505219459534,-0.889034509658813,0.342596173286438,0.489186614751816,-0.802075028419495,0.128856286406517,0.460273712873459,-0.878375887870789,-0.243988662958145,0.381133556365967,-0.891743659973145,0.106335118412972,0.496893972158432,-0.861271858215332,0.342795997858047,0.488512128591537,-0.802400648593903,0.299920797348022,0.484135717153549,-0.821985483169556,0.127522274851799,0.465293794870377,-0.87592226266861,-0.233008578419685,0.35965570807457,-0.903523564338684,0.13026262819767,0.454947471618652,-0.880939543247223,-0.185896262526512,0.38279527425766,-0.904936790466309,0.0196128077805042,0.442069739103317,-0.896766245365143,0.12756834924221,0.46512109041214,-0.876007378101349,0.300013959407806,0.483744293451309,-0.822181880474091,0.0211739409714937,0.436539888381958,-0.899435698986053,-0.183572381734848,0.370426446199417,-0.910541296005249,0.131386429071426,0.450666159391403,-0.882971048355103,0.0196612663567066,0.441898375749588,-0.896849632263184,0.300028651952744,0.483682602643967,-0.822212815284729,0.238774761557579,0.478784054517746,-0.844838738441467,-0.188317403197289,0.395807266235352,-0.898817658424377,0.020500872284174,0.438926607370377,-0.898289144039154,-0.175774216651917,0.391644477844238,-0.903171122074127,-0.110183157026768,0.368592888116837,-0.923038005828857,0.019739992916584,0.441620051860809,-0.896985113620758,0.238983869552612,0.478029936552048,-0.845206558704376,0.020424822345376,0.439196020364761,-0.898159086704254,-0.192905142903328,0.384501963853836,-0.902743518352509,-0.174480110406876,0.386329680681229,-0.905707478523254,-0.191805347800255,0.382067799568176,-0.904010474681854,
  829. 0.0195319727063179,0.442355573177338,-0.896627068519592,-0.128912061452866,0.410005480051041,-0.902926981449127,0.168488636612892,0.862166166305542,-0.477787733078003,-0.100944139063358,0.83762788772583,-0.536833107471466,-0.00892476830631495,0.855539321899414,-0.517660915851593,-0.00815254170447588,0.85357278585434,-0.520909786224365,-0.103533633053303,0.843050599098206,-0.527775049209595,-0.283976346254349,0.787860333919525,-0.546473681926727,-0.0150918988510966,0.870794475078583,-0.491415530443192,0.29367333650589,0.860112071037292,-0.417088955640793,0.162538662552834,0.875828623771667,-0.454428672790527,-0.260546982288361,0.798643290996552,-0.542479693889618,-0.00928689539432526,0.856457114219666,-0.51613461971283,-0.284923732280731,0.789913594722748,-0.543005526065826,0.288924217224121,0.873623669147491,-0.39154115319252,-0.0202647689729929,0.882971525192261,-0.468988984823227,0.0811040177941322,0.882746756076813,-0.462796211242676,0.0737670511007309,0.896011173725128,-0.437861144542694,-0.0174909085035324,0.876512110233307,-0.481061905622482,-0.274644821882248,0.82178008556366,-0.499247193336487,0.0834078937768936,0.87839937210083,-0.470592945814133,0.356641054153442,0.853915989398956,-0.378991931676865,0.290410280227661,0.869550585746765,-0.399429112672806,-0.19847597181797,0.898776531219482,-0.390906691551209,0.045828565955162,0.938763856887817,-0.341499954462051,-0.300479084253311,0.861318528652191,-0.409686088562012,0.356361776590347,0.854708611965179,-0.377464562654495,0.0847616121172905,0.875803709030151,-0.47516667842865,0.19313345849514,0.872983396053314,-0.447883307933807,-0.0123873669654131,0.988144218921661,0.153028696775436,-0.0768384635448456,0.991377115249634,0.10614750534296,-0.364903390407562,0.930828750133514,0.0200844090431929,0.0697896629571915,-0.43716424703598,0.896669983863831,0.287315607070923,-0.379376947879791,0.879501521587372,0.0798383504152298,-0.463263064622879,0.882617235183716,-0.298435181379318,-0.490004658699036,0.819043278694153,0.0729912146925926,-0.450368762016296,0.889854073524475,
  830. 0.0622090213000774,-0.413254767656326,0.908488035202026,0.287640661001205,-0.380555242300034,0.878885984420776,0.0711314156651497,-0.442702382802963,0.893842816352844,0.249072447419167,-0.395030856132507,0.88425874710083,0.0741455033421516,-0.455121070146561,0.887337148189545,-0.288149952888489,-0.512313783168793,0.809014320373535,-0.237229883670807,-0.501789510250092,0.831822991371155,-0.0370564311742783,-0.469970107078552,0.881904125213623,0.24915286898613,-0.395393460988998,0.884074151515961,0.0711835846304893,-0.442917585372925,0.893732011318207,-0.235151395201683,-0.513220489025116,0.825414299964905,-0.0359826795756817,-0.473950922489166,0.879815876483917,0.075337715446949,-0.460024684667587,0.884704172611237,0.185755535960197,-0.414884686470032,0.890710711479187,0.249170541763306,-0.39547324180603,0.88403332233429,-0.037007138133049,-0.47015318274498,0.881808638572693,-0.0364203825592995,-0.47232985496521,0.880669236183167,-0.239372834563255,-0.489660322666168,0.838411390781403,-0.234047338366508,-0.495434790849686,0.836520314216614,-0.168902605772018,-0.52891606092453,0.831696927547455,0.185715302824974,-0.414736360311508,0.890788197517395,-0.0370044000446796,-0.470163255929947,0.881803393363953,-0.239932790398598,-0.497203469276428,0.833799123764038,-0.0366077236831188,-0.471634984016418,0.881033658981323,-0.232748597860336,-0.501194655895233,0.833445847034454,-0.0374077148735523,-0.46866449713707,0.882583975791931,-0.2389165610075,-0.499640196561813,0.832633495330811,-0.186948791146278,-0.487446069717407,0.852904736995697,-0.0408308506011963,-0.995713829994202,-0.082987904548645,0.0848522782325745,-0.992774248123169,-0.0848494097590446,0.110733367502689,-0.988410949707031,-0.103837065398693,-0.0429160967469215,-0.993828117847443,-0.102294094860554,-0.11156915128231,-0.988996267318726,-0.097153976559639,0.0848447754979134,-0.992784857749939,-0.0847325101494789,0.117019474506378,-0.99102121591568,-0.0646791830658913,0.0851749554276466,-0.99230283498764,-0.0898907035589218,0.268821388483047,-0.959953844547272,-0.0788905099034309,
  831. 0.0847889930009842,-0.992863357067108,-0.0838643908500671,-0.111651927232742,-0.98909592628479,-0.0960370674729347,-0.0164848286658525,-0.997064292430878,-0.0747745707631111,0.26884999871254,-0.960373878479004,-0.0734961032867432,0.0851787179708481,-0.992297172546387,-0.0899497643113136,0.176233366131783,-0.979793787002563,-0.0945831313729286,0.171442121267319,-0.983058989048004,-0.0648272857069969,0.0846602022647858,-0.993041396141052,-0.0818635672330856,-0.0112110991030931,-0.994964182376862,-0.0996030867099762,-0.176900878548622,0.154689654707909,0.971996486186981,-0.0592429675161839,0.15475669503212,0.986174762248993,-0.0197459813207388,0.136886447668076,0.990389943122864,-0.178802832961082,0.135271742939949,0.974541485309601,-0.242083221673965,0.137276843190193,0.960495173931122,-0.0592303648591042,0.154581218957901,0.986203014850616,-0.0141266109421849,0.174596697092056,0.984538674354553,-0.058899350464344,0.149970784783363,0.9869344830513,0.135724723339081,0.158713832497597,0.977951288223267,-0.0592843480408192,0.15533435344696,0.986081540584564,-0.242146953940392,0.138120636343956,0.960358142852783,-0.14939047396183,0.162794530391693,0.975284814834595,0.135733231902123,0.164480894804001,0.976996779441834,-0.0589161701500416,0.150204434990883,0.986897945404053,0.038995549082756,0.144542649388313,0.988729894161224,0.0335709750652313,0.175026565790176,0.983991205692291,-0.0594502836465836,0.157651335000992,0.985703766345978,-0.144418135285378,0.13961298763752,0.979618191719055,-0.152614325284958,-0.25264123082161,0.95544821023941,-0.0257509313523769,-0.255429089069366,0.966484904289246,0.0110368803143501,-0.273737639188766,0.961741089820862,-0.154190361499786,-0.271613538265228,0.949974417686462,-0.210949018597603,-0.266069650650024,0.940588891506195,-0.025724072009325,-0.255721211433411,0.966408252716064,0.016453480347991,-0.234885141253471,0.971883893013,-0.0253951475024223,-0.259299367666245,0.965463042259216,0.159066319465637,-0.243588358163834,0.956745862960815,-0.0257829278707504,-0.255080252885818,0.966576099395752,
  832. -0.211039438843727,-0.265181839466095,0.940819323062897,-0.123035058379173,-0.245711609721184,0.961503088474274,0.158965095877647,-0.237755373120308,0.958228826522827,-0.0254334509372711,-0.258883357048035,0.965573787689209,0.0609774105250835,-0.263943612575531,0.962608814239502,0.0552579201757908,-0.235264912247658,0.970359206199646,-0.0260384138673544,-0.252295821905136,0.96729975938797,-0.117054365575314,-0.269845604896545,0.955762326717377,-0.102201737463474,0.533579587936401,-0.839552044868469,0.0198351796716452,0.552393913269043,-0.833347320556641,0.0485218390822411,0.571426451206207,-0.819217562675476,-0.107008032500744,0.549504458904266,-0.828609764575958,-0.173740819096565,0.532740712165833,-0.828252017498016,0.0198458135128021,0.552266776561737,-0.83343118429184,0.0602261498570442,0.539080798625946,-0.840098023414612,0.0194925516843796,0.556479275226593,-0.83063280582428,0.204543247818947,0.558808624744415,-0.803675949573517,0.0199019275605679,0.5515958070755,-0.833874225616455,-0.173681229352951,0.531978726387024,-0.828754186630249,-0.0744481012225151,0.530979633331299,-0.844107866287231,0.205441072583199,0.553712129592896,-0.806967675685883,0.0194982700049877,0.55641120672226,-0.830678284168243,0.107903823256493,0.568965673446655,-0.815251410007477,0.106895670294762,0.542949795722961,-0.832933902740479,0.0200506560504436,0.549814760684967,-0.83504593372345,-0.0725213810801506,0.552447080612183,-0.83038717508316
  833. }
  834. TangentsW: *3783 {
  835. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  836. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  837. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  838. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  839. }
  840. }
  841. LayerElementTangent: 1 {
  842. Version: 102
  843. Name: "LightMapUV"
  844. MappingInformationType: "ByPolygonVertex"
  845. ReferenceInformationType: "Direct"
  846. Tangents: *11349 {
  847. a: 0.17853906750679,-0.12671335041523,-0.975739479064941,0.0699705332517624,-0.149806573987007,-0.986236333847046,0.369954466819763,-0.0839441493153572,-0.925249755382538,-0.262762039899826,0.432549506425858,-0.862471461296082,-0.0625266283750534,0.484628587961197,-0.872482419013977,0.019965648651123,0.512953102588654,-0.858184397220612,0.110711224377155,-0.364182949066162,-0.924723625183105,0.360765904188156,-0.30932492017746,-0.879867196083069,0.35525718331337,-0.31995102763176,-0.878307282924652,-0.261385351419449,0.426908671855927,-0.865694344043732,-0.300042390823364,0.415305435657501,-0.858775854110718,-0.0609480515122414,0.477595061063766,-0.876463651657104,-0.189738884568214,0.398807108402252,-0.897191226482391,-0.0525702275335789,0.440036326646805,-0.896439850330353,-0.293088316917419,0.377417951822281,-0.878438889980316,-0.290098607540131,0.361782819032669,-0.885977447032928,-0.309314996004105,0.35507920384407,-0.88218080997467,-0.187470674514771,0.380843460559845,-0.905435264110565,0.323066800832748,0.03134511038661,-0.945856928825378,0.0461885631084442,-0.0293952375650406,-0.998500168323517,0.117378570139408,0.0170608796179295,-0.992940783500671,-0.181037366390228,0.33204260468483,-0.925728440284729,0.0729783475399017,0.367898166179657,-0.926997900009155,-0.0332740023732185,0.352112293243408,-0.935366094112396,0.0883220806717873,0.260184854269028,-0.961510837078094,0.236228704452515,0.270302176475525,-0.933344900608063,0.268719375133514,0.28588330745697,-0.919815540313721,0.245179444551468,0.490625858306885,-0.836165845394135,0.202726051211357,0.502175807952881,-0.840667486190796,0.209504321217537,0.482431650161743,-0.850510239601135,0.224140852689743,0.380487948656082,-0.897212207317352,0.402303457260132,0.374189019203186,-0.835544407367706,0.267225027084351,0.37655770778656,-0.88701468706131,0.40101233124733,0.468715459108353,-0.78708016872406,0.211286410689354,0.471260398626328,-0.856312870979309,0.144884198904037,0.485040605068207,-0.862406015396118,0.221803024411201,0.398554921150208,-0.889919877052307,
  848. 0.0694391876459122,0.391186416149139,-0.917688071727753,0.15267688035965,0.388315320014954,-0.908790946006775,0.145756855607033,0.475420236587524,-0.867600440979004,0.372212767601013,0.464558154344559,-0.803519368171692,0.40146815776825,0.455718845129013,-0.794445514678955,-0.182176172733307,0.340471595525742,-0.922437489032745,0.0132746612653136,0.369880139827728,-0.928984642028809,0.0717573910951614,0.375993847846985,-0.923839569091797,0.154376626014709,0.363008439540863,-0.918908476829529,0.0717187449336052,0.376249134540558,-0.923738718032837,0.013970579020679,0.361004203557968,-0.932459533214569,-0.14599597454071,0.359477579593658,-0.921662092208862,0.0120803210884333,0.384998738765717,-0.922838032245636,-0.183400496840477,0.349629193544388,-0.918762028217316,-0.147817939519882,0.374686926603317,-0.915292084217072,-0.185985177755356,0.369307011365891,-0.910506367683411,-0.307678937911987,0.343325704336166,-0.887390077114105,0.0138697177171707,0.362293630838394,-0.931960821151733,0.0166543200612068,0.367545902729034,-0.929856359958649,0.154300346970558,0.364188134670258,-0.918454349040985,0.0121211474761367,0.38448429107666,-0.923051953315735,-0.145918399095535,0.358835130929947,-0.921924710273743,0.0151999723166227,0.379921585321426,-0.924893796443939,-0.307673007249832,0.343283534049988,-0.887408435344696,-0.161244988441467,0.366115659475327,-0.916492998600006,-0.147802799940109,0.374559640884399,-0.915346622467041,0.01438894495368,0.386783361434937,-0.922058343887329,-0.146779343485832,0.365987986326218,-0.918971478939056,-0.161982417106628,0.377212107181549,-0.911851286888123,-0.160678446292877,0.3577860891819,-0.919875860214233,-0.306664854288101,0.336192488670349,-0.890466868877411,-0.287338674068451,0.338888555765152,-0.895874559879303,-0.287372022867203,0.339633792638779,-0.895581483840942,-0.145728930830956,0.34301546216011,-0.927956640720367,-0.160682395100594,0.357843607664108,-0.919852793216705,-0.139832958579063,0.423323750495911,-0.895122170448303,0.0140753472223878,0.389429032802582,-0.920949041843414,
  849. -0.162301585078239,0.382110357284546,-0.909752666950226,-0.145415484905243,0.347768068313599,-0.926235258579254,-0.28752538561821,0.34310907125473,-0.894206523895264,-0.203209683299065,0.344724237918854,-0.916444778442383,-0.198648393154144,0.382849872112274,-0.902199983596802,-0.00672726985067129,0.362248122692108,-0.932057440280914,-0.14336097240448,0.377421915531158,-0.914877235889435,-0.00456527760252357,0.391135215759277,-0.920321881771088,0.0150340795516968,0.381327480077744,-0.92431777715683,-0.142214193940163,0.392970681190491,-0.908487319946289,-0.00931383576244116,0.35162091255188,-0.936096251010895,-0.00912626646459103,0.358894884586334,-0.933333396911621,-0.144011259078979,0.36830061674118,-0.918485403060913,0.00585808651521802,0.413201302289963,-0.910620868206024,0.106550164520741,0.388373464345932,-0.915321290493011,-0.0026493591722101,0.404523223638535,-0.914523899555206,0.1053761318326,0.366724282503128,-0.924342572689056,0.015383742749691,0.37836292386055,-0.925529479980469,-0.0071153724566102,0.373173505067825,-0.927734315395355,0.107486054301262,0.406297862529755,-0.907396733760834,0.00926792155951262,0.426790684461594,-0.904303073883057,0.200212195515633,0.389203310012817,-0.899130642414093,0.153921589255333,0.369980901479721,-0.916199922561646,0.0162061061710119,0.371369779109955,-0.928343713283539,0.104923859238625,0.380414098501205,-0.918844997882843,0.104267545044422,0.347027152776718,-0.932041108608246,0.104983538389206,0.379953026771545,-0.91902893781662,0.0162646993994713,0.370870381593704,-0.92854231595993,0.359492003917694,0.524675905704498,-0.771673977375031,0.138084903359413,0.55259108543396,-0.821934103965759,0.082670584321022,0.534292280673981,-0.841247498989105,0.205285161733627,0.428981363773346,-0.879677772521973,0.259990006685257,0.418067127466202,-0.870416641235352,0.108970999717712,0.436179429292679,-0.893237411975861,0.100896239280701,0.410859882831573,-0.906098306179047,0.107701234519482,0.41051197052002,-0.905472457408905,0.260559976100922,0.412547439336777,-0.872876465320587,
  850. 0.0880691632628441,0.499948412179947,-0.861565709114075,0.249258309602737,0.506494343280792,-0.825429439544678,0.365331470966339,0.498393595218658,-0.786216735839844,0.25583279132843,0.455425262451172,-0.85272353887558,0.210636004805565,0.473856627941132,-0.855039417743683,0.29148057103157,0.453873813152313,-0.842043876647949,0.292903065681458,0.444705009460449,-0.846430897712708,0.375706702470779,0.445950388908386,-0.812387049198151,0.257182061672211,0.443811684846878,-0.858422160148621,0.17927822470665,-0.709521651268005,-0.681497156620026,0.0699441432952881,-0.732703030109406,-0.676944673061371,0.368081301450729,-0.645266652107239,-0.669437944889069,-0.266279369592667,-0.202853232622147,-0.942308783531189,-0.0574499852955341,-0.168227314949036,-0.984072685241699,0.0206717792898417,-0.137070298194885,-0.990345597267151,0.109191566705704,-0.86250627040863,-0.494125664234161,0.361158728599548,-0.792014718055725,-0.492216438055038,0.353947252035141,-0.799665153026581,-0.485033005475998,-0.264839440584183,-0.209741652011871,-0.941205859184265,-0.29827556014061,-0.213526725769043,-0.930289328098297,-0.0558181814849377,-0.176726445555687,-0.982676088809967,-0.190491050481796,-0.250715106725693,-0.94913387298584,-0.0476341098546982,-0.218817949295044,-0.974602341651917,-0.2915158867836,-0.255585134029388,-0.9217888712883,-0.288583159446716,-0.272702813148499,-0.917797863483429,-0.307341814041138,-0.275331616401672,-0.910897076129913,-0.18820957839489,-0.269856542348862,-0.944327592849731,0.323854744434357,-0.567381024360657,-0.757097661495209,0.0469162203371525,-0.645567357540131,-0.762260854244232,0.122351907193661,-0.607773900032043,-0.784628033638,-0.181690961122513,-0.320913136005402,-0.929517686367035,0.0773295164108276,-0.292694687843323,-0.953073978424072,-0.0292816683650017,-0.310086518526077,-0.950257301330566,0.0929648131132126,-0.398545116186142,-0.912424981594086,0.237476497888565,-0.37309804558754,-0.89688503742218,0.269800990819931,-0.352676182985306,-0.896006107330322,0.240379706025124,-0.142071709036827,-0.960225641727448,
  851. 0.203982025384903,-0.134417295455933,-0.96970272064209,0.209607571363449,-0.155623108148575,-0.965321779251099,0.224970936775208,-0.265653491020203,-0.937452018260956,0.40350815653801,-0.231418609619141,-0.885226845741272,0.26251819729805,-0.262975186109543,-0.928400933742523,0.402757376432419,-0.127048939466476,-0.906446397304535,0.211712926626205,-0.169721603393555,-0.962482333183289,0.14183697104454,-0.161895886063576,-0.976561307907104,0.222315654158592,-0.245290994644165,-0.943614482879639,0.0737273767590523,-0.268717467784882,-0.960393249988556,0.149597495794296,-0.266583383083344,-0.95213121175766,0.142708227038383,-0.172712713479996,-0.974579215049744,0.375786483287811,-0.140009224414825,-0.916068732738495,0.403148889541626,-0.142240554094315,-0.904012501239777,-0.182837218046188,-0.312288582324982,-0.932226598262787,0.0132511984556913,-0.293206602334976,-0.955957293510437,0.076090581715107,-0.284431755542755,-0.955671906471252,0.151290059089661,-0.29264909029007,-0.944175720214844,0.0759968981146812,-0.283807545900345,-0.955865025520325,0.0139482226222754,-0.302711635828018,-0.952980220317841,-0.147073522210121,-0.296761453151703,-0.943558156490326,0.0120801376178861,-0.277212202548981,-0.960732877254486,-0.184049934148788,-0.303008496761322,-0.935046255588531,-0.148879945278168,-0.28099849820137,-0.948089957237244,-0.186713069677353,-0.282030403614044,-0.941061794757843,-0.305665254592896,-0.287822782993317,-0.907593965530396,0.013854312710464,-0.301431685686111,-0.953387141227722,0.0176381710916758,-0.295210331678391,-0.955269455909729,0.151214405894279,-0.291450649499893,-0.944558501243591,0.0121185826137662,-0.27773779630661,-0.960580468177795,-0.146996393799782,-0.297424912452698,-0.943361282348633,0.016224317252636,-0.283015936613083,-0.958977997303009,-0.305661231279373,-0.28785228729248,-0.907585978507996,-0.16152323782444,-0.287956327199936,-0.94392341375351,-0.14886511862278,-0.281129658222198,-0.948053419589996,0.0153911672532558,-0.275818765163422,-0.961086452007294,-0.14785772562027,-0.289971321821213,-0.94554477930069,
  852. -0.162213891744614,-0.277590900659561,-0.946905434131622,-0.160933911800385,-0.296558797359467,-0.94135707616806,-0.304634779691696,-0.295291274785995,-0.90553891658783,-0.292691260576248,-0.296364098787308,-0.909120559692383,-0.292723536491394,-0.295654863119125,-0.909341037273407,-0.145200684666634,-0.313283026218414,-0.938493728637695,-0.160932168364525,-0.296583980321884,-0.941349446773529,-0.139582648873329,-0.231158748269081,-0.962851166725159,0.0150830782949924,-0.273155361413956,-0.96185177564621,-0.16253899037838,-0.272599548101425,-0.948298871517181,-0.144899979233742,-0.308518290519714,-0.940117359161377,-0.292882770299912,-0.29209890961647,-0.910438418388367,-0.208870440721512,-0.303758442401886,-0.929571926593781,-0.204564124345779,-0.265839368104935,-0.94206315279007,-0.00416490342468023,-0.301622152328491,-0.953418433666229,-0.142946869134903,-0.278706520795822,-0.949678301811218,-0.0039030509069562,-0.271354407072067,-0.962471604347229,0.016030827537179,-0.281345039606094,-0.95947277545929,-0.141860917210579,-0.26288428902626,-0.954341292381287,-0.00675117317587137,-0.31245943903923,-0.949907124042511,-0.00844130199402571,-0.304587066173553,-0.952447116374969,-0.14357353746891,-0.288070410490036,-0.946785151958466,0.00836962088942528,-0.248549222946167,-0.968583106994629,0.109580837190151,-0.270301640033722,-0.956519246101379,-0.00199326127767563,-0.257280558347702,-0.966334700584412,0.108457498252392,-0.292618155479431,-0.95005875825882,0.0163690317422152,-0.284264951944351,-0.958606123924255,-0.00643679685890675,-0.289945185184479,-0.957021594047546,0.110483191907406,-0.251344263553619,-0.961571395397186,0.0117660323157907,-0.234011545777321,-0.97216272354126,0.205546662211418,-0.259913682937622,-0.943501710891724,0.150837615132332,-0.285530239343643,-0.946425139904022,0.0171916857361794,-0.291361898183823,-0.956458508968353,0.103332884609699,-0.277673482894897,-0.95510196685791,0.107389360666275,-0.312695354223251,-0.943763315677643,0.103391028940678,-0.278112411499023,-0.954967975616455,0.0172493513673544,-0.291859060525894,-0.956305801868439,
  853. 0.363143295049667,-0.0727463886141777,-0.928889095783234,0.135077744722366,-0.0836940482258797,-0.98729395866394,0.0805635750293732,-0.113047316670418,-0.990318059921265,0.210664704442024,-0.216599151492119,-0.95326042175293,0.257831215858459,-0.219339624047279,-0.940963983535767,0.111894465982914,-0.219484269618988,-0.969178140163422,0.0992627963423729,-0.247206822037697,-0.963864982128143,0.110689707100391,-0.246861115098,-0.962708353996277,0.25843471288681,-0.225802525877953,-0.939268290996552,0.0860913470387459,-0.151798710227013,-0.98465496301651,0.247419491410255,-0.121508739888668,-0.961259186267853,0.368966728448868,-0.102614417672157,-0.923760712146759,0.253813713788986,-0.178884953260422,-0.950567603111267,0.216038316488266,-0.166170865297318,-0.962140679359436,0.294455766677856,-0.172671884298325,-0.939936280250549,0.295878648757935,-0.182562097907066,-0.937617778778076,0.379281848669052,-0.160399168729782,-0.911272525787354,0.25514280796051,-0.191817671060562,-0.947685658931732,0.189594268798828,-0.309334486722946,-0.931861698627472,0.0821954011917114,-0.337001234292984,-0.937909424304962,0.374418377876282,-0.249955251812935,-0.892935216426849,-0.27032071352005,0.24490912258625,-0.931099474430084,-0.0733696445822716,0.300815582275391,-0.95085597038269,0.00457858527079225,0.334234744310379,-0.942478716373444,0.130244240164757,-0.534001469612122,-0.835391461849213,0.377293676137924,-0.462235778570175,-0.802488386631012,0.369262993335724,-0.472300469875336,-0.80036062002182,-0.268654733896255,0.238558694720268,-0.933227956295013,-0.314825087785721,0.224706187844276,-0.922167181968689,-0.0714444816112518,0.292922407388687,-0.9534632563591,-0.197963908314705,0.20760478079319,-0.95797210931778,-0.0615563429892063,0.252381086349487,-0.965667963027954,-0.306288927793503,0.183946579694748,-0.933997213840485,-0.302641212940216,0.167217180132866,-0.938321232795715,-0.313473403453827,0.162851095199585,-0.935528695583344,-0.194856911897659,0.188686907291412,-0.962511420249939,0.327528685331345,-0.142250925302505,-0.93407154083252,
  854. 0.0541127510368824,-0.221862375736237,-0.973575413227081,0.130544498562813,-0.172681555151939,-0.976288497447968,-0.185765415430069,0.135388121008873,-0.973222136497498,0.0713391900062561,0.182418346405029,-0.980629622936249,-0.039093304425478,0.160282537341118,-0.986296832561493,0.0914757698774338,0.0704105719923973,-0.993314921855927,0.234638586640358,0.0916318595409393,-0.967754304409027,0.263920485973358,0.109686397016048,-0.958287477493286,0.233538180589676,0.326064318418503,-0.916046917438507,0.189650565385818,0.334598809480667,-0.923079907894135,0.197160944342613,0.315053820610046,-0.928368926048279,0.217372879385948,0.204509809613228,-0.954423904418945,0.396071404218674,0.218459829688072,-0.89185357093811,0.260016560554504,0.205803364515305,-0.943417489528656,0.390687227249146,0.320495516061783,-0.862928807735443,0.200046434998512,0.300356179475784,-0.93261331319809,0.128156870603561,0.312023609876633,-0.941391050815582,0.213662505149841,0.226258233189583,-0.950344979763031,0.0667593479156494,0.206868156790733,-0.976088523864746,0.139974474906921,0.207429781556129,-0.968183875083923,0.129447877407074,0.301388025283813,-0.944673776626587,0.364071428775787,0.312681704759598,-0.877315282821655,0.39171227812767,0.306342244148254,-0.867592036724091,-0.187297359108925,0.144170224666595,-0.971665918827057,0.00480331853032112,0.180424094200134,-0.983577191829681,0.0697602331638336,0.190888434648514,-0.979129791259766,0.14270806312561,0.180526077747345,-0.973162233829498,0.0696385204792023,0.191539570689201,-0.979011297225952,0.00591296283528209,0.170092403888702,-0.985410392284393,-0.155036121606827,0.165516212582588,-0.973944664001465,0.00299034966155887,0.197250619530678,-0.980348527431488,-0.188820898532867,0.152980834245682,-0.970022439956665,-0.157348692417145,0.180800884962082,-0.970851421356201,-0.192787542939186,0.17629611492157,-0.965273380279541,-0.311376363039017,0.150478541851044,-0.938296854496002,0.00577593268826604,0.171369686722755,-0.985189855098724,0.0135338082909584,0.178551524877548,-0.983837485313416,
  855. 0.142586797475815,0.181745693087578,-0.972953081130981,0.00304692657664418,0.196726515889168,-0.980453670024872,-0.154933735728264,0.164844408631325,-0.974074900150299,0.0115288263186812,0.191894844174385,-0.981347799301147,-0.311368227005005,0.150430932641029,-0.938307285308838,-0.1694625467062,0.171446040272713,-0.97050952911377,-0.15732778608799,0.180661752820015,-0.970880687236786,0.0104340184479952,0.199159577488899,-0.979911625385284,-0.15608261525631,0.172406181693077,-0.972581267356873,-0.170823857188225,0.185420542955399,-0.967697501182556,-0.168576046824455,0.162513598799706,-0.972199380397797,-0.310058742761612,0.142843186855316,-0.939925193786621,-0.292547345161438,0.144666835665703,-0.94524472951889,-0.292615503072739,0.145512402057648,-0.945093810558319,-0.14746581017971,0.148002415895462,-0.977931141853333,-0.168598592281342,0.162739381194115,-0.972157597541809,-0.144994497299194,0.233264952898026,-0.961542546749115,0.0100047793239355,0.202003687620163,-0.979333639144897,-0.171345889568329,0.190866813063622,-0.966545641422272,-0.147351831197739,0.153022527694702,-0.977175295352936,-0.292911469936371,0.149214208126068,-0.944424688816071,-0.213157162070274,0.150081589818001,-0.965421974658966,-0.21044385433197,0.189578250050545,-0.959048211574554,-0.00804522447288036,0.170477822422981,-0.985328674316406,-0.146551385521889,0.18438284099102,-0.971867084503174,-0.0134197296574712,0.202362641692162,-0.979218721389771,0.0113195283338428,0.19328485429287,-0.981077492237091,-0.146068722009659,0.200871840119362,-0.968666315078735,-0.0102078747004271,0.159132093191147,-0.987204551696777,-0.0166229344904423,0.16800831258297,-0.985645413398743,-0.146814957261086,0.174697399139404,-0.973614990711212,0.00249273260124028,0.225346475839615,-0.974275529384613,0.0992430970072746,0.205011919140816,-0.973715126514435,-0.0120678041130304,0.216734632849693,-0.976155936717987,0.0989464670419693,0.18175320327282,-0.978353500366211,0.0118007212877274,0.19008831679821,-0.98169606924057,-0.0152104664593935,0.183209612965584,-0.982956171035767,
  856. 0.0994456857442856,0.224105641245842,-0.969477832317352,0.00532455835491419,0.23997363448143,-0.970764815807343,0.195576325058937,0.212638959288597,-0.957358121871948,0.141972288489342,0.187886461615562,-0.971875786781311,0.0129265002906322,0.182598575949669,-0.983102679252625,0.0964737236499786,0.197240665555,-0.975596725940704,0.0986322164535522,0.160752788186073,-0.982054114341736,0.0965506359934807,0.196782201528549,-0.975681781768799,0.0130052212625742,0.18207423388958,-0.983198761940002,0.348684072494507,0.376918405294418,-0.858109533786774,0.118555746972561,0.386201351881027,-0.914763927459717,0.0673386007547379,0.359627038240433,-0.930663168430328,0.19874732196331,0.255129337310791,-0.946260273456573,0.25005578994751,0.249027743935585,-0.935658752918243,0.0997035503387451,0.256484657526016,-0.961392223834991,0.0911587551236153,0.228519454598427,-0.969262182712555,0.0994884595274925,0.228654950857162,-0.968410551548004,0.250838071107864,0.243382513523102,-0.936933934688568,0.0743095800280571,0.322699129581451,-0.943580090999603,0.235414505004883,0.34389740228653,-0.909018456935883,0.355661600828171,0.34885910153389,-0.867065250873566,0.244256481528282,0.288862884044647,-0.925687313079834,0.20195497572422,0.303996533155441,-0.931021213531494,0.283094137907028,0.291230827569962,-0.913806617259979,0.284902900457382,0.281563311815262,-0.916270971298218,0.368341982364655,0.293168306350708,-0.882256627082825,0.246106252074242,0.276519447565079,-0.928961098194122,0.182964414358139,0.0444226488471031,-0.982115507125854,0.0677222236990929,0.0251705758273602,-0.997386634349823,0.365545779466629,0.0782360583543777,-0.927499651908875,-0.261443912982941,0.57636159658432,-0.774244427680969,-0.0603161454200745,0.628596007823944,-0.775389611721039,0.0194615349173546,0.655341744422913,-0.75508189201355,0.107387356460094,-0.197684332728386,-0.974365890026093,0.359990656375885,-0.152228176593781,-0.920452892780304,0.351225078105927,-0.162230849266052,-0.922129213809967,-0.260039776563644,0.571207940578461,-0.77852475643158,-0.299350202083588,0.558520495891571,-0.773591816425323,
  857. -0.0586834996938705,0.621936678886414,-0.780865550041199,-0.193648755550385,0.547966182231903,-0.813777148723602,-0.0505014955997467,0.588126242160797,-0.807190895080566,-0.292647570371628,0.52432507276535,-0.799650311470032,-0.289731711149216,0.509980797767639,-0.809922933578491,-0.308237254619598,0.503229141235352,-0.807310461997986,-0.191342070698738,0.531798124313354,-0.824972093105316,0.323641687631607,0.195604309439659,-0.925740242004395,0.0445263423025608,0.146627619862556,-0.988189220428467,0.117394983768463,0.189715027809143,-0.974795699119568,-0.184649437665939,0.486509919166565,-0.853939533233643,0.0736007243394852,0.523265779018402,-0.848985195159912,-0.0321308299899101,0.509660840034485,-0.859775245189667,0.0887531116604805,0.423333436250687,-0.901616156101227,0.234012767672539,0.428514987230301,-0.872704386711121,0.270494222640991,0.441078752279282,-0.855735003948212,0.243435770273209,0.627983033657074,-0.73917281627655,0.205385565757751,0.640447318553925,-0.740029752254486,0.206374958157539,0.623249471187592,-0.754300653934479,0.221562996506691,0.530057311058044,-0.818504214286804,0.40095329284668,0.513860166072845,-0.758409142494202,0.264991253614426,0.525172173976898,-0.808686494827271,0.40009617805481,0.598566830158234,-0.694003582000732,0.208395481109619,0.61218523979187,-0.762758553028107,0.142430275678635,0.628770768642426,-0.764435172080994,0.218981891870499,0.547747254371643,-0.807477474212646,0.0701040402054787,0.544549226760864,-0.835793972015381,0.149820655584335,0.539655268192291,-0.828448057174683,0.143282443284988,0.619822025299072,-0.771550893783569,0.373862892389297,0.59686267375946,-0.709916532039642,0.400499403476715,0.586771011352539,-0.703775584697723,-0.185811012983322,0.494213700294495,-0.849250912666321,0.0112280016764998,0.525487005710602,-0.850727558135986,0.0723896846175194,0.530707478523254,-0.844457983970642,0.151412263512611,0.515936493873596,-0.843139290809631,0.0723782852292061,0.530777215957642,-0.844415128231049,0.0119235459715128,0.517199873924255,-0.855781614780426,
  858. -0.151191607117653,0.513497889041901,-0.844666242599487,0.0100435437634587,0.539456129074097,-0.841953933238983,-0.187012404203415,0.502247035503387,-0.844259738922119,-0.152925401926041,0.526861310005188,-0.836080729961395,-0.189813122153282,0.521249949932098,-0.832027316093445,-0.306549608707428,0.492478340864182,-0.814550459384918,0.0118256378918886,0.51837021112442,-0.8550745844841,0.0193376261740923,0.523159682750702,-0.852015256881714,0.151346445083618,0.516961753368378,-0.842522859573364,0.0100833587348461,0.538989424705505,-0.842252194881439,-0.151115193963051,0.512912750244141,-0.845035314559937,0.0178177934139967,0.53544157743454,-0.8443843126297,-0.306545227766037,0.492450922727585,-0.814568698406219,-0.162098824977875,0.519998073577881,-0.838645458221436,-0.15290978550911,0.52674013376236,-0.836160063743591,0.0170448068529367,0.541633248329163,-0.8404421210289,-0.151964500546455,0.519434452056885,-0.84088933467865,-0.162777036428452,0.528784096240997,-0.83300119638443,-0.161503523588181,0.512423753738403,-0.84340888261795,-0.305518716573715,0.486030012369156,-0.818799793720245,-0.290094703435898,0.488673239946365,-0.822826683521271,-0.29013004899025,0.489480018615723,-0.822334408760071,-0.138021260499954,0.499066978693008,-0.855501174926758,-0.161499843001366,0.512377321720123,-0.843437790870667,-0.132175743579865,0.572278439998627,-0.809337377548218,0.0167237818241119,0.544193804264069,-0.838792860507965,-0.163105100393295,0.533097863197327,-0.830182790756226,-0.137707561254501,0.503458023071289,-0.852975189685822,-0.290269762277603,0.49271896481514,-0.820348381996155,-0.204971730709076,0.498991817235947,-0.842017650604248,-0.200834378600121,0.532919406890869,-0.82198691368103,-0.00324707431718707,0.517878413200378,-0.855448067188263,-0.135661900043488,0.530667662620544,-0.83665269613266,-0.003709661308676,0.544651567935944,-0.838654220104218,0.0177034698426723,0.536359667778015,-0.843803822994232,-0.134526818990707,0.544813573360443,-0.827696025371552,-0.00584497069939971,0.508099853992462,-0.861278355121613,
  859. -0.00797539204359055,0.515786290168762,-0.856680154800415,-0.136309117078781,0.522311151027679,-0.841790318489075,0.00939364638179541,0.564427316188812,-0.825429320335388,0.108781017363071,0.541223585605621,-0.833812773227692,-0.00192280800547451,0.556543827056885,-0.830816030502319,0.107526838779449,0.521164357662201,-0.846655607223511,0.0180677808821201,0.5334312915802,-0.845650434494019,-0.00609855260699987,0.528569042682648,-0.848868370056152,0.109762422740459,0.557428121566772,-0.822937488555908,0.0128008564934134,0.576681077480316,-0.81686919927597,0.204585060477257,0.538397192955017,-0.817479908466339,0.150991976261139,0.522413790225983,-0.839217066764832,0.0188945569097996,0.526754975318909,-0.849807143211365,0.108356580138206,0.535155594348907,-0.837775230407715,0.106348931789398,0.502905786037445,-0.857773661613464,0.108414724469185,0.534760355949402,-0.838020086288452,0.0189517065882683,0.526291906833649,-0.850092709064484,0.361091434955597,0.650407195091248,-0.668268978595734,0.136003851890564,0.688559472560883,-0.712312281131744,0.0856935232877731,0.670673012733459,-0.736786484718323,0.209701463580132,0.574293076992035,-0.791336059570313,0.260164469480515,0.562862098217011,-0.784538507461548,0.11134846508503,0.584732711315155,-0.803547859191895,0.104287631809711,0.562140882015228,-0.82043993473053,0.109991654753685,0.561284482479095,-0.820281386375427,0.260729402303696,0.557920336723328,-0.787873804569244,0.0911916494369507,0.640874326229095,-0.762210190296173,0.249395146965981,0.642099320888519,-0.724921047687531,0.366934299468994,0.62718278169632,-0.687023282051086,0.255995988845825,0.596531391143799,-0.760668516159058,0.215069308876991,0.614170074462891,-0.75930267572403,0.295476078987122,0.592880249023438,-0.749124109745026,0.296894252300262,0.584870874881744,-0.75483763217926,0.377353191375732,0.58021467924118,-0.721772491931915,0.257347047328949,0.586111307144165,-0.76827472448349,0.0994632914662361,-0.71650618314743,-0.690453410148621,-0.0401469841599464,-0.707328259944916,-0.70574426651001,0.141315624117851,-0.721619367599487,-0.677713334560394,
  860. 0.245314791798592,-0.692015826702118,-0.678921759128571,0.100354611873627,-0.705428421497345,-0.701640725135803,0.145632207393646,-0.698931992053986,-0.700203776359558,-0.0276719871908426,-0.66905152797699,-0.742700695991516,0.100393779575825,-0.704930245876312,-0.702135622501373,-0.0557608939707279,-0.67823326587677,-0.732728123664856,-0.242403998970985,-0.699667572975159,-0.672090470790863,-0.0550534725189209,-0.750739216804504,-0.658300638198853,-0.0698360502719879,-0.738337814807892,-0.670805633068085,0.100393638014793,-0.704932034015656,-0.70213383436203,0.245312958955765,-0.691866397857666,-0.679074704647064,0.133725166320801,-0.708797216415405,-0.692621171474457,0.32368928194046,-0.672941565513611,-0.665112674236298,0.133735403418541,-0.709145903587341,-0.692262172698975,0.245313003659248,-0.691871047019959,-0.679069936275482,-0.0669630393385887,-0.726345837116241,-0.684059739112854,-0.118415385484695,-0.713876605033875,-0.69018691778183,-0.237958118319511,-0.685414612293243,-0.688173472881317,-0.306114941835403,-0.678930461406708,-0.667343318462372,-0.241629183292389,-0.697180926799774,-0.674947500228882,-0.118849225342274,-0.717565298080444,-0.686276137828827,-0.0630559474229813,-0.709805905818939,-0.701569318771362,0.0994272828102112,-0.716943800449371,-0.690004229545593,0.000129447405925021,-0.71527886390686,-0.698839128017426,-0.117256760597229,-0.704066216945648,-0.700386762619019,-0.0616993270814419,-0.704001724720001,-0.707513153553009,0.000199438014533371,-0.719657719135284,-0.694328963756561,0.0994343981146812,-0.716857731342316,-0.69009268283844,0.133609905838966,-0.70493870973587,-0.696570038795471,0.000104751503386069,-0.713727176189423,-0.700423836708069,-0.306162804365158,-0.681534826755524,-0.664661288261414,-0.119672454893589,-0.724588572978973,-0.678711950778961,-0.177968442440033,-0.700698494911194,-0.690904378890991,-0.177595868706703,-0.711341440677643,-0.680039048194885,-0.117014013230801,-0.702018082141876,-0.702480137348175,0.000185900818905793,-0.718813002109528,-0.695203483104706,-0.285648733377457,-0.677403569221497,-0.677885830402374,
  861. -0.306211680173874,-0.684461176395416,-0.661624729633331,-0.177948653697968,-0.701298832893372,-0.690300107002258,0.000105016595625784,-0.71374386548996,-0.700406849384308,0.133609518408775,-0.704926192760468,-0.696582734584808,0.0895813480019569,-0.709069609642029,-0.699425101280212,0.133649542927742,-0.706254959106445,-0.695227861404419,0.323509871959686,-0.670532882213593,-0.667627930641174,0.0896255448460579,-0.710506677627563,-0.697959542274475,-0.0550703518092632,-0.716875374317169,-0.695023000240326,-0.17771689593792,-0.708028376102448,-0.683456301689148,0.000138715739012696,-0.715860366821289,-0.69824343919754,-0.28357207775116,-0.695108354091644,-0.660614311695099,-0.17768320441246,-0.708963096141815,-0.682495415210724,-0.0551129728555679,-0.716003775596619,-0.69591748714447,0.222441926598549,-0.693171441555023,-0.685589492321014,0.089645653963089,-0.711162805557251,-0.697288393974304,0.323629289865494,-0.672131359577179,-0.665960609912872,0.323889940977097,-0.675690352916718,-0.662221908569336,0.336442321538925,-0.672998607158661,-0.658695340156555,0.222437515854836,-0.692852199077606,-0.685913562774658,-0.000166729703778401,-0.717614948749542,-0.696440160274506,0.000141793367220089,-0.716053307056427,-0.698045670986176,0.0896441787481308,-0.711111903190613,-0.697340548038483,0.0896432474255562,-0.711081206798553,-0.697372019290924,0.222490400075912,-0.696917355060577,-0.681765496730804,-0.000165084929903969,-0.71751207113266,-0.696546137332916,-0.000306346832076088,-0.726292014122009,-0.687386214733124,-0.054306760430336,-0.732020676136017,-0.679114580154419,0.000349149660905823,-0.728930175304413,-0.684587955474854,0.336118280887604,-0.669338464736938,-0.662578642368317,0.071164682507515,-0.730279803276062,-0.6794313788414,0.222451359033585,-0.693865239620209,-0.684884250164032,0.222487360239029,-0.696667313575745,-0.682022035121918,0.0669589936733246,-0.704048931598663,-0.706987679004669,-0.000155099289258942,-0.716887056827545,-0.697189331054688,0.00906334817409515,-0.74638044834137,-0.665457904338837,
  862. 0.0710209384560585,-0.729390323162079,-0.680401206016541,0.3360995054245,-0.669129133224487,-0.662799596786499,-0.12827455997467,-0.685005307197571,-0.717156410217285,0.0619845613837242,-0.672502100467682,-0.737495005130768,-0.0067283995449543,-0.676415026187897,-0.736489951610565,-0.161248251795769,-0.709057509899139,-0.686466634273529,-0.283934623003006,-0.69215190410614,-0.663556218147278,-0.0551365241408348,-0.715520918369293,-0.696412086486816,-0.159216791391373,-0.74007773399353,-0.653402626514435,-0.0537176989018917,-0.743131697177887,-0.666985511779785,-0.000478807371109724,-0.736856877803802,-0.676048576831818,-0.282870471477509,-0.700685024261475,-0.654999971389771,-0.160867676138878,-0.715392470359802,-0.679952323436737,-0.209719568490982,-0.709561407566071,-0.672711193561554,0.0696175321936607,-0.7206791639328,-0.689764499664307,-0.0907363072037697,-0.731485962867737,-0.675792336463928,-0.000298034952720627,-0.725778639316559,-0.687928259372711,-0.0870647504925728,-0.753782987594604,-0.65133011341095,-0.159161254763603,-0.740841686725616,-0.652549922466278,-0.000538653053808957,-0.740483283996582,-0.672074556350708,0.0657759457826614,-0.696596026420593,-0.714442074298859,-0.122520558536053,-0.709916591644287,-0.693546772003174,-0.0944129973649979,-0.707670569419861,-0.700206100940704,-0.0918566882610321,-0.724392414093018,-0.68324089050293,-0.208534613251686,-0.719455122947693,-0.662493526935577,-0.160370141267776,-0.723275899887085,-0.671679615974426,-0.209636822342873,-0.71026885509491,-0.671989977359772,-0.0933133959770203,-0.714956879615784,-0.69291365146637,-0.121913716197014,-0.712457656860352,-0.691043496131897,0.0989364385604858,0.191654995083809,-0.976463079452515,-0.0411321483552456,0.209141939878464,-0.977019846439362,0.137704119086266,0.178696632385254,-0.974220275878906,0.247146964073181,0.194779098033905,-0.949199378490448,0.099704273045063,0.206103205680847,-0.973437488079071,0.141852393746376,0.209325924515724,-0.967502236366272,-0.0288807637989521,0.260524809360504,-0.965035080909729,0.0997375026345253,0.206736817955971,-0.97329968214035,
  863. -0.0573239251971245,0.246826201677322,-0.967362821102142,-0.238896518945694,0.184583529829979,-0.953340232372284,-0.0557595081627369,0.146302297711372,-0.987667202949524,-0.0708944946527481,0.16365484893322,-0.983967006206512,0.0997391417622566,0.206768184900284,-0.973292887210846,0.247144773602486,0.194990754127502,-0.949156522750854,0.131097838282585,0.196667164564133,-0.971666276454926,0.325518637895584,0.19392155110836,-0.92543613910675,0.13111712038517,0.195946574211121,-0.971809267997742,0.247145473957062,0.194923281669617,-0.949170172214508,-0.0681243911385536,0.18099507689476,-0.981121838092804,-0.120687834918499,0.1926189661026,-0.973823606967926,-0.234784543514252,0.20508947968483,-0.950165629386902,-0.309676557779312,0.192046105861664,-0.931245803833008,-0.238143101334572,0.18838706612587,-0.952784419059753,-0.121102154254913,0.18747366964817,-0.974775791168213,-0.0643588155508041,0.204262673854828,-0.976798176765442,0.0989123806357384,0.191208243370056,-0.976553022861481,-0.00156551983673126,0.198821052908897,-0.980034589767456,-0.119576953351498,0.206190332770348,-0.971178114414215,-0.0630653649568558,0.212175995111465,-0.97519451379776,-0.0015193714061752,0.192960098385811,-0.981205523014069,0.0989263653755188,0.191467791795731,-0.976500749588013,0.130904659628868,0.20373746752739,-0.970234513282776,-0.00158181565348059,0.200890645384789,-0.979612410068512,-0.309731423854828,0.188298299908638,-0.931992590427399,-0.121892817318439,0.177522927522659,-0.97653865814209,-0.182247802615166,0.200477778911591,-0.962597846984863,-0.181793749332428,0.184239491820335,-0.965922772884369,-0.119342386722565,0.209015503525734,-0.970602869987488,-0.00152907776646316,0.194192782044411,-0.980962216854095,-0.285550266504288,0.20200714468956,-0.936832010746002,-0.309788346290588,0.184031277894974,-0.932825744152069,-0.182233080267906,0.199922844767571,-0.962715923786163,-0.00158152775838971,0.20085409283638,-0.979619920253754,0.130903482437134,0.203779682517052,-0.970225811004639,0.0835534632205963,0.203286916017532,-0.975547671318054,
  864. 0.131010100245476,0.199911221861839,-0.971015989780426,0.32532462477684,0.197240203619003,-0.924802780151367,0.083637647330761,0.20002306997776,-0.976215004920959,-0.0539557226002216,0.195386007428169,-0.979241073131561,-0.181931614875793,0.188990399241447,-0.964978516101837,-0.00156102667097002,0.198250323534012,-0.980150282382965,-0.283452600240707,0.177756980061531,-0.942367911338806,-0.181918054819107,0.188516080379486,-0.965073943138123,-0.0539518445730209,0.195256277918816,-0.979267179965973,0.223476126790047,0.200136348605156,-0.953941345214844,0.0836654528975487,0.198936060070992,-0.976434588432312,0.325472801923752,0.194711625576019,-0.92528635263443,0.325808256864548,0.18883989751339,-0.926384627819061,0.341987937688828,0.188314586877823,-0.920642077922821,0.223470509052277,0.200960591435432,-0.953769266605377,0.00154298392590135,0.195958852767944,-0.980610907077789,-0.00155497179366648,0.197481527924538,-0.980305373668671,0.0836233720183373,0.200578287243843,-0.9761021733284,0.0836224481463432,0.200614705681801,-0.976094901561737,0.223515719175339,0.193436875939369,-0.955313086509705,0.00154408253729343,0.196098372340202,-0.980583131313324,0.00143874099012464,0.1827202886343,-0.983163893222809,-0.0533178336918354,0.174395695328712,-0.983231067657471,-0.00141802500002086,0.180088981986046,-0.98364931344986,0.341686517000198,0.193336471915245,-0.919712662696838,0.0691344812512398,0.17446756362915,-0.982232928276062,0.22348265349865,0.199141785502434,-0.954147815704346,0.223513334989548,0.193891927599907,-0.95522129535675,0.0649861395359039,0.211577594280243,-0.975198328495026,0.0015502996975556,0.196887984871864,-0.980424761772156,0.00727966288104653,0.152167588472366,-0.988327920436859,0.0689927041530609,0.175754964351654,-0.982013344764709,0.34167018532753,0.193604052066803,-0.919662415981293,-0.130139037966728,0.230387806892395,-0.964357435703278,0.0600518919527531,0.254281103610992,-0.96526426076889,-0.00929928757250309,0.251674056053162,-0.967767357826233,-0.160966217517853,0.191769763827324,-0.968150019645691,
  865. -0.283818960189819,0.181857094168663,-0.941474795341492,-0.0539625063538551,0.195613384246826,-0.979195296764374,-0.159012943506241,0.147727429866791,-0.976161599159241,-0.0528129860758781,0.158271118998528,-0.985982298851013,0.00131826486904174,0.167419835925102,-0.98588490486145,-0.282747477293015,0.170010730624199,-0.944007635116577,-0.160598739981651,0.182929188013077,-0.969920098781586,-0.207882136106491,0.180247083306313,-0.961403250694275,0.0676230415701866,0.188121855258942,-0.979814946651459,-0.0917090997099876,0.170335248112679,-0.981109261512756,0.00144836190156639,0.183941975235939,-0.982936143875122,-0.087932400405407,0.13751108944416,-0.986589372158051,-0.158955931663513,0.146537318825722,-0.976350247859955,0.00127858610358089,0.162380561232567,-0.986727356910706,0.0638137981295586,0.221861004829407,-0.972987949848175,-0.12440349906683,0.19703520834446,-0.972471535205841,-0.0954967588186264,0.20399110019207,-0.974303841590881,-0.0929106846451759,0.180929288268089,-0.979097664356232,-0.206742435693741,0.166461393237114,-0.964130759239197,-0.160118415951729,0.171797856688499,-0.972032725811005,-0.207813456654549,0.179403051733971,-0.961575865745544,-0.0944041609764099,0.194203183054924,-0.976408302783966,-0.12379465252161,0.193531706929207,-0.973252475261688,0.100374959409237,-0.262648552656174,-0.959656476974487,-0.0347499214112759,-0.24871888756752,-0.967952251434326,0.141118824481964,-0.274064689874649,-0.951301336288452,0.246642023324966,-0.247864902019501,-0.936872839927673,0.101117938756943,-0.248559653759003,-0.963324189186096,0.145472720265388,-0.242951422929764,-0.959068477153778,-0.0224229674786329,-0.197266548871994,-0.980093419551849,0.101149179041386,-0.247956797480583,-0.963476121425629,-0.0587322600185871,-0.210183069109917,-0.975896418094635,-0.240589737892151,-0.258436053991318,-0.93558943271637,-0.0495486930012703,-0.310079038143158,-0.949418723583221,-0.0716561004519463,-0.290198624134064,-0.954280018806458,0.101151175796986,-0.247918158769608,-0.963485896587372,0.246640279889107,-0.247650399804115,-0.936930000782013,
  866. 0.135742589831352,-0.255261778831482,-0.957295894622803,0.323730915784836,-0.238578915596008,-0.915575444698334,0.135752886533737,-0.255745768547058,-0.957165241241455,0.246640086174011,-0.247628316283226,-0.936935901641846,-0.0690117329359055,-0.273737639188766,-0.959325313568115,-0.120203651487827,-0.260790586471558,-0.957882761955261,-0.236238837242126,-0.238173484802246,-0.942053377628326,-0.30560576915741,-0.242580905556679,-0.920738637447357,-0.239827066659927,-0.254854708909988,-0.936766803264618,-0.120637908577919,-0.265966534614563,-0.956403851509094,-0.0654334053397179,-0.251536935567856,-0.965633273124695,0.100352816283703,-0.263061463832855,-0.959545731544495,0.00203032256104052,-0.25785094499588,-0.966182589530945,-0.119043081998825,-0.247121125459671,-0.961644351482391,-0.0642220973968506,-0.244040697813034,-0.967636108398438,0.00207561231218278,-0.263602823019028,-0.964629173278809,0.100368596613407,-0.262767225503922,-0.959624707698822,0.135626688599586,-0.249916598200798,-0.958721578121185,0.00201420998200774,-0.255804598331451,-0.966726422309875,-0.305668115615845,-0.246410265564919,-0.919700503349304,-0.121456049382687,-0.275812804698944,-0.95350706577301,-0.181033000349998,-0.249280124902725,-0.95136034488678,-0.180672392249107,-0.263794958591461,-0.947507083415985,-0.118801385164261,-0.244303405284882,-0.962393939495087,0.0020659992005676,-0.262381970882416,-0.964961886405945,-0.289360105991364,-0.236276566982269,-0.927601277828217,-0.305732756853104,-0.250733464956284,-0.918509781360626,-0.181012734770775,-0.250143527984619,-0.951137542724609,0.00201450381428003,-0.255841940641403,-0.966716527938843,0.135626316070557,-0.249899506568909,-0.958726108074188,0.0884709134697914,-0.251582235097885,-0.963783860206604,0.135666593909264,-0.251737028360367,-0.958239555358887,0.323550224304199,-0.235218107700348,-0.916508436203003,0.088560551404953,-0.25495970249176,-0.962887644767761,-0.0565987825393677,-0.260851174592972,-0.963718473911285,-0.180790767073631,-0.259214609861374,-0.948747873306274,0.00203455798327923,-0.2583889067173,-0.966038942337036,
  867. -0.287370622158051,-0.259887307882309,-0.921887695789337,-0.180754274129868,-0.260644346475601,-0.948363125324249,-0.0566146969795227,-0.260363847017288,-0.963849306106567,0.221339792013168,-0.245319649577141,-0.943836331367493,0.0885892137885094,-0.256047338247299,-0.962596356868744,0.32367080450058,-0.237452790141106,-0.915889501571655,0.323935270309448,-0.242468565702438,-0.914480805397034,0.34356877207756,-0.24082837998867,-0.907723605632782,0.221334129571915,-0.244576960802078,-0.944030463695526,-0.00205230270512402,-0.260642528533936,-0.965433180332184,0.00204067467711866,-0.259165555238724,-0.965830743312836,0.0885414257645607,-0.254233568906784,-0.963081359863281,0.088540606200695,-0.254202663898468,-0.96308958530426,0.221382454037666,-0.251573354005814,-0.942178785800934,-0.002051254035905,-0.260509371757507,-0.965469121932983,-0.00215502316132188,-0.273687750101089,-0.961816191673279,-0.0559014268219471,-0.281723409891129,-0.957865953445435,0.00217482424341142,-0.276202887296677,-0.961096882820129,0.343241721391678,-0.235673755407333,-0.909199118614197,0.0662016868591309,-0.282060950994492,-0.957109689712524,0.221346959471703,-0.246284559369087,-0.943583309650421,0.22137987613678,-0.251156240701675,-0.942290544509888,0.0617338605225086,-0.244215607643127,-0.967753946781158,-0.00204521417617798,-0.259742259979248,-0.965675830841064,0.00767665402963758,-0.301415324211121,-0.953462064266205,0.0660459250211716,-0.280734151601791,-0.957510471343994,0.343222320079803,-0.235372707247734,-0.90928441286087,-0.127255380153656,-0.22211991250515,-0.966679275035858,0.0566263310611248,-0.201468035578728,-0.977856993675232,-0.00792019627988338,-0.205430194735527,-0.978639721870422,-0.160046517848969,-0.258511364459991,-0.952657878398895,-0.287712544202805,-0.255979925394058,-0.922873675823212,-0.0566307939589024,-0.259870529174805,-0.963981449604034,-0.157894462347031,-0.302911311388016,-0.939847886562347,-0.0553561113774776,-0.297433137893677,-0.953136503696442,-0.00227256072685122,-0.288614988327026,-0.95744264125824,
  868. -0.286684542894363,-0.267557203769684,-0.919904947280884,-0.159645155072212,-0.267399609088898,-0.950268864631653,-0.213391900062561,-0.266273647546768,-0.939979910850525,0.0645004659891129,-0.267598867416382,-0.961369097232819,-0.0911455303430557,-0.283508837223053,-0.954628348350525,-0.00214546779170632,-0.272474378347397,-0.962160646915436,-0.0874957144260406,-0.315086036920547,-0.945021331310272,-0.157845631241798,-0.303836971521378,-0.939557254314423,-0.00231086695566773,-0.293479949235916,-0.955962538719177,0.0605225637555122,-0.234029144048691,-0.970343947410584,-0.121733084321022,-0.255471348762512,-0.959122240543365,-0.094809003174305,-0.250572919845581,-0.963444173336029,-0.0922613590955734,-0.273613691329956,-0.957404494285584,-0.212183207273483,-0.280064463615417,-0.936238288879395,-0.159123286604881,-0.278501629829407,-0.947162389755249,-0.213304325938225,-0.267292112112045,-0.939710795879364,-0.0937135368585587,-0.260558307170868,-0.960899233818054,-0.121049180626869,-0.259520351886749,-0.958121240139008,-0.049543421715498,-0.463862925767899,0.884520709514618,-0.0876071229577065,-0.471426606178284,0.877543151378632,-0.0298011414706707,-0.457155287265778,0.888887584209442,0.0969323366880417,-0.416462779045105,0.9039705991745,-0.0508399270474911,-0.459319561719894,0.886815011501312,-0.0296178106218576,-0.45769539475441,0.888615608215332,0.112797722220421,-0.452578455209732,0.884561836719513,-0.14275036752224,-0.560535848140717,0.815733969211578,0.237792328000069,-0.398125499486923,0.885974526405334,-0.0335221588611603,-0.446144431829453,0.894332945346832,-0.290902495384216,-0.509392261505127,0.809873759746552,0.098253920674324,-0.419485598802567,0.902428925037384,-0.157798245549202,-0.531922101974487,0.831960678100586,0.10072734951973,-0.425135999917984,0.899507284164429,-0.288207143545151,-0.516594171524048,0.806267380714417,-0.194696545600891,-0.456949144601822,0.867923259735107,-0.291620999574661,-0.507455945014954,0.810830235481262,-0.49787375330925,-0.524602890014648,0.690589368343353,-0.0335584878921509,-0.446036517620087,0.894385397434235,
  869. -0.505190849304199,-0.49767205119133,0.705056548118591,-0.295454502105713,-0.497014224529266,0.815894424915314,-0.48915958404541,-0.540196299552917,0.68477064371109,-0.285570323467255,-0.523550570011139,0.802710652351379,-0.495026469230652,-0.540323793888092,0.680440306663513,-0.285389989614487,-0.524023175239563,0.80246639251709,-0.491776525974274,-0.541986763477325,0.681473553180695,-0.494900077581406,-0.540650427341461,0.68027275800705,-0.504860758781433,-0.514026403427124,0.69346421957016,-0.500668227672577,-0.513277113437653,0.6970494389534,-0.508441388607025,-0.512909173965454,0.69167298078537,-0.0466959252953529,0.179487451910973,0.98265141248703,-0.087370827794075,0.168701782822609,0.981787264347076,-0.0250976327806711,0.188217297196388,0.981806695461273,0.102876782417297,0.234709054231644,0.966606438159943,-0.0491237379610538,0.188819363713264,0.980782389640808,-0.0261175893247128,0.191481724381447,0.981148719787598,0.116204611957073,0.201342791318893,0.972603619098663,-0.139801427721977,0.0743408128619194,0.987384915351868,0.235154628753662,0.243651896715164,0.940922975540161,-0.0324173793196678,0.211615264415741,0.976815283298492,-0.284385770559311,0.110595352947712,0.952309489250183,0.101492740213871,0.238136798143387,0.965914130210876,-0.154863655567169,0.106701381504536,0.982156813144684,0.103980392217636,0.231970846652985,0.967149198055267,-0.281688243150711,0.10279618948698,0.95398360490799,-0.192532315850258,0.188974738121033,0.9629225730896,-0.2859166264534,0.115043990314007,0.951323688030243,-0.500019967556,0.0218151714652777,0.865739047527313,-0.0328614003956318,0.213032379746437,0.976492464542389,-0.504471123218536,0.0530891269445419,0.861794888973236,-0.289509683847427,0.125551387667656,0.948905169963837,-0.491321295499802,0.00592727260664105,0.870958209037781,-0.279792845249176,0.0973459705710411,0.955112516880035,-0.495831936597824,0.00431676022708416,0.868407785892487,-0.279638409614563,0.096902921795845,0.95520281791687,-0.491124778985977,0.00436212727800012,0.871078312397003,-0.495721995830536,0.00400553224608302,0.868472039699554,
  870. -0.505695641040802,0.0329187177121639,0.862083673477173,-0.500043392181396,0.0363915525376797,0.865235507488251,-0.508936882019043,0.0329778715968132,0.860171914100647,-0.0386861674487591,-0.291436433792114,0.955807626247406,-0.0744892507791519,-0.301084935665131,0.950683653354645,-0.0125330621376634,-0.281284272670746,0.959542632102966,0.103869967162609,-0.227338016033173,0.968260645866394,-0.0426520854234695,-0.278453856706619,0.959502100944519,-0.0152115114033222,-0.273755043745041,0.96167916059494,0.097365565598011,-0.213102012872696,0.972166359424591,-0.156899660825729,-0.337140768766403,0.928287982940674,0.227115765213966,-0.151151075959206,0.962066411972046,-0.00651272339746356,-0.298128634691238,0.95450347661972,-0.254205733537674,-0.392595142126083,0.883882641792297,0.121534563601017,-0.266000211238861,0.956280946731567,-0.133284732699394,-0.382646858692169,0.914230048656464,0.117084085941315,-0.2562595307827,0.959490656852722,-0.258833736181259,-0.381353437900543,0.887454032897949,-0.178474709391594,-0.293942123651505,0.939012706279755,-0.26925802230835,-0.355422407388687,0.895083785057068,-0.47893363237381,-0.406015872955322,0.778314650058746,-0.00297384732402861,-0.307979166507721,0.951388478279114,-0.476107954978943,-0.417665332555771,0.773871541023254,-0.259109646081924,-0.380677789449692,0.887663543224335,-0.491440296173096,-0.384187668561935,0.781592309474945,-0.278334617614746,-0.332121968269348,0.901235282421112,-0.491672426462173,-0.384057968854904,0.781510055065155,-0.279035627841949,-0.330293208360672,0.901690483093262,-0.487759202718735,-0.382828086614609,0.784559488296509,-0.492311477661133,-0.382370829582214,0.781934916973114,-0.466936767101288,-0.445325046777725,0.763973593711853,-0.466520607471466,-0.444456189870834,0.76473343372345,-0.474351286888123,-0.445321351289749,0.759394347667694,-0.0478966347873211,-0.617095768451691,0.785429000854492,-0.0868968218564987,-0.623371243476868,0.777082502841949,-0.0271110329777002,-0.611037135124207,0.791137516498566,0.0981815233826637,-0.566538453102112,0.818165361881256,
  871. -0.0513191372156143,-0.60633385181427,0.79355251789093,-0.0294129978865385,-0.604958176612854,0.795713841915131,0.092083677649498,-0.554032206535339,0.827386915683746,-0.167234644293785,-0.64582884311676,0.744941413402557,0.220209315419197,-0.49938103556633,0.837929844856262,-0.0214629285037518,-0.625770032405853,0.779712378978729,-0.273552596569061,-0.677346587181091,0.682913303375244,0.113974951207638,-0.59844982624054,0.793011665344238,-0.145365953445435,-0.683837652206421,0.71500688791275,0.109948344528675,-0.590380549430847,0.799601256847382,-0.277727276086807,-0.667977273464203,0.690415799617767,-0.187945306301117,-0.607319891452789,0.771906197071075,-0.286772638559341,-0.646939694881439,0.706562459468842,-0.496932446956635,-0.643442213535309,0.582271754741669,-0.0186944045126438,-0.632897317409515,0.774010002613068,-0.491382509469986,-0.651738345623016,0.577737271785736,-0.277774482965469,-0.667870044708252,0.690500497817993,-0.508587002754211,-0.623773753643036,0.593502759933472,-0.294903486967087,-0.627116799354553,0.720941364765167,-0.505815088748932,-0.623564481735229,0.596085965633392,-0.295520305633545,-0.625575959682465,0.722026705741882,-0.501051485538483,-0.623943209648132,0.599701821804047,-0.506380379199982,-0.622137129306793,0.597096562385559,-0.483583837747574,-0.675136029720306,0.557079911231995,-0.482628107070923,-0.674710512161255,0.55842262506485,-0.493767261505127,-0.672757208347321,0.550991535186768,0.0287550687789917,0.664322435855865,0.746892809867859,0.000669784494675696,0.664288878440857,0.747475743293762,-0.0372090041637421,0.66297048330307,0.747720301151276,-0.0695185884833336,0.655297338962555,0.752165257930756,0.0287550687789917,0.664322435855865,0.746892809867859,-0.0372090041637421,0.66297048330307,0.747720301151276,0.349903404712677,0.653784334659576,0.670920014381409,0.0281548202037811,0.692610085010529,0.720762491226196,-0.0686287134885788,0.650546610355377,0.756359219551086,-0.0695278644561768,0.655346810817719,0.752121448516846,-0.0359135530889034,0.631013989448547,0.774939715862274,
  872. -0.261575758457184,0.620769858360291,0.739068984985352,0.349905014038086,0.653775036334991,0.670928180217743,-0.0685189366340637,0.649959683418274,0.756873548030853,0.148837700486183,0.621549606323242,0.769105613231659,0.117979094386101,0.690597653388977,0.713551580905914,-0.068548858165741,0.650119662284851,0.756733417510986,-0.253016978502274,0.593613386154175,0.763940811157227,0.354775816202164,0.934423565864563,0.0314124189317226,0.537348866462708,0.843119144439697,-0.0201567746698856,0.373165845870972,0.927758097648621,0.00348578067496419,0.354195296764374,0.934727311134338,0.0288188271224499,0.375007480382919,0.926811754703522,0.0197325516492128,0.187151625752449,0.980473339557648,0.0603848695755005,-0.161966145038605,0.972124934196472,0.169529557228088,0.356260180473328,0.933609902858734,0.0380953252315521,0.192982867360115,0.976716756820679,0.0937134474515915,0.37479493021965,0.926936745643616,0.0178111642599106,0.271022796630859,0.962124466896057,0.0293790604919195,0.186000913381577,0.981067836284637,0.0539425574243069,-0.173960566520691,0.974813520908356,0.139557719230652,0.193181648850441,0.976565599441528,0.0948707610368729,-0.00650782370939851,0.989662706851959,0.143266722559929,0.191249161958694,0.977967858314514,0.0836814194917679,0.275773644447327,0.956711649894714,0.0930156409740448,-0.00955986883491278,0.992933809757233,0.118283875286579,0.0366345606744289,-0.266782611608505,0.963060319423676,-0.00295319873839617,-0.267826735973358,0.963462591171265,-0.0391251742839813,-0.268609523773193,0.962454199790955,-0.0665796399116516,-0.27613765001297,0.95880925655365,0.0366345606744289,-0.266782611608505,0.963060319423676,-0.0391251742839813,-0.268609523773193,0.962454199790955,0.349653482437134,-0.20892208814621,0.913287580013275,0.0360530316829681,-0.22934128344059,0.972678124904633,-0.065500020980835,-0.283368527889252,0.956771671772003,-0.0706757381558418,-0.248319119215012,0.966096580028534,-0.0386912077665329,-0.280322879552841,0.959125697612762,-0.270444542169571,-0.258529365062714,0.927374005317688,
  873. 0.349639862775803,-0.208822250366211,0.913315534591675,-0.0653442591428757,-0.284408420324326,0.956473827362061,0.148439109325409,-0.309037178754807,0.939394414424896,0.100332260131836,-0.178314626216888,0.978845000267029,-0.0725276917219162,-0.235537111759186,0.969155311584473,-0.267032355070114,-0.273148089647293,0.924166560173035,0.35144516825676,0.48210272192955,0.802535533905029,0.534367501735687,0.47474616765976,0.699333548545837,0.375507652759552,0.501340985298157,0.779520034790039,0.351169496774673,0.483252048492432,0.80196475982666,0.377374172210693,0.486173897981644,0.78817743062973,0.191218078136444,0.481454163789749,0.855358123779297,-0.161670625209808,0.385533511638641,0.908419787883759,0.354087322950363,0.470913469791412,0.807999193668365,0.19703097641468,0.45154219865799,0.870223343372345,0.377218335866928,0.487483561038971,0.787442922592163,0.26921758055687,0.497310847043991,0.824744701385498,0.19006122648716,0.487211316823959,0.852350771427155,-0.173280000686646,0.411670386791229,0.894707500934601,0.197218015789986,0.450550973415375,0.87069445848465,-0.010069040581584,0.415462404489517,0.909554600715637,0.195287466049194,0.460692018270493,0.865809261798859,0.274046748876572,0.441680639982224,0.854293048381805,-0.0131535045802593,0.43920037150383,0.89829283952713,0.0294210966676474,0.189375877380371,0.98146378993988,-0.00387221458368003,0.188614308834076,0.982043623924255,-0.0383019298315048,0.187682867050171,0.981482625007629,-0.0665166601538658,0.179309204220772,0.981541514396667,0.0294210966676474,0.189375877380371,0.98146378993988,-0.0383019298315048,0.187682867050171,0.981482625007629,0.349127560853958,0.224035605788231,0.909900009632111,0.0287868995219469,0.23262645304203,0.97214013338089,-0.0663102269172668,0.177878960967064,0.981815695762634,-0.0721570551395416,0.218628868460655,0.97313666343689,-0.0382691733539104,0.186700195074081,0.981671392917633,-0.269124388694763,0.192558720707893,0.943659484386444,0.350960910320282,0.210332259535789,0.912461936473846,-0.0639580190181732,0.161624476313591,0.984777569770813,
  874. 0.154564410448074,0.134177267551422,0.978829145431519,0.120092250406742,0.233361080288887,0.9649458527565,-0.0660937577486038,0.176379799842834,0.98210072517395,-0.253078162670136,0.123826719820499,0.9594886302948,0.220956355333328,-0.576891481876373,0.786367893218994,0.220808491110802,-0.576787352561951,0.786485850811005,0.113510645925999,-0.550189137458801,0.82728910446167,0.213312596082687,-0.594239413738251,0.775485217571259,0.104335241019726,-0.569202780723572,0.815550327301025,0.173288702964783,-0.583175599575043,0.793648064136505,0.382170408964157,-0.594711422920227,0.707293510437012,0.231852263212204,-0.551247417926788,0.801480412483215,0.17372353374958,-0.581319749355316,0.794913530349731,0.0996016785502434,-0.578833878040314,0.809339761734009,0.079469233751297,-0.57218325138092,0.816266477108002,0.174108862876892,-0.579669415950775,0.796033561229706,0.374132484197617,-0.556361019611359,0.741948306560516,0.173969969153404,-0.580264866352081,0.795630037784576,0.121592454612255,-0.608961939811707,0.783824384212494,0.174201563000679,-0.579271554946899,0.796302914619446,0.0800910443067551,-0.570361733436584,0.817479610443115,0.120721846818924,-0.570288300514221,0.812525510787964,-0.449462056159973,0.867294311523438,0.213973090052605,-0.233195394277573,0.970534801483154,0.0606821589171886,-0.446768969297409,0.871227741241455,0.203370913863182,-0.133560881018639,0.971128046512604,0.197666510939598,-0.152366176247597,0.971161961555481,0.183382079005241,-0.398981034755707,0.855929374694824,0.328936129808426,-0.000695867696776986,0.920222938060761,0.391393959522247,-0.0266580786556005,0.926707446575165,0.374836802482605,0.166341945528984,0.952218949794769,0.256143391132355,-0.0582099258899689,0.944092333316803,0.324501901865005,0.0471853837370873,0.963391184806824,0.263914674520493,0.140596345067024,0.967229306697845,0.211424082517624,-0.0500824488699436,0.939948976039886,0.337620943784714,0.0160167459398508,0.956034779548645,0.292815625667572,0.0547877289354801,0.959243655204773,0.277218610048294,-0.383238911628723,0.850123941898346,0.361133307218552,
  875. -0.217358812689781,0.9245725274086,0.312922954559326,-0.119693405926228,0.967733502388,0.221732646226883,0.0451129712164402,0.935091137886047,0.351524382829666,-0.0225158277899027,0.924166202545166,0.381326496601105,-0.16269713640213,0.886346399784088,0.433497041463852,-0.175045371055603,0.896246254444122,0.407555848360062,-0.332844197750092,0.82589727640152,0.455091714859009,-0.331787377595901,0.825811505317688,0.45601812005043,-0.242607563734055,0.869009792804718,0.431234925985336,0.0422649644315243,0.937343895435333,0.34583243727684,-0.166063725948334,0.889114499092102,0.426495313644409,-0.317117124795914,0.851270914077759,0.418060451745987,-0.189286187291145,0.906777381896973,0.376730024814606,-0.344989955425262,0.83720189332962,0.424352377653122,-0.192355155944824,0.908918499946594,0.369955211877823,-0.320338398218155,0.854102790355682,0.409745901823044,-0.256662726402283,0.8820960521698,0.395007342100143,-0.450846284627914,0.289883017539978,0.844218850135803,-0.231554597616196,0.477637410163879,0.847493350505829,-0.444801449775696,0.30386009812355,0.842508614063263,-0.134801119565964,0.359433889389038,0.923382878303528,-0.15028004348278,0.374945819377899,0.914784967899323,-0.400403916835785,0.187113389372826,0.897031366825104,0.00235041370615363,0.172108024358749,0.985075294971466,-0.028931088745594,0.187348380684853,0.981867492198944,0.164877206087112,0.301392883062363,0.939136862754822,-0.0602109879255295,0.23883929848671,0.969190716743469,0.0438746958971024,0.299179404973984,0.953187644481659,0.139814704656601,0.346423089504242,0.927600622177124,-0.052106935530901,0.225549846887589,0.972837150096893,0.0202768128365278,0.274715036153793,0.961311876773834,0.0515229888260365,0.285786271095276,0.956907331943512,-0.384652584791183,0.156880304217339,0.909632325172424,-0.215755105018616,0.240734502673149,0.946306824684143,-0.120834112167358,0.337094932794571,0.933684170246124,0.0493651628494263,0.213889628648758,0.975609719753265,-0.0244881696999073,0.179991871118546,0.983363211154938,-0.159821838140488,0.117418870329857,0.980137646198273,
  876. -0.172941982746124,0.145939335227013,0.97406005859375,-0.334338754415512,0.0649259984493256,0.940213918685913,-0.331057965755463,0.0654639229178429,0.941336870193481,-0.23947486281395,0.111601300537586,0.964467167854309,0.0464706122875214,0.220010012388229,0.974390089511871,-0.163062065839767,0.124440684914589,0.978736579418182,-0.319026798009872,0.1099598929286,0.941345274448395,-0.187270164489746,0.177360504865646,0.966164112091064,-0.344342619180679,0.0980741456151009,0.933707475662231,-0.190289959311485,0.184020593762398,0.964326798915863,-0.322217643260956,0.118283793330193,0.939246892929077,-0.253037124872208,0.148127794265747,0.956049382686615,-0.45044618844986,0.635447263717651,0.62714034318924,-0.234116300940514,0.803394019603729,0.547492146492004,-0.447034657001495,0.644637525081635,0.620163381099701,-0.131262391805649,0.734643161296844,0.665634751319885,-0.152808174490929,0.741457641124725,0.653368413448334,-0.40025207400322,0.566838145256042,0.720064401626587,0.00057259009918198,0.590724050998688,0.806873440742493,-0.0250178389251232,0.6063272356987,0.794821739196777,0.166103914380074,0.687550067901611,0.706883668899536,-0.0563819445669651,0.646875977516174,0.760508060455322,0.0432293452322483,0.69173264503479,0.720858633518219,0.140319347381592,0.723362505435944,0.676060020923615,-0.0482744202017784,0.636604011058807,0.769678473472595,0.0212597008794546,0.674045383930206,0.738383948802948,0.050894845277071,0.681396305561066,0.730143010616302,-0.38445833325386,0.545191407203674,0.744955122470856,-0.21618315577507,0.634943068027496,0.741695523262024,-0.117331609129906,0.719309449195862,0.684709548950195,0.0504048317670822,0.62580680847168,0.778347730636597,-0.0206089206039906,0.600452482700348,0.799394845962524,-0.162119954824448,0.540934562683105,0.82529205083847,-0.174154654145241,0.562275588512421,0.808403551578522,-0.334347903728485,0.476365268230438,0.813195943832397,-0.33220899105072,0.476697951555252,0.813877284526825,-0.240297541022301,0.526842474937439,0.815287709236145,0.0475025027990341,0.630762815475464,0.774520337581635,
  877. -0.16555891931057,0.547055602073669,0.820561051368713,-0.319497495889664,0.516981780529022,0.794135510921478,-0.188354849815369,0.587161421775818,0.787250876426697,-0.345468550920486,0.502561986446381,0.792516827583313,-0.19140237569809,0.592459201812744,0.782532572746277,-0.322682946920395,0.523484706878662,0.788568019866943,-0.254859626293182,0.557389318943024,0.790166914463043,-0.0945434793829918,-0.535264134407043,-0.839377045631409,-0.0403994992375374,-0.483230650424957,-0.874560475349426,0.109682910144329,-0.412846744060516,-0.904172122478485,-0.0955109223723412,-0.534121453762054,-0.839995324611664,-0.242611274123192,-0.606155157089233,-0.757440209388733,-0.0108892899006605,-0.546694993972778,-0.837261021137238,0.101860873401165,-0.401073098182678,-0.910365164279938,-0.0569219700992107,-0.44611793756485,-0.893162310123444,0.12853117287159,-0.370609909296036,-0.919852197170258,-0.00832682847976685,-0.552036821842194,-0.833778142929077,-0.240186080336571,-0.611103475093842,-0.754230201244354,-0.0596699379384518,-0.603321850299835,-0.795262396335602,0.137174248695374,-0.399604082107544,-0.906366288661957,-0.0488678254187107,-0.464352279901505,-0.884301364421844,-0.0933315753936768,-0.441518068313599,-0.892385005950928,-0.156043693423271,-0.756728410720825,-0.634832680225372,-0.0164244007319212,-0.719971001148224,-0.693809807300568,0.140462800860405,-0.650186002254486,-0.746678233146667,-0.180843189358711,-0.718805730342865,-0.671277940273285,-0.199019566178322,-0.7390998005867,-0.643523633480072,-0.0327059924602509,-0.691373288631439,-0.721757113933563,0.17106506228447,-0.686852514743805,-0.70637834072113,-0.00550646940246224,-0.738367736339569,-0.674375832080841,0.194268748164177,-0.658649682998657,-0.726938962936401,-0.0208864826709032,-0.71227240562439,-0.701592326164246,-0.201041415333748,-0.729176342487335,-0.654128551483154,0.0408343933522701,-0.728241562843323,-0.684103012084961,-0.0184005070477724,-0.716574430465698,-0.697267889976501,0.0362577326595783,-0.675330936908722,-0.736623048782349,0.190694347023964,-0.648340046405792,-0.737082660198212,
  878. -0.349252671003342,-0.231823980808258,-0.907898902893066,-0.202668011188507,-0.188565000891685,-0.960920870304108,-0.0336545743048191,-0.122079700231552,-0.991949558258057,-0.366636127233505,-0.177775919437408,-0.913221597671509,-0.380461901426315,-0.205373406410217,-0.901704251766205,-0.21400885283947,-0.146788597106934,-0.965739786624908,-0.00828471686691046,-0.180924713611603,-0.983462035655975,-0.194840297102928,-0.216405183076859,-0.956664025783539,0.0191741399466991,-0.150996342301369,-0.988348364830017,-0.205818980932236,-0.177134543657303,-0.962425112724304,-0.380900382995605,-0.192194253206253,-0.904420435428619,-0.154047235846519,-0.207475200295448,-0.966034948825836,-0.204011708498001,-0.183706700801849,-0.961577415466309,-0.150831446051598,-0.136778563261032,-0.979051351547241,0.0172510743141174,-0.135852217674255,-0.990579009056091,-0.0634977295994759,-0.686904668807983,-0.723968207836151,-0.152207508683205,-0.684113204479218,-0.713317573070526,-0.0530147366225719,-0.690122961997986,-0.721747696399689,-0.305151015520096,-0.674834907054901,-0.671923160552979,-0.151997834444046,-0.686743497848511,-0.710830509662628,-0.0633943825960159,-0.687963128089905,-0.722971618175507,0.107360832393169,-0.689627885818481,-0.71616131067276,-0.0633819848299026,-0.6880903840065,-0.722851574420929,-0.0516823120415211,-0.683046042919159,-0.728544473648071,-0.0606128834187984,-0.715425789356232,-0.696054637432098,0.138147860765457,-0.664270341396332,-0.734615623950958,-0.300394594669342,-0.693532645702362,-0.654809653759003,0.107932977378368,-0.683645963668823,-0.72178852558136,0.144025608897209,-0.688592076301575,-0.710702180862427,-0.0619287863373756,-0.702677607536316,-0.708808183670044,-0.0424587316811085,-0.678865790367126,-0.733033776283264,-0.30158668756485,-0.688962340354919,-0.659072458744049,0.136995360255241,-0.659488499164581,-0.739125967025757,0.418579131364822,-0.573598086833954,-0.704114139080048,0.138882383704185,-0.667315542697906,-0.731711447238922,0.114118374884129,-0.609718799591064,-0.784359753131866,
  879. -0.0333975031971931,-0.70931202173233,-0.704103112220764,0.138762876391411,-0.666820168495178,-0.73218560218811,0.418382555246353,-0.572850584983826,-0.704839289188385,0.469001591205597,0.715054869651794,0.518395662307739,0.0131818950176239,0.718057990074158,0.695858538150787,0.286024838685989,0.711428165435791,0.641918897628784,0.46752393245697,0.720619916915894,0.511984705924988,0.24990913271904,0.778758525848389,0.575396001338959,0.00833871308714151,0.73098212480545,0.682345688343048,0.23296731710434,0.804389238357544,0.546520054340363,-0.00839841086417437,0.773485779762268,0.633758187294006,-0.197105541825294,0.71104097366333,0.674959361553192,-0.00381624884903431,0.762182295322418,0.647351384162903,0.249793916940689,0.779953896999359,0.573824822902679,-0.0845530852675438,0.762580871582031,0.641343295574188,-0.0211071986705065,0.803519129753113,0.594904601573944,-0.0913947075605392,0.785480558872223,0.612100720405579,-0.218714758753777,0.750757038593292,0.62332010269165,0.250485718250275,0.772571861743927,0.583429396152496,0.14776124060154,0.78682267665863,0.599230110645294,-0.0834754332900047,0.758912146091461,0.645820558071136,-0.187005460262299,0.76170027256012,0.620356023311615,-0.237573638558388,0.783980011940002,0.573527812957764,-0.0946454256772995,0.796116828918457,0.597695767879486,-0.0924050435423851,0.788803577423096,0.607659637928009,0.147808209061623,0.785685300827026,0.600709080696106,-0.188685104250908,0.770348370075226,0.609066128730774,0.229808568954468,0.608210802078247,0.759781301021576,-0.238497197628021,0.495465725660324,0.835244178771973,0.0300722513347864,0.541945338249207,0.83987557888031,0.228691503405571,0.612523555755615,0.756647288799286,0.00815784186124802,0.615454733371735,0.788130044937134,-0.241793215274811,0.50516402721405,0.828459620475769,-0.025946157053113,0.64726197719574,0.761825919151306,-0.259290724992752,0.557207465171814,0.788852453231812,-0.44068118929863,0.459671348333359,0.77103978395462,-0.242684364318848,0.507791519165039,0.826590657234192,0.0107528539374471,0.584046721458435,0.811648786067963,
  880. -0.324671655893326,0.498368710279465,0.803876221179962,-0.33120197057724,0.526470482349396,0.783028781414032,-0.446585357189178,0.473891168832779,0.758939146995544,-0.260589063167572,0.561109900474548,0.785651981830597,0.0115516567602754,0.574155151844025,0.818665027618408,-0.101394832134247,0.566838502883911,0.817565560340881,-0.323496282100677,0.493426829576492,0.807390928268433,-0.427988857030869,0.484817385673523,0.762743473052979,-0.464055359363556,0.517473995685577,0.718939125537872,-0.334080189466476,0.539241194725037,0.773051977157593,-0.332260459661484,0.531137406826019,0.77942031621933,-0.101333878934383,0.565421938896179,0.818553268909454,-0.429782837629318,0.496454328298569,0.754201471805573,0.151873677968979,0.617733061313629,0.771583080291748,0.235479399561882,0.61055713891983,0.756154358386993,0.136730343103409,0.621970891952515,0.771010398864746,0.390238732099533,0.594643414020538,0.702931702136993,0.235318914055824,0.613233804702759,0.754035353660584,0.151729390025139,0.619982779026031,0.769804894924164,-0.0247000344097614,0.635160386562347,0.771985232830048,0.151609614491463,0.621831655502319,0.768335819244385,0.135941877961159,0.617746353149414,0.774538099765778,0.149614170193672,0.650457382202148,0.744661509990692,-0.0571055375039577,0.604712128639221,0.794394254684448,0.385801702737808,0.615099430084229,0.687611639499664,-0.0254010017961264,0.628471732139587,0.777417540550232,-0.0637553334236145,0.635879516601563,0.769150495529175,0.150653690099716,0.636028647422791,0.756816387176514,0.124049589037895,0.608339548110962,0.783922672271729,0.386925280094147,0.610069572925568,0.691450655460358,-0.0559628456830978,0.599300742149353,0.798565447330475,-0.342834770679474,0.547197580337524,0.763570129871368,-0.0606743283569813,0.621508181095123,0.781054675579071,-0.0323315151035786,0.55872917175293,0.828719735145569,0.110943339765072,0.657170534133911,0.745532333850861,-0.0605278350412846,0.620821893215179,0.781611561775208,-0.342638343572617,0.546340465545654,0.76427173614502,0.335085719823837,0.856765270233154,0.392009019851685,
  881. -0.132178992033005,0.834310710430145,0.535214245319366,0.136695846915245,0.852423012256622,0.504667460918427,0.334098756313324,0.859140455722809,0.38762828707695,0.118392214179039,0.89776211977005,0.424271732568741,-0.135621875524521,0.840586066246033,0.524425387382507,0.0808471739292145,0.917506635189056,0.389416933059692,-0.153913870453835,0.872189164161682,0.464323729276657,-0.338147342205048,0.798100471496582,0.498690336942673,-0.136879727244377,0.842853724956512,0.520443618297577,0.120862349867821,0.880124092102051,0.459101110696793,-0.21673683822155,0.833363950252533,0.508458137512207,-0.155602768063545,0.874952077865601,0.458526581525803,-0.22392426431179,0.851164758205414,0.474738597869873,-0.343694090843201,0.805566132068634,0.482636123895645,0.121589362621307,0.87439239025116,0.469738215208054,0.015025676228106,0.878739416599274,0.47706526517868,-0.215636044740677,0.830599367618561,0.513425529003143,-0.322783946990967,0.814925134181976,0.481360107660294,-0.360894054174423,0.827901363372803,0.429342329502106,-0.227310314774513,0.859388649463654,0.458018779754639,-0.224906474351883,0.853561580181122,0.469946503639221,0.0150738200172782,0.87790721654892,0.478593438863754,-0.324580788612366,0.822116196155548,0.467731267213821,-0.113519676029682,0.971681714057922,-0.207238927483559,-0.106745488941669,0.975642323493958,-0.191644102334976,0.0835990533232689,0.97746467590332,-0.193840265274048,-0.295293629169464,0.925654053688049,-0.236571833491325,-0.107217639684677,0.962440550327301,-0.249424859881401,-0.111271426081657,0.965124845504761,-0.236965700984001,0.0227017272263765,0.97755491733551,-0.209454149007797,-0.113731727004051,0.972268462181091,-0.204350605607033,0.0833558663725853,0.977973997592926,-0.19136056303978,-0.112399980425835,0.968490898609161,-0.222242340445518,-0.219537228345871,0.95027357339859,-0.220870450139046,-0.294041574001312,0.93025541305542,-0.21946382522583,0.0124729005619884,0.985176503658295,-0.171089753508568,-0.217260614037514,0.948900580406189,-0.228878855705261,-0.114600859582424,0.974612176418304,-0.192348033189774,
  882. -0.435784667730331,0.862176775932312,-0.25834658741951,-0.298758685588837,0.908431112766266,-0.292397290468216,-0.222536370158196,0.951992213726044,-0.210210919380188,-0.174716383218765,0.956096231937408,-0.235274776816368,-0.216860368847847,0.948653221130371,-0.230279520153999,0.0132148489356041,0.984678268432617,-0.173879325389862,-0.436808526515961,0.8630530834198,-0.253649234771729,-0.222251012921333,0.951833069324493,-0.211230471730232,-0.230393290519714,0.961598694324493,-0.149154588580132,-0.142033189535141,-0.989845871925354,0.00564948795363307,-0.0018215102609247,-0.997186720371246,-0.0749356970191002,0.142572820186615,-0.975220680236816,-0.169167444109917,-0.14883990585804,-0.988840818405151,-0.00638249982148409,-0.177376449108124,-0.983519196510315,0.0350362583994865,-0.000760573719162494,-0.997347176074982,-0.072787418961525,0.164166584610939,-0.97689962387085,-0.136808305978775,-0.000421501783421263,-0.997397243976593,-0.0721007063984871,0.193466126918793,-0.965341210365295,-0.175178170204163,-0.00515578826889396,-0.996644914150238,-0.0816846415400505,-0.189005702733994,-0.981828451156616,-0.017022917047143,0.0475150011479855,-0.997160375118256,-0.0584254674613476,0.00507466029375792,-0.998127043247223,-0.0609642267227173,0.0398065224289894,-0.992714166641235,-0.113728031516075,0.203016921877861,-0.968302190303802,-0.145516335964203,0.0403184480965137,-0.708654999732971,-0.704402208328247,0.0852843597531319,-0.657099962234497,-0.748963415622711,0.234881803393364,-0.565927803516388,-0.790288865566254,0.00421249074861407,-0.680698096752167,-0.7325519323349,-0.123251631855965,-0.75317656993866,-0.646168947219849,0.0994861498475075,-0.676974654197693,-0.729251563549042,0.230340212583542,-0.56148886680603,-0.794779002666473,0.0687325969338417,-0.633274555206299,-0.770869135856628,0.233489468693733,-0.542092144489288,-0.807229101657867,0.102057568728924,-0.680516302585602,-0.725590705871582,-0.120839774608612,-0.756407380104065,-0.642841875553131,0.0666754245758057,-0.727728247642517,-0.682617008686066,0.243937954306602,-0.563352167606354,-0.789384961128235,
  883. 0.0765515491366386,-0.644617557525635,-0.760662913322449,0.0302129406481981,-0.633598327636719,-0.773072004318237,-0.147791460156441,-0.834129393100739,-0.53139990568161,-0.0169872548431158,-0.79863041639328,-0.601582169532776,0.134774804115295,-0.725940227508545,-0.674423098564148,-0.165554970502853,-0.814907073974609,-0.555444180965424,-0.184697613120079,-0.832459986209869,-0.522395610809326,-0.0261396858841181,-0.787493884563446,-0.615767896175385,0.170276895165443,-0.755894482135773,-0.63216245174408,-0.00456621311604977,-0.81320858001709,-0.581954419612885,0.193963900208473,-0.727857887744904,-0.65772408246994,-0.0148709518834949,-0.801157653331757,-0.598268568515778,-0.188758179545403,-0.822787404060364,-0.536088824272156,0.0370174236595631,-0.812586784362793,-0.581663489341736,-0.0100096054375172,-0.806895613670349,-0.59060925245285,0.0265306085348129,-0.771747291088104,-0.635375678539276,0.196369796991348,-0.732283115386963,-0.652073860168457,-0.134094774723053,-0.88825261592865,-0.439347088336945,-0.0129661662504077,-0.85120677947998,-0.524670302867889,0.124232187867165,-0.776368021965027,-0.617915093898773,-0.141939535737038,-0.882616341114044,-0.448153465986252,-0.162410601973534,-0.899258613586426,-0.406148970127106,-0.0120461219921708,-0.851931631565094,-0.523514449596405,0.145916253328323,-0.789072692394257,-0.596718311309814,-0.0141193484887481,-0.850294888019562,-0.526117146015167,0.167646050453186,-0.761225819587708,-0.62644237279892,-0.0253525245934725,-0.841220438480377,-0.540097534656525,-0.186035975813866,-0.867198586463928,-0.461906313896179,0.0394341088831425,-0.846374571323395,-0.531126201152802,-0.00401797285303473,-0.858157932758331,-0.513370037078857,0.0285146199166775,-0.825058698654175,-0.564327299594879,0.183246612548828,-0.778820753097534,-0.599882423877716,-0.179532259702683,-0.613493323326111,-0.769021570682526,-0.0539844483137131,-0.5424924492836,-0.838324308395386,0.084751307964325,-0.43563038110733,-0.896126866340637,-0.188240960240364,-0.603531241416931,-0.7748002409935,-0.204840004444122,-0.633777260780334,-0.745900094509125,
  884. -0.0524266287684441,-0.544492781162262,-0.837125480175018,0.111843533813953,-0.461449354887009,-0.88008838891983,-0.0524416752159595,-0.544473528862,-0.837137043476105,0.128020867705345,-0.426581263542175,-0.895343005657196,-0.058113157749176,-0.537167549133301,-0.841471254825592,-0.223400309681892,-0.592120051383972,-0.774264931678772,-0.00387974758632481,-0.549867391586304,-0.835242927074432,-0.045404240489006,-0.553450465202332,-0.831643581390381,-0.0188550464808941,-0.503850162029266,-0.863585293292999,0.141133353114128,-0.449966996908188,-0.88182258605957,-0.0117408288642764,-0.412865221500397,-0.910716474056244,0.0991012379527092,-0.311920195817947,-0.944925785064697,0.217581927776337,-0.175823763012886,-0.960075080394745,-0.0205890629440546,-0.404286473989487,-0.914400637149811,-0.0397551357746124,-0.446494936943054,-0.893902599811554,0.100373484194279,-0.313287943601608,-0.944338858127594,0.247497245669365,-0.199997767806053,-0.948022186756134,0.101422317326069,-0.314414978027344,-0.943852066993713,0.265030682086945,-0.153838321566582,-0.951888918876648,0.0940759629011154,-0.306509912014008,-0.947207152843475,-0.0634079352021217,-0.404184341430664,-0.912477076053619,0.154554128646851,-0.308677434921265,-0.938526093959808,0.109374850988388,-0.322942644357681,-0.940077245235443,0.133466169238091,-0.260959953069687,-0.956078827381134,0.281392782926559,-0.177772790193558,-0.942981958389282,0.0368410386145115,-0.997597754001617,0.0586639493703842,0.0668724477291107,-0.99764484167099,-0.0152653539553285,0.205628976225853,-0.968429267406464,-0.140930831432343,0.00455934181809425,-0.999427020549774,0.0335390903055668,-0.103586934506893,-0.980859100818634,0.164879277348518,0.0933733880519867,-0.995419383049011,0.0205358453094959,0.202299743890762,-0.968650996685028,-0.144187659025192,0.0463544204831123,-0.998005986213684,-0.0428406484425068,0.203745141625404,-0.964544832706451,-0.167753979563713,0.0957002639770508,-0.995128273963928,0.0236893873661757,-0.101520732045174,-0.980614721775055,0.167595490813255,0.0691742524504662,-0.993341326713562,0.0921298936009407,
  885. 0.215960592031479,-0.96528422832489,-0.146927133202553,0.0536532588303089,-0.998012781143188,-0.0330456010997295,0.00529001373797655,-0.999007165431976,-0.0442346222698689,-0.282310634851456,-0.151397958397865,-0.947301089763641,-0.156349420547485,-0.0510374307632446,-0.986382305622101,-0.0262838937342167,0.064584344625473,-0.997566044330597,-0.291135281324387,-0.139858990907669,-0.946403563022614,-0.303526431322098,-0.1783716827631,-0.93597823381424,-0.154962420463562,-0.0530808456242085,-0.986493349075317,0.010767875239253,0.0232478398829699,-0.999671757221222,-0.145231619477272,-0.0673686116933823,-0.987101435661316,0.0302828978747129,0.0641836002469063,-0.997478544712067,-0.138682186603546,-0.0769382044672966,-0.987343788146973,-0.307706534862518,-0.167919754981995,-0.936546683311462,-0.094112940132618,-0.0991846993565559,-0.9906085729599,-0.147588148713112,-0.0639162212610245,-0.986981511116028,-0.121350102126598,-0.0058720950037241,-0.992592394351959,0.0367399863898754,0.0508699715137482,-0.998029291629791,-0.00838019605726004,-0.99427205324173,0.106550730764866,0.0369030982255936,-0.998616397380829,0.0374623611569405,0.183124884963036,-0.981446921825409,-0.0568105429410934,-0.0353879816830158,-0.996357321739197,0.0775871127843857,-0.166288033127785,-0.967292547225952,0.191555231809616,0.0583271682262421,-0.995141267776489,0.0793222188949585,0.186144143342972,-0.981109201908112,-0.0526813082396984,0.025567589327693,-0.99955540895462,0.0153452549129725,0.196444436907768,-0.977249264717102,-0.0799594223499298,0.0613971501588821,-0.994459509849548,0.0853269100189209,-0.163421884179115,-0.966712832450867,0.196874618530273,0.0258516930043697,-0.988855481147766,0.146617621183395,0.212881460785866,-0.976374924182892,-0.0370638519525528,0.0412880070507526,-0.998086750507355,0.0460236258804798,-0.00745915714651346,-0.999488055706024,0.0311131458729506,0.218408659100533,0.975155174732208,-0.0370143055915833,0.00505700707435608,0.989085018634796,-0.147259175777435,-0.121568992733955,0.984173834323883,-0.12892958521843,
  886. 0.21706311404705,0.975667059421539,-0.0309411846101284,-0.123978435993195,0.985041081905365,-0.119680434465408,0.00405360059812665,0.998665750026703,-0.0514806844294071,-0.00668600527569652,0.992625713348389,-0.121035255491734,-0.329413324594498,0.913567066192627,-0.238499730825424,-0.109775274991989,0.978709101676941,-0.173429653048515,-0.111652858555317,0.979711711406708,-0.166429132223129,-0.223340332508087,0.96017724275589,-0.167865395545959,0.0106315175071359,0.990785896778107,-0.135020270943642,-0.114095643162727,0.980941891670227,-0.157274186611176,-0.343561887741089,0.918168365955353,-0.19731268286705,-0.215913951396942,0.952863216400146,-0.213149979710579,0.00974079687148333,0.992270827293396,-0.123708128929138,-0.225709319114685,0.962155222892761,-0.152685403823853,-0.119769416749477,0.984121322631836,-0.130998939275742,-0.361548960208893,0.92157918214798,-0.141330122947693,-0.360859274864197,0.919120907783508,-0.158105492591858,-0.227253243327141,0.963341653347015,-0.142579227685928,-0.22680826485157,0.963008284568787,-0.145509779453278,-0.360480517148972,0.918830513954163,-0.160637080669403,-0.118687108159065,0.981536149978638,-0.150000482797623,-0.00200895336456597,-0.212098509073257,-0.977246224880219,0.0384996570646763,-0.136213034391403,-0.989931225776672,0.161546289920807,-0.0282230991870165,-0.986461579799652,-0.0248199552297592,-0.193848609924316,-0.980717539787292,-0.134006500244141,-0.318897694349289,-0.938267827033997,0.0711841508746147,-0.182019710540771,-0.980714857578278,0.154680490493774,-0.0212637335062027,-0.987735688686371,0.0153063908219337,-0.103546664118767,-0.9945068359375,0.172052964568138,0.0150110395625234,-0.984973430633545,0.0759314969182014,-0.188650697469711,-0.979104459285736,-0.129519671201706,-0.32500895857811,-0.936799883842468,0.0378131605684757,-0.261337697505951,-0.964506506919861,0.192357733845711,-0.0213514529168606,-0.981092572212219,0.0331612266600132,-0.128705993294716,-0.991128206253052,-0.0239222906529903,-0.1230798214674,-0.992108404636383,-0.0279826391488314,-0.281651765108109,-0.959108591079712,
  887. 0.0921486616134644,-0.178643196821213,-0.979589343070984,0.215736478567123,-0.0503815747797489,-0.975151002407074,-0.0368648171424866,-0.271702826023102,-0.961674869060516,-0.0529158115386963,-0.313237339258194,-0.948199510574341,0.0930471047759056,-0.179762125015259,-0.979299664497375,0.243035137653351,-0.076560266315937,-0.966991424560547,0.0946350246667862,-0.181739404797554,-0.978782415390015,0.259818702936172,-0.033161785453558,-0.965087950229645,0.087287925183773,-0.172587186098099,-0.981119096279144,-0.0745550692081451,-0.265877544879913,-0.961119592189789,0.143465414643288,-0.181629076600075,-0.972845613956451,0.102014698088169,-0.190922990441322,-0.976289629936218,0.124862067401409,-0.130710795521736,-0.983526408672333,0.275190263986588,-0.0598069541156292,-0.959527730941772,-0.15512016415596,-0.225768029689789,-0.961751818656921,-0.0428773388266563,-0.120081789791584,-0.991837620735168,0.0793258175253868,0.0137963956221938,-0.99675327539444,-0.182223781943321,-0.197019353508949,-0.963316082954407,-0.190149918198586,-0.235591441392899,-0.953068554401398,-0.0582602806389332,-0.101876623928547,-0.99308967590332,0.12115853279829,-0.0235630217939615,-0.992353558540344,-0.0304558221250772,-0.134711384773254,-0.990416705608368,0.129761263728142,0.0145166153088212,-0.991438984870911,-0.0568820349872112,-0.103511691093445,-0.993000388145447,-0.208955898880959,-0.198478877544403,-0.957571685314178,0.00859544519335032,-0.106201946735382,-0.994307458400726,-0.0329782664775848,-0.131745666265488,-0.990734934806824,-0.00678029097616673,-0.0678852424025536,-0.997670114040375,0.137691259384155,0.00182555709034204,-0.990473508834839,-0.0999371036887169,0.7047159075737,-0.702415883541107,0.00511729903519154,0.784171760082245,-0.620522737503052,0.12072879076004,0.857898354530334,-0.499434888362885,-0.110270813107491,0.710706353187561,-0.694792628288269,-0.122457534074783,0.676863491535187,-0.72585117816925,0.00664479704573751,0.783168375492096,-0.621774196624756,0.163417145609856,0.834983944892883,-0.52544903755188,0.0189424660056829,0.774949669837952,-0.631739020347595,
  888. 0.178187787532806,0.855597138404846,-0.486006826162338,0.0266691651195288,0.769657552242279,-0.63789963722229,-0.128346741199493,0.683693647384644,-0.718394100666046,0.0788635611534119,0.760602056980133,-0.644410669803619,0.0159660689532757,0.776961803436279,-0.629345238208771,0.0373684875667095,0.816038131713867,-0.57678884267807,0.18675822019577,0.848227143287659,-0.49561282992363,-0.0369944535195827,0.3669074177742,-0.929521560668945,-0.01133425347507,0.428947627544403,-0.903258383274078,0.120154708623886,0.526673138141632,-0.841533422470093,-0.0545942708849907,0.379380166530609,-0.923628807067871,-0.165280476212502,0.243417382240295,-0.955735504627228,0.0267951916903257,0.380775690078735,-0.924279093742371,0.122308731079102,0.524728834629059,-0.842437088489532,-0.0271703097969294,0.448440223932266,-0.893399775028229,0.138205215334892,0.553554058074951,-0.821265637874603,0.0300076138228178,0.37663722038269,-0.925874710083008,-0.162454232573509,0.239927515387535,-0.957101583480835,0.00149176071863621,0.313198387622833,-0.949686527252197,0.156143322587013,0.52553802728653,-0.836318731307983,-0.0129105150699615,0.430901348590851,-0.90230667591095,-0.0616729892790318,0.438016206026077,-0.896849036216736,0.221602976322174,0.71016138792038,-0.668253660202026,0.0212718918919563,0.651040971279144,-0.758744478225708,-0.104800939559937,0.658458590507507,-0.745284557342529,0.22054049372673,0.7138392329216,-0.66467696428299,-0.107463642954826,0.665785789489746,-0.73836362361908,0.00982199609279633,0.718869149684906,-0.695075988769531,-0.0298085175454617,0.734628975391388,-0.677813947200775,-0.343512922525406,0.603296101093292,-0.719744980335236,-0.118299067020416,0.695179164409637,-0.709035456180573,-0.109216153621674,0.670586287975311,-0.733747839927673,-0.223435133695602,0.652694582939148,-0.723924398422241,0.0121624656021595,0.69766092300415,-0.716324865818024,-0.126114591956139,0.715941727161407,-0.686675012111664,-0.36003589630127,0.637263238430023,-0.681373417377472,-0.225261971354485,0.660910189151764,-0.715859472751617,
  889. 0.012301491573453,0.69637805223465,-0.717569708824158,-0.223784133791924,0.654260396957397,-0.722401559352875,-0.121193043887615,0.684996902942657,-0.718395054340363,-0.357755810022354,0.63255774974823,-0.686936259269714,-0.362641841173172,0.616890549659729,-0.698524832725525,-0.225816369056702,0.663412928581238,-0.713365435600281,-0.225202351808548,0.660641312599182,-0.716126382350922,-0.362301409244537,0.61524760723114,-0.700148642063141,-0.120104104280472,0.671679556369781,-0.731041431427002,-0.775386273860931,0.387340515851974,-0.498741894960403,-0.575080037117004,0.523543417453766,-0.628637611865997,-0.698337554931641,0.473249226808548,-0.536991477012634,-0.775289297103882,0.40534520149231,-0.484377712011337,-0.584643423557281,0.489805966615677,-0.646747350692749,-0.575730919837952,0.53356671333313,-0.619548618793488,-0.687786638736725,0.434286028146744,-0.581674456596375,-0.574737071990967,0.518791615962982,-0.632876396179199,-0.472638726234436,0.585369884967804,-0.65875244140625,-0.574800133705139,0.519643187522888,-0.632120072841644,-0.574798882007599,0.544108331203461,-0.611189484596252,-0.407288610935211,0.587080717086792,-0.699608623981476,-0.463506281375885,0.557140409946442,-0.68902575969696,-0.575246095657349,0.525961101055145,-0.626463770866394,-0.407348304986954,0.598721563816071,-0.68963760137558,-0.0251624528318644,-0.819255411624908,-0.572876453399658,0.0913956239819527,-0.753021895885468,-0.651617109775543,0.211861699819565,-0.653137564659119,-0.726997911930084,-0.0348128601908684,-0.812621176242828,-0.581751585006714,-0.0538950599730015,-0.837950527667999,-0.543078482151031,0.0928916335105896,-0.754181027412415,-0.650063157081604,0.239702105522156,-0.668652951717377,-0.703879356384277,0.0933035388588905,-0.754499673843384,-0.6496342420578,0.261171162128448,-0.629321098327637,-0.731945753097534,0.0867742225527763,-0.749415040016174,-0.656389653682709,-0.0754552558064461,-0.80943763256073,-0.582337737083435,0.145722046494484,-0.749909937381744,-0.645290732383728,0.100928582251072,-0.760338723659515,-0.641637325286865,
  890. 0.127141550183296,-0.716979205608368,-0.685401976108551,0.276503682136536,-0.646532237529755,-0.711014568805695,-0.153909772634506,-0.778252899646759,-0.608797550201416,-0.0461204349994659,-0.716424345970154,-0.696138679981232,0.0801904425024986,-0.612726986408234,-0.786215722560883,-0.18197138607502,-0.756225287914276,-0.628498017787933,-0.184607371687889,-0.779650151729584,-0.598385989665985,-0.061422411352396,-0.703078269958496,-0.708454847335815,0.121721364557743,-0.638982892036438,-0.759529292583466,-0.0337331481277943,-0.726916491985321,-0.685896873474121,0.132408082485199,-0.607486546039581,-0.783216595649719,-0.0600815825164318,-0.704264760017395,-0.707390487194061,-0.203531071543694,-0.753227055072784,-0.625479102134705,0.00542650884017348,-0.706099152565002,-0.708092212677002,-0.0362361371517181,-0.724818885326386,-0.687985897064209,-0.00987310521304607,-0.678586840629578,-0.734453916549683,0.140676513314247,-0.617314398288727,-0.774036824703217,-0.0983156114816666,0.110989704728127,-0.988946557044983,0.00553979119285941,0.22335048019886,-0.974722564220428,0.121559999883175,0.357610672712326,-0.925925374031067,-0.127893581986427,0.137905925512314,-0.982153356075287,-0.139514356851578,0.0938743650913239,-0.985760271549225,-0.011124849319458,0.240418791770935,-0.970605492591858,0.164666458964348,0.323230803012848,-0.931883454322815,0.019024571403861,0.209440737962723,-0.977636277675629,0.174397677183151,0.360400438308716,-0.916349828243256,-0.00951012037694454,0.238770812749863,-0.9710294008255,-0.160065859556198,0.128465324640274,-0.978711187839508,0.0610270947217941,0.243214398622513,-0.968050956726074,0.0162291321903467,0.212331488728523,-0.977062940597534,0.0439308770000935,0.278095006942749,-0.959548473358154,0.182918608188629,0.348730266094208,-0.919199645519257,-0.0447062775492668,-0.294855386018753,-0.954495489597321,-0.0118108913302422,-0.223647266626358,-0.974598586559296,0.115254625678062,-0.111455015838146,-0.987063407897949,-0.0663139149546623,-0.278392612934113,-0.958175361156464,-0.1753850877285,-0.402535647153854,-0.898445963859558,
  891. 0.0232839658856392,-0.270187884569168,-0.962526142597198,0.117182314395905,-0.113319173455238,-0.98662406206131,-0.0278616081923246,-0.202078953385353,-0.978972852230072,0.129260301589966,-0.0799061730504036,-0.98838597536087,0.0258061196655035,-0.273499876260757,-0.961525797843933,-0.173195496201515,-0.40530663728714,-0.897624552249908,-0.00482189562171698,-0.339539080858231,-0.94057959318161,0.144972458481789,-0.106910966336727,-0.983642756938934,-0.0160487722605467,-0.217969879508018,-0.975823640823364,-0.0676237493753433,-0.210818707942963,-0.975183308124542,-0.0961193963885307,0.412714511156082,-0.905774712562561,-0.0383464284241199,0.473569005727768,-0.879921555519104,0.109895400702953,0.53547865152359,-0.837368249893188,-0.0979469269514084,0.414845257997513,-0.90460479259491,-0.242026567459106,0.307618707418442,-0.920214056968689,-0.00860371068120003,0.40612205862999,-0.913778364658356,0.10196503251791,0.547261416912079,-0.830727458000183,-0.0550187528133392,0.510254144668579,-0.858262002468109,0.129184976220131,0.571831464767456,-0.810135841369629,-0.00599773367866874,0.400091528892517,-0.916455686092377,-0.239607512950897,0.302265167236328,-0.92261803150177,-0.0578717067837715,0.340517401695251,-0.938455522060394,0.137811273336411,0.544485151767731,-0.827371716499329,-0.0468592755496502,0.492402225732803,-0.869105577468872,-0.0912368595600128,0.510810256004334,-0.8548384308815,-0.157211229205132,0.122554838657379,-0.979931116104126,-0.0109423324465752,0.194426462054253,-0.98085606098175,0.143166065216064,0.276409566402435,-0.950316488742828,-0.181610956788063,0.173230275511742,-0.967992126941681,-0.198543727397919,0.139998227357864,-0.970041692256927,-0.0267629828304052,0.232670873403549,-0.972187221050262,0.174322471022606,0.222046032547951,-0.959326446056366,-0.000470542145194486,0.168947294354439,-0.985624969005585,0.194541424512863,0.253650099039078,-0.947531163692474,-0.0152234472334385,0.20480515062809,-0.978684365749359,-0.200504273176193,0.153391152620316,-0.967610061168671,0.0365430042147636,0.179625064134598,-0.9830561876297,
  892. -0.0130755137652159,0.199600651860237,-0.979790091514587,0.0318138301372528,0.251867920160294,-0.967238664627075,0.191196501255035,0.267155766487122,-0.944495439529419,-0.336336731910706,0.639352798461914,0.691451847553253,-0.258728981018066,0.632628738880157,0.729959070682526,-0.391474366188049,0.549288332462311,0.738261580467224,-0.308805733919144,0.588885605335236,0.746895432472229,-0.0345649123191834,0.703796446323395,0.709560334682465,-0.259136140346527,0.634056389331818,0.728574633598328,-0.393683910369873,0.597458183765411,0.698610544204712,-0.258002012968063,0.630081295967102,0.732415556907654,-0.123847953975201,0.646493136882782,0.752800345420837,-0.256983876228333,0.626519739627838,0.735820829868317,-0.0157996192574501,0.671023190021515,0.74126797914505,0.0416388474404812,0.696803450584412,0.7160524725914,-0.256285697221756,0.62408173084259,0.738132536411285,0.0427050031721592,0.691720306873322,0.720901727676392,-0.122971765697002,0.6866694688797,0.716493606567383,0.0645484328269959,-0.230794817209244,0.970859050750732,0.15236958861351,-0.223245188593864,0.962779879570007,0.0501796491444111,-0.226906284689903,0.972622990608215,0.303183645009995,-0.202665686607361,0.931131720542908,0.152679786086082,-0.228189140558243,0.961570918560028,0.0649364367127419,-0.23652820289135,0.969452261924744,-0.105027697980404,-0.237303078174591,0.965741395950317,0.0653504207730293,-0.242672353982925,0.967904686927795,0.0470289848744869,-0.249737128615379,0.96717095375061,0.0630231946706772,-0.208498999476433,0.975989878177643,-0.139174282550812,-0.272785753011703,0.951955080032349,0.300281792879105,-0.187229111790657,0.935294687747955,-0.104891993105412,-0.235225796699524,0.966264307498932,-0.147990748286247,-0.223854929208755,0.963321208953857,0.0634923726320267,-0.215316414833069,0.974478125572205,0.0493031814694405,-0.262124747037888,0.963773846626282,0.301902323961258,-0.195803478360176,0.933014571666718,-0.13737279176712,-0.282458752393723,0.949392318725586,-0.423681497573853,-0.264156639575958,0.866438269615173,-0.145936980843544,-0.23549896478653,0.960855185985565,
  893. -0.109506115317345,-0.309901237487793,0.944441556930542,0.033084575086832,-0.188297837972641,0.981554567813873,-0.145835772156715,-0.236068725585938,0.960730731487274,-0.423531830310822,-0.264949113130569,0.866269588470459,0.461018353700638,-0.00469511840492487,0.88737815618515,0.00556494481861591,-0.145066171884537,0.989406287670136,0.269933700561523,-0.110449247062206,0.956523299217224,0.460939019918442,-0.00429534213617444,0.887421429157257,0.253301024436951,-0.0231669843196869,0.967110097408295,0.003833401016891,-0.138528615236282,0.990351021289825,0.235318601131439,-0.0260828193277121,0.97156822681427,-0.0022936265449971,-0.115349188446999,0.993322372436523,-0.19697593152523,-0.183652818202972,0.963053524494171,-0.00296575645916164,-0.112802065908909,0.993613064289093,0.25439515709877,-0.0412901528179646,0.966218531131744,-0.0924148634076118,-0.108951963484287,0.989741981029511,-0.0090248454362154,-0.089800588786602,0.995918989181519,-0.0910031646490097,-0.116448670625687,0.989018797874451,-0.210396826267242,-0.143130779266357,0.967081665992737,0.254755526781082,-0.0475817359983921,0.965834140777588,0.143300965428352,-0.053561307489872,0.988228738307953,-0.09242894500494,-0.108877032995224,0.989748895168304,-0.178023979067802,-0.177026510238647,0.967971742153168,-0.216803267598152,-0.123268269002438,0.968401432037354,-0.0865131914615631,-0.140061408281326,0.9863560795784,-0.0870642513036728,-0.137182056903839,0.986712276935577,0.14537338912487,-0.134932145476341,0.980132699012756,-0.181651845574379,-0.148203372955322,0.972130835056305,0.231349498033524,-0.30754953622818,0.922979235649109,-0.238841280341148,-0.435377657413483,0.867986798286438,0.0262194871902466,-0.413780122995377,0.909999191761017,0.231321975588799,-0.307424426078796,0.923027813434601,0.00882745068520308,-0.33401545882225,0.942526280879974,-0.240794777870178,-0.429030269384384,0.870603740215302,-0.0104883247986436,-0.334751695394516,0.942247986793518,-0.247656092047691,-0.406234085559845,0.87956827878952,-0.424414575099945,-0.444204270839691,0.789021611213684,
  894. -0.248212695121765,-0.404349446296692,0.88027948141098,0.00996970850974321,-0.348927408456802,0.937096834182739,-0.329980701208115,-0.389491766691208,0.859889030456543,-0.328209072351456,-0.398114651441574,0.856611669063568,-0.437817126512527,-0.40614315867424,0.802099704742432,-0.254831165075302,-0.381512641906738,0.888543307781219,0.0103846760466695,-0.354330986738205,0.935062408447266,-0.0986575856804848,-0.357395261526108,0.928727805614471,-0.329953789710999,-0.38962385058403,0.859839379787445,-0.414492666721344,-0.439931362867355,0.796653151512146,-0.443967819213867,-0.387622773647308,0.807862102985382,-0.323225140571594,-0.421476662158966,0.847279727458954,-0.324132591485977,-0.417316675186157,0.848990499973297,-0.095855139195919,-0.434309005737305,0.895649194717407,-0.418524086475372,-0.415769398212433,0.80744868516922,-0.14969864487648,0.30560502409935,-0.940316915512085,-0.239098504185677,0.296013176441193,-0.924774646759033,-0.136985808610916,0.30241447687149,-0.943281710147858,-0.389213770627975,0.262145578861237,-0.883058488368988,-0.239010080695152,0.294213503599167,-0.925371706485748,-0.149636194109917,0.304435819387436,-0.940706014633179,0.024664644151926,0.313241004943848,-0.949353337287903,-0.150271788239479,0.316522479057312,-0.936606585979462,-0.133756995201111,0.3238245844841,-0.936614513397217,-0.148829475045204,0.289654791355133,-0.945489346981049,0.0524646155536175,0.360110640525818,-0.931433200836182,-0.388822555541992,0.260000169277191,-0.883864760398865,0.0258856769651175,0.328748047351837,-0.944062948226929,0.0602532997727394,0.317593663930893,-0.946310639381409,-0.149861112236977,0.308665364980698,-0.939290881156921,-0.129184618592262,0.343620866537094,-0.930180668830872,-0.3894984126091,0.263713359832764,-0.882466018199921,0.0516546592116356,0.364455223083496,-0.929787278175354,0.341155529022217,0.344452321529388,-0.87462317943573,0.0603387914597988,0.31711933016777,-0.946464240550995,0.0307971965521574,0.391124308109283,-0.919822454452515,-0.112099729478359,0.268247723579407,-0.956805527210236,
  895. 0.0600665584206581,0.318628907203674,-0.945974409580231,0.340876191854477,0.345971524715424,-0.874132215976715,0.335400342941284,0.13552913069725,0.93227607011795,-0.132166862487793,0.003902179421857,0.991219818592072,0.137502461671829,0.0388543643057346,0.989739179611206,0.335116505622864,0.136951476335526,0.932170152664185,0.118967033922672,0.127499490976334,0.984677970409393,-0.134448826313019,0.0121994465589523,0.990845441818237,0.0966260433197021,0.136220365762711,0.98595517873764,-0.144041568040848,0.0474739260971546,0.988432228565216,-0.325553596019745,-0.0243070553988218,0.945211112499237,-0.13816125690937,0.0257742311805487,0.990074336528778,0.12081953138113,0.0972009524703026,0.987904131412506,-0.214655160903931,0.032315906137228,0.976155161857605,-0.148285821080208,0.0632914304733276,0.986917197704315,-0.215568706393242,0.0371628552675247,0.975781261920929,-0.335653692483902,0.00595714012160897,0.941966593265533,0.121165499091148,0.0913190618157387,0.988422870635986,0.0129371536895633,0.0872946232557297,0.996098637580872,-0.214734837412834,0.0327375121414661,0.976123571395874,-0.312277764081955,0.0062342956662178,0.949970364570618,-0.35204491019249,0.0574359335005283,0.934219300746918,-0.217173531651497,0.0457439720630646,0.97506058216095,-0.216480523347855,0.0420278385281563,0.975381910800934,0.0142551027238369,0.0468019470572472,0.998802483081818,-0.314891368150711,0.0261170379817486,0.948768317699432,-0.11774055659771,0.695225715637207,0.709082782268524,-0.105529606342316,0.683491945266724,0.722289681434631,0.0815835222601891,0.687565505504608,0.721524655818939,-0.298956364393234,0.703825712203979,0.644402384757996,-0.106708116829395,0.73648989200592,0.667979061603546,-0.11447099596262,0.726588249206543,0.677470266819,0.02117601595819,0.702082097530365,0.711781084537506,-0.117834247648716,0.694271326065063,0.710001707077026,0.0814939215779305,0.686900079250336,0.722168266773224,-0.115639947354794,0.715789139270782,0.688675105571747,-0.219836547970772,0.704657852649689,0.674632668495178,-0.297687619924545,0.691760361194611,0.657913148403168,
  896. 0.0123582193627954,0.678094089031219,0.734871208667755,-0.218832075595856,0.707277357578278,0.672213673591614,-0.118225663900375,0.690247237682343,0.713849723339081,-0.436544746160507,0.694380104541779,0.572070777416229,-0.302832752466202,0.746966600418091,0.591889560222626,-0.220174446702003,0.703772723674774,0.675445914268494,-0.17184953391552,0.719600737094879,0.672787129878998,-0.217056304216385,0.711865842342377,0.667932391166687,0.0143591882660985,0.683604538440704,0.729711353778839,-0.438451766967773,0.688180923461914,0.578071892261505,-0.220940262079239,0.701759219169617,0.677288293838501,-0.223072722554207,0.655862331390381,0.721167922019959,-0.502065896987915,0.718250751495361,-0.481711387634277,-0.443599045276642,0.769659399986267,-0.459177792072296,-0.559073150157928,0.73174524307251,-0.38985401391983,-0.483321875333786,0.793206214904785,-0.370437741279602,-0.207714229822159,0.859350502490997,-0.46730238199234,-0.443327039480209,0.796796858310699,-0.410579890012741,-0.549590110778809,0.707445800304413,-0.444377243518829,-0.44364657998085,0.773978352546692,-0.451813280582428,-0.30365401506424,0.838060081005096,-0.453265368938446,-0.443252086639404,0.798713445663452,-0.406920731067657,-0.199837610125542,0.879142224788666,-0.432635992765427,-0.136397957801819,0.878464996814728,-0.457924544811249,-0.443330854177475,0.796693861484528,-0.410775631666183,-0.136419892311096,0.878692448139191,-0.457481414079666,-0.300390809774399,0.831516563892365,-0.467274636030197,0.0434143580496311,0.209740817546844,-0.976792693138123,0.0843408778309822,0.27230504155159,-0.958507478237152,0.233969211578369,0.356014251708984,-0.904716670513153,0.00703214760869741,0.24875745177269,-0.96854031085968,-0.124252192676067,0.133616104722023,-0.983213186264038,0.0987294241786003,0.244505420327187,-0.964608550071716,0.229257389903069,0.362449318170547,-0.903366804122925,0.0677227005362511,0.303866893053055,-0.950304448604584,0.234734788537025,0.384183943271637,-0.89291787147522,0.10130974650383,0.239473029971123,-0.965602934360504,-0.121812768280506,0.128969982266426,-0.984138429164886,
  897. 0.0657661408185959,0.178757235407829,-0.981692850589752,0.245170950889587,0.357829004526138,-0.901026964187622,0.0756088420748711,0.288961470127106,-0.954350352287292,0.0292486436665058,0.304953634738922,-0.951917946338654,-0.150393962860107,-0.00866855401545763,-0.988588154315948,-0.0117985336109996,0.0745633393526077,-0.997146487236023,0.13070672750473,0.170434460043907,-0.976661682128906,-0.168927654623985,0.0229700952768326,-0.985360860824585,-0.183670714497566,-0.0127553353086114,-0.982905089855194,-0.0216961558908224,0.0937541872262955,-0.995358943939209,0.166823238134384,0.118117839097977,-0.978886306285858,0.00133118394296616,0.0490682721138,-0.998794555664063,0.196384996175766,0.158285602927208,-0.967666566371918,-0.00989414099603891,0.0708680674433708,-0.99743664264679,-0.187775105237961,0.00433770706877112,-0.982202470302582,0.0405799932777882,0.048188578337431,-0.998013615608215,-0.00445570703595877,0.0603104121983051,-0.998169720172882,0.0300947725772858,0.115538716316223,-0.992847084999084,0.198774665594101,0.151188850402832,-0.968313276767731,-0.138790041208267,-0.116535298526287,-0.983441352844238,-0.0138453627005219,-0.0217639319598675,-0.999667286872864,0.124098971486092,0.0974007025361061,-0.987477898597717,-0.146702915430069,-0.105998203158379,-0.983485043048859,-0.163939759135246,-0.147150486707687,-0.975433588027954,-0.0131588466465473,-0.0227785091847181,-0.999653935432434,0.145528525114059,0.0729344710707664,-0.986662149429321,-0.0147820934653282,-0.0203794185072184,-0.999683022499084,0.164718493819237,0.112044990062714,-0.979956090450287,-0.0263556726276875,-0.00326188188046217,-0.999647319316864,-0.187588632106781,-0.0832993537187576,-0.97870922088623,0.0365551263093948,-0.0136108864098787,-0.999238967895508,-0.00475369021296501,-0.0351968295872211,-0.999369084835052,0.0256891660392284,0.0253915227949619,-0.999347448348999,0.180422246456146,0.0796603858470917,-0.980358123779297,-0.178373664617538,0.313989341259003,-0.932519972324371,-0.0535455420613289,0.410058885812759,-0.910485923290253,
  898. 0.0873136073350906,0.517647266387939,-0.85112726688385,-0.187142357230186,0.324314028024673,-0.927253007888794,-0.205107554793358,0.282794773578644,-0.936994135379791,-0.0526087731122971,0.408811390399933,-0.911101281642914,0.113789133727551,0.490632116794586,-0.863905191421509,-0.0513924285769463,0.407189816236496,-0.911896646022797,0.129148095846176,0.521044135093689,-0.843702435493469,-0.057904064655304,0.415851175785065,-0.90758740901947,-0.223623037338257,0.328716665506363,-0.91757196187973,-0.00481755239889026,0.402786940336227,-0.915281116962433,-0.0446165315806866,0.398128300905228,-0.916244208812714,-0.0198106225579977,0.451953917741776,-0.891821265220642,0.142269819974899,0.496935695409775,-0.856045663356781,-0.00818632263690233,0.543351531028748,-0.839465379714966,0.103519134223461,0.627213656902313,-0.771937191486359,0.220034822821617,0.712047696113586,-0.666762888431549,-0.0175777040421963,0.55153489112854,-0.833966612815857,-0.0368916504085064,0.509891927242279,-0.859447062015533,0.105284452438354,0.625490307807922,-0.773095786571503,0.249131068587303,0.6893070936203,-0.680286288261414,0.105354323983192,0.62542200088501,-0.773141503334045,0.267467796802521,0.716761112213135,-0.643983423709869,0.098681852221489,0.631908059120178,-0.768735408782959,-0.0605655610561371,0.548568248748779,-0.833909273147583,0.148267015814781,0.619382858276367,-0.770961582660675,0.113499440252781,0.617399573326111,-0.778418660163879,0.127154529094696,0.66013365983963,-0.740307569503784,0.283824175596237,0.696296453475952,-0.659253418445587,0.0420712493360043,-0.592171192169189,-0.804713189601898,0.0716708153486252,-0.52999085187912,-0.844969213008881,0.209298640489578,-0.410106837749481,-0.887697279453278,-0.0071835508570075,-0.561496555805206,-0.827447891235352,-0.113717958331108,-0.661785840988159,-0.741018056869507,0.0867588371038437,-0.546586394309998,-0.832896292209625,0.213706970214844,-0.413580060005188,-0.885031580924988,0.0582938380539417,-0.515033543109894,-0.855185508728027,0.216555923223495,-0.39179915189743,-0.894201874732971,
  899. 0.0883876159787178,-0.548360347747803,-0.831557869911194,-0.112328320741653,-0.663248836994171,-0.739921152591705,0.0609843544661999,-0.605194449424744,-0.79373836517334,0.228067874908447,-0.408489316701889,-0.883810818195343,0.0646237954497337,-0.522139728069305,-0.85040807723999,0.0107591608539224,-0.517759323120117,-0.855458676815033,-0.27812647819519,0.716435313224792,-0.639817237854004,-0.153898283839226,0.802180826663971,-0.576906621456146,-0.0230980273336172,0.874256730079651,-0.484914034605026,-0.287512451410294,0.722244739532471,-0.629046201705933,-0.306537657976151,0.687739729881287,-0.658064365386963,-0.152537316083908,0.801184833049774,-0.578649461269379,0.0135338958352804,0.853750467300415,-0.520506680011749,-0.142772600054741,0.793920457363129,-0.591021418571472,0.0300523191690445,0.872662901878357,-0.487397491931915,-0.136253252625465,0.788955807685852,-0.599152743816376,-0.310797423124313,0.694032371044159,-0.649402797222137,-0.0872835516929626,0.780236542224884,-0.619364619255066,-0.145130917429924,0.795693874359131,-0.588054656982422,-0.114573545753956,0.832206130027771,-0.542499601840973,0.0365069769322872,0.865906894207001,-0.498871237039566,-0.00737176602706313,-0.628343224525452,-0.777901291847229,0.0365419760346413,-0.573583722114563,-0.818331480026245,0.186576083302498,-0.482036381959915,-0.856055200099945,-0.0345116965472698,-0.605061173439026,-0.795430660247803,-0.162348419427872,-0.684630930423737,-0.710579693317413,0.0577764138579369,-0.606406509876251,-0.793053030967712,0.189740985631943,-0.485471040010452,-0.853414475917816,0.0253426879644394,-0.555823028087616,-0.830914258956909,0.19328273832798,-0.464410394430161,-0.864271223545074,0.060835849493742,-0.611042857170105,-0.789256393909454,-0.15947587788105,-0.688805639743805,-0.707187652587891,0.0270771533250809,-0.658518493175507,-0.752077281475067,0.209717437624931,-0.500145137310028,-0.840162754058838,0.0410231985151768,-0.580603718757629,-0.813152134418488,-0.00626313360407948,-0.569080114364624,-0.822258234024048,0.179336875677109,0.957002282142639,-0.228001952171326,
  900. -0.0344106778502464,0.939424991607666,-0.341022878885269,-0.158536151051521,0.934988975524902,-0.31727260351181,0.178031772375107,0.958545446395874,-0.222475558519363,-0.160860881209373,0.937414228916168,-0.308834165334702,-0.0341832935810089,0.968373656272888,-0.247152090072632,-0.0475010313093662,0.948160231113434,-0.314222604036331,-0.361774265766144,0.835626184940338,-0.413338005542755,-0.145742684602737,0.920543134212494,-0.36243537068367,-0.14793549478054,0.92314749956131,-0.354843378067017,-0.256247222423553,0.899662733078003,-0.353474676609039,-0.0265220981091261,0.944630444049835,-0.327062845230103,-0.149553745985031,0.925036251544952,-0.349201411008835,-0.37661024928093,0.847748577594757,-0.373479694128037,-0.248269379138947,0.884234428405762,-0.395590364933014,-0.0275886859744787,0.948294997215271,-0.316189020872116,-0.258849680423737,0.904503583908081,-0.338925272226334,-0.159096091985703,0.933237910270691,-0.322110921144485,-0.395187765359879,0.861293137073517,-0.319375574588776,-0.395544350147247,0.854805052280426,-0.335935950279236,-0.260666519403458,0.907820641994476,-0.32850369811058,-0.260137349367142,0.906859993934631,-0.331562280654907,-0.395211070775986,0.854169428348541,-0.337938994169235,-0.15776889026165,0.927278220653534,-0.339505642652512,0.0108940443024039,-0.402685791254044,-0.915273427963257,0.0460113473236561,-0.33033412694931,-0.942741930484772,0.169931188225746,-0.215046674013138,-0.961706042289734,-0.0115955416113138,-0.386967360973358,-0.922020494937897,-0.119906485080719,-0.505681812763214,-0.854346752166748,0.0804395377635956,-0.372193455696106,-0.924662947654724,0.163005828857422,-0.208946526050568,-0.964246153831482,0.0215054173022509,-0.299995988607407,-0.953698039054871,0.177984550595284,-0.172642439603806,-0.968770384788513,0.0854226425290108,-0.378177553415298,-0.921783447265625,-0.11521964520216,-0.511147618293762,-0.851735055446625,0.0536586493253708,-0.444375038146973,-0.894232392311096,0.199638828635216,-0.206524431705475,-0.957858145236969,0.0403676964342594,-0.323387116193771,-0.945405304431915,
  901. -0.0131604168564081,-0.317583680152893,-0.948138892650604,-0.682476341724396,0.609446108341217,-0.403486639261246,-0.640298247337341,0.669526875019073,-0.376499563455582,-0.739472985267639,0.595145404338837,-0.314613521099091,-0.682763338088989,0.672287821769714,-0.286117672920227,-0.432530075311661,0.821450173854828,-0.371668308973312,-0.646431624889374,0.69055038690567,-0.324447691440582,-0.725251317024231,0.580560743808746,-0.370080918073654,-0.641412317752838,0.673019707202911,-0.368286162614822,-0.517031788825989,0.776093304157257,-0.361050337553024,-0.646832048892975,0.692132234573364,-0.320251792669296,-0.429438889026642,0.838901042938232,-0.334405928850174,-0.375676482915878,0.854479849338531,-0.358791589736938,-0.646434128284454,0.690559923648834,-0.324422627687454,-0.3757044672966,0.854543507099152,-0.358610540628433,-0.512377679347992,0.772242367267609,-0.375647157430649,-0.140911549329758,-0.418091744184494,-0.897409200668335,-0.0331965424120426,-0.316498577594757,-0.948011934757233,0.0856184512376785,-0.17988745868206,-0.979954063892365,-0.168850615620613,-0.39150682091713,-0.904550671577454,-0.171537488698959,-0.42513370513916,-0.888727307319641,-0.0486375018954277,-0.300100922584534,-0.952666699886322,0.129123881459236,-0.214087530970573,-0.968242526054382,-0.0207856874912977,-0.329543709754944,-0.943911492824554,0.139945477247238,-0.172662332653999,-0.97498881816864,-0.047552227973938,-0.301259547472,-0.952355742454529,-0.191929280757904,-0.389786571264267,-0.900682866573334,0.0217211209237576,-0.298477083444595,-0.954169631004334,-0.023172203451395,-0.327044516801834,-0.944724798202515,0.00487457402050495,-0.262208700180054,-0.96499890089035,0.148695200681686,-0.185226529836655,-0.971381008625031,-0.120868809521198,0.548256695270538,-0.827529668807983,-0.0204267650842667,0.646782994270325,-0.762400507926941,0.0874075070023537,0.745491147041321,-0.660759329795837,-0.132827535271645,0.555986106395721,-0.820509910583496,-0.139472186565399,0.518081426620483,-0.843883395195007,-0.0190373994410038,0.645755052566528,-0.763307273387909,
  902. 0.13286879658699,0.718968510627747,-0.68222439289093,-0.00598245253786445,0.635977685451508,-0.771684288978577,0.146708518266678,0.749462723731995,-0.645586729049683,0.00173553952481598,0.630097687244415,-0.776514053344727,-0.145593732595444,0.525867223739624,-0.838013172149658,0.0571862980723381,0.622731804847717,-0.780342757701874,-0.00913155358284712,0.638355553150177,-0.769687473773956,0.0130068296566606,0.688895702362061,-0.724743783473969,0.155945062637329,0.740314543247223,-0.653923153877258,-0.0480590350925922,0.169963330030441,-0.984277904033661,-0.0153698213398457,0.246485978364944,-0.969024479389191,0.106947116553783,0.355960309505463,-0.928361237049103,-0.066052719950676,0.182563915848732,-0.980972707271576,-0.169439375400543,0.0422675609588623,-0.984633922576904,0.024447463452816,0.197347640991211,-0.980028688907623,0.108752459287643,0.354338735342026,-0.928771734237671,-0.0317665003240108,0.266448169946671,-0.963325619697571,0.119883999228477,0.38501513004303,-0.915090799331665,0.0278008673340082,0.193166345357895,-0.980772078037262,-0.166451781988144,0.0386656709015369,-0.985291302204132,-0.000958799151703715,0.121661089360714,-0.992571234703064,0.139032036066055,0.355257540941238,-0.924371242523193,-0.0169446170330048,0.248410135507584,-0.968506753444672,-0.0693676844239235,0.251652538776398,-0.965328514575958,-0.0945233702659607,-0.0314925462007523,-0.995024502277374,-0.0383280031383038,0.0324785634875298,-0.998737275600433,0.110227636992931,0.107286803424358,-0.988098978996277,-0.0957987904548645,-0.0297866091132164,-0.994954943656921,-0.242911249399185,-0.134260088205338,-0.960712432861328,-0.00873359758406878,-0.0418445467948914,-0.999085962772369,0.102308034896851,0.12077622115612,-0.987393617630005,-0.0548991821706295,0.0742750391364098,-0.995725512504578,0.131086468696594,0.151975706219673,-0.979652881622314,-0.0061524766497314,-0.0483074188232422,-0.998813569545746,-0.240534096956253,-0.139938250184059,-0.960500299930573,-0.0595302619040012,-0.112603239715099,-0.991855263710022,0.139739096164703,0.120365329086781,-0.982845544815063,
  903. -0.0468088425695896,0.0538529753684998,-0.99745124578476,-0.092945508658886,0.0768725275993347,-0.992699325084686,-0.156324803829193,-0.325514584779739,-0.932524979114532,-0.0120751596987247,-0.262663096189499,-0.964812159538269,0.141357004642487,-0.177107140421867,-0.973987400531769,-0.180472791194916,-0.275159597396851,-0.944307565689087,-0.20199091732502,-0.306292831897736,-0.930260360240936,-0.0283109042793512,-0.22387407720089,-0.974206805229187,0.171685174107552,-0.228937834501266,-0.958181440830231,-0.00122667336836457,-0.288280159235001,-0.957545340061188,0.19883893430233,-0.193299159407616,-0.960780143737793,-0.016500411555171,-0.252144277095795,-0.967548966407776,-0.203932493925095,-0.293495446443558,-0.933955013751984,0.0422526448965073,-0.276172250509262,-0.960178971290588,-0.0140635734423995,-0.257941633462906,-0.966058254241943,0.037577360868454,-0.20418818295002,-0.978210151195526,0.195337101817131,-0.179444327950478,-0.964180052280426,-0.337574392557144,0.88408899307251,0.323156625032425,-0.262138575315475,0.894822001457214,0.361354380846024,-0.387880742549896,0.8271124958992,0.406735122203827,-0.306868046522141,0.861826002597809,0.403841465711594,-0.0317125990986824,0.947669446468353,0.317674338817596,-0.260745346546173,0.892586171627045,0.367833882570267,-0.389841258525848,0.849168241024017,0.356282353401184,-0.259991198778152,0.891366422176361,0.371309190988541,-0.118830926716328,0.916114568710327,0.382901132106781,-0.260333240032196,0.891920447349548,0.369735687971115,-0.0154661890119314,0.9349165558815,0.354530453681946,0.0437144972383976,0.946230113506317,0.320527136325836,-0.2610804438591,0.89312607049942,0.366282433271408,0.0436764545738697,0.946310997009277,0.320293396711349,-0.117271222174168,0.940655648708344,0.318456321954727,-0.0646529272198677,-0.225090727210045,-0.972190380096436,-0.148488819599152,-0.228043541312218,-0.962261617183685,-0.0482475683093071,-0.229726508259773,-0.972058594226837,-0.307878017425537,-0.23296046257019,-0.922464370727539,-0.148764058947563,-0.223458364605904,-0.963294148445129,
  904. -0.065143309533596,-0.218396618962288,-0.97368335723877,0.106887176632881,-0.217209070920944,-0.970255315303802,-0.0655012726783752,-0.21347688138485,-0.974749803543091,-0.0450545586645603,-0.206787675619125,-0.977347910404205,-0.0631090179085732,-0.245831713080406,-0.96725594997406,0.138578087091446,-0.181041896343231,-0.973663151264191,-0.304965972900391,-0.248967498540878,-0.919244766235352,0.106758899986744,-0.21916452050209,-0.969829618930817,0.146900847554207,-0.228137090802193,-0.962483048439026,-0.0633947104215622,-0.24203135073185,-0.968195199966431,-0.048071313649416,-0.19279320538044,-0.980061292648315,-0.306544125080109,-0.240358397364616,-0.921009540557861,0.136835277080536,-0.171359226107597,-0.975659847259521,0.42313939332962,-0.148949727416039,-0.89373767375946,0.144728019833565,-0.215700626373291,-0.96567440032959,0.111433610320091,-0.142415970563889,-0.983514249324799,-0.0311947483569384,-0.268851727247238,-0.962676286697388,0.144641757011414,-0.215208947658539,-0.965797007083893,0.423018991947174,-0.148296594619751,-0.893903255462646,0.457532048225403,0.390484780073166,0.798865497112274,0.00115223822649568,0.311972558498383,0.950090527534485,0.270286053419113,0.326898485422134,0.905584275722504,0.457441419363022,0.390914469957352,0.798707246780396,0.255028307437897,0.408919185400009,0.876211106777191,-0.000431041582487524,0.317817777395248,0.948151707649231,0.235850349068642,0.408878177404404,0.881585776805878,-0.0059510893188417,0.33809694647789,0.941092491149902,-0.191588655114174,0.265517443418503,0.944877922534943,-0.00683327671140432,0.341323405504227,0.939921081066132,0.256131887435913,0.392724096775055,0.883269071578979,-0.0943964868783951,0.342333912849426,0.934824466705322,-0.0122494082897902,0.361045211553574,0.932467877864838,-0.0929750949144363,0.33524289727211,0.937532842159271,-0.205216035246849,0.303955614566803,0.930321097373962,0.256500065326691,0.387013107538223,0.885679721832275,0.149345487356186,0.391510963439941,0.907973051071167,-0.0944068282842636,0.342385590076447,0.934804499149323,
  905. -0.177960798144341,0.272366553544998,0.945593178272247,-0.211845144629478,0.322845757007599,0.922438323497772,-0.0884715840220451,0.312824726104736,0.945681512355804,-0.0890318676829338,0.315609335899353,0.944703280925751,0.151296764612198,0.314475417137146,0.937130987644196,-0.181564018130302,0.29960224032402,0.936628639698029,0.229421555995941,0.134286969900131,0.964019060134888,-0.23725488781929,-0.00487635284662247,0.971435308456421,0.0277106575667858,0.0350571237504482,0.999001085758209,0.229269847273827,0.134997323155403,0.963955938816071,0.00713409297168255,0.119942277669907,0.992755234241486,-0.239291667938232,0.00219458946958184,0.970945239067078,-0.00881580170243979,0.119903638958931,0.992746412754059,-0.246479839086533,0.0275184512138367,0.968757152557373,-0.427608579397202,-0.0485320575535297,0.902660250663757,-0.246926590800285,0.0291119404137135,0.968596816062927,0.00827667489647865,0.104211539030075,0.994520723819733,-0.32795786857605,0.0361131578683853,0.944001853466034,-0.325792074203491,0.0245604161173105,0.945122361183167,-0.441146492958069,-0.00835635233670473,0.897396206855774,-0.253881841897964,0.054232269525528,0.965713679790497,0.00869224779307842,0.0984763950109482,0.995101451873779,-0.0980544537305832,0.0929867625236511,0.990827322006226,-0.327879071235657,0.0356887876987457,0.94404536485672,-0.415571928024292,-0.0411634296178818,0.908628404140472,-0.4474016726017,0.0110686803236604,0.89426463842392,-0.3205626308918,-0.00240667024627328,0.947224378585815,-0.321883738040924,0.00428840331733227,0.946769595146179,-0.0951865911483765,0.00971290934830904,0.995412170886993,-0.419755727052689,-0.0130343846976757,0.907543540000916,0.15223902463913,0.136730968952179,0.978840112686157,0.233632043004036,0.137948215007782,0.962489664554596,0.132484748959541,0.141284972429276,0.981063902378082,0.391828238964081,0.151837840676308,0.907422661781311,0.233450368046761,0.142355993390083,0.961891710758209,0.152110010385513,0.139154464006424,0.978518545627594,-0.0211459789425135,0.141480132937431,0.989715218544006,
  906. 0.152416780591011,0.133361458778381,0.979277193546295,0.130483105778694,0.127243474125862,0.983251392841339,0.149912029504776,0.177984356880188,0.972547173500061,-0.0594149082899094,0.112149819731712,0.991913437843323,0.387411832809448,0.177700206637383,0.904618561267853,-0.0215917900204659,0.135553553700447,0.990534722805023,-0.06515122205019,0.145822137594223,0.987163245677948,0.151363641023636,0.152839705348015,0.976590633392334,0.128143578767776,0.122401311993599,0.984173357486725,0.388492584228516,0.171526372432709,0.90534645318985,-0.0582343004643917,0.105254247784615,0.992738783359528,-0.342288702726364,0.0618433877825737,0.937557399272919,-0.0602258257567883,0.116892956197262,0.991316735744476,-0.0286483746021986,0.0396520979702473,0.998802781105042,0.118745408952236,0.166380822658539,0.978885591030121,-0.0601225048303604,0.116288304328918,0.991394102573395,-0.342159479856491,0.0611117444932461,0.93765252828598,0.333872854709625,0.5360968708992,0.775325119495392,-0.129371702671051,0.447002321481705,0.885128200054169,0.131676584482193,0.471763789653778,0.871837258338928,0.333836615085602,0.536253929138184,0.775232136249542,0.11593222618103,0.550279557704926,0.826893091201782,-0.13117216527462,0.452803373336792,0.881908714771271,0.0944623649120331,0.549093544483185,0.830405414104462,-0.137494623661041,0.473162859678268,0.870179355144501,-0.319573074579239,0.389595836400986,0.863763928413391,-0.138154372572899,0.47528612613678,0.868916809558868,0.117016337811947,0.536516010761261,0.835737824440002,-0.222681403160095,0.473118513822556,0.852391839027405,-0.144321650266647,0.495126336812973,0.85675036907196,-0.220791041851044,0.464300036430359,0.857716023921967,-0.333155393600464,0.4242123067379,0.842051923274994,0.117397867143154,0.531539678573608,0.838858366012573,0.0183060597628355,0.531405210494995,0.846920073032379,-0.222633630037308,0.472894847393036,0.85252857208252,-0.306504756212235,0.397709667682648,0.864801645278931,-0.339648872613907,0.441053301095963,0.830729007720947,-0.21590781211853,0.441795706748962,0.870747029781342,
  907. -0.216950044035912,0.44656628370285,0.868050277233124,0.0207073912024498,0.460214018821716,0.88756650686264,-0.310296982526779,0.421982258558273,0.851849019527435,-0.0759498327970505,-0.328314751386642,0.941510081291199,0.0105216074734926,-0.320556432008743,0.947170972824097,-0.0958766043186188,-0.325331181287766,0.94072699546814,0.0870164856314659,-0.318382441997528,0.943960249423981,0.0113450065255165,-0.327950239181519,0.944626867771149,-0.0747774168848991,-0.337653428316116,0.938295543193817,-0.249285325407982,-0.31830769777298,0.914623975753784,-0.0764196589589119,-0.324546247720718,0.942777693271637,-0.096476174890995,-0.332119584083557,0.938290417194366,-0.0754140540957451,-0.332594156265259,0.940049946308136,-0.256217628717422,-0.387655019760132,0.88548070192337,0.0895619541406631,-0.326131820678711,0.941072106361389,-0.249472200870514,-0.327209413051605,0.91142612695694,-0.273849129676819,-0.313103467226028,0.909380495548248,-0.0786031782627106,-0.306832790374756,0.948512077331543,-0.163828685879707,-0.426233559846878,0.889654517173767,0.0893257334828377,-0.325412839651108,0.941343426704407,-0.253853738307953,-0.396970093250275,0.882027804851532,-0.54650491476059,-0.341784626245499,0.764536380767822,-0.272162050008774,-0.320663839578629,0.907249987125397,-0.25016251206398,-0.396780610084534,0.883166968822479,-0.258299201726913,-0.236974477767944,0.936549305915833,-0.272097140550613,-0.3209528028965,0.907167255878448,-0.546610474586487,-0.34122759103775,0.76470959186554,-0.499617099761963,0.462995380163193,-0.73213255405426,-0.446251511573792,0.519118905067444,-0.72895485162735,-0.560911536216736,0.512597680091858,-0.650093734264374,-0.485054075717926,0.545738220214844,-0.68329530954361,-0.212835073471069,0.561947047710419,-0.799322664737701,-0.446101754903793,0.529855847358704,-0.721280932426453,-0.553862273693085,0.473674058914185,-0.684740424156189,-0.446124941110611,0.528501927852631,-0.722259104251862,-0.313085347414017,0.584429323673248,-0.748611986637115,-0.446048498153687,0.532709777355194,-0.719208657741547,
  908. -0.204861849546433,0.595315873622894,-0.776936709880829,-0.139274597167969,0.582813262939453,-0.800581812858582,-0.446109801530838,0.52939385175705,-0.721615016460419,-0.13929671049118,0.583218097686768,-0.800283133983612,-0.300390213727951,0.536814570426941,-0.788413643836975,0.0443585626780987,-0.245615348219872,-0.968352019786835,0.0862145200371742,-0.18172550201416,-0.979562699794769,0.232786610722542,-0.0842964723706245,-0.968867659568787,0.00822056364268065,-0.207181990146637,-0.978267908096313,-0.12399722635746,-0.317557096481323,-0.940096914768219,0.100313037633896,-0.208613753318787,-0.972839951515198,0.22824639081955,-0.078187070786953,-0.97045886516571,0.0697294920682907,-0.150264725089073,-0.986183702945709,0.233421146869659,-0.0535613745450974,-0.97089946269989,0.102878145873547,-0.213504046201706,-0.971510231494904,-0.12155444175005,-0.322142422199249,-0.938855051994324,0.0637067854404449,-0.27685210108757,-0.958798408508301,0.243871718645096,-0.0809296444058418,-0.966424942016602,0.0775135010480881,-0.165122866630554,-0.983222305774689,0.0271582286804914,-0.151131048798561,-0.98814058303833,-0.148370027542114,-0.4469093978405,-0.882189512252808,-0.0118130454793572,-0.376764237880707,-0.926233887672424,0.135750383138657,-0.278879255056381,-0.950682997703552,-0.167213976383209,-0.416764706373215,-0.893502473831177,-0.182856783270836,-0.448374301195145,-0.874942243099213,-0.0213749837130308,-0.359303295612335,-0.932976007461548,0.171086445450783,-0.326081424951553,-0.92973130941391,0.000976432056631893,-0.399844080209732,-0.916582643985748,0.192508593201637,-0.29003182053566,-0.937455058097839,-0.00980894453823566,-0.380401581525803,-0.924769401550293,-0.186899468302727,-0.433163911104202,-0.881724238395691,0.0420793518424034,-0.400308012962341,-0.915414035320282,-0.00464825890958309,-0.389732509851456,-0.920916378498077,0.031529039144516,-0.338141560554504,-0.940566956996918,0.194979712367058,-0.296953678131104,-0.934773445129395,-0.609366536140442,0.675058960914612,-0.415894240140915,-0.558569133281708,0.730362117290497,-0.393156081438065,
  909. -0.666796863079071,0.674491405487061,-0.316927880048752,-0.596211612224579,0.730505704879761,-0.333006203174591,-0.343226075172424,0.82788074016571,-0.443632274866104,-0.558381021022797,0.73987090587616,-0.37523552775383,-0.659454524517059,0.654194295406342,-0.370337098836899,-0.558508992195129,0.734890282154083,-0.38471308350563,-0.437137395143509,0.809455871582031,-0.392035901546478,-0.558417618274689,0.738680362701416,-0.377519607543945,-0.336402237415314,0.846180319786072,-0.413294583559036,-0.26792049407959,0.854721784591675,-0.444600164890289,-0.558487951755524,0.735919058322906,-0.382772177457809,-0.267840176820755,0.853569388389587,-0.446856707334518,-0.425462305545807,0.786742389202118,-0.447234004735947,-0.176174178719521,-0.13164296746254,-0.975516676902771,-0.0517293699085712,-0.036462564021349,-0.997995376586914,0.0843506902456284,0.0829253420233727,-0.992979526519775,-0.1846943795681,-0.120352394878864,-0.975399136543274,-0.207808941602707,-0.164613723754883,-0.964218735694885,-0.0500570423901081,-0.0389699526131153,-0.997985780239105,0.111328519880772,0.0526304319500923,-0.992389023303986,-0.0502989776432514,-0.0386072769761086,-0.997987747192383,0.130594164133072,0.0923225879669189,-0.987128019332886,-0.0558148510754108,-0.0303326118737459,-0.997980296611786,-0.226355388760567,-0.114535972476006,-0.967287302017212,-0.00366838788613677,-0.0455989055335522,-0.998953104019165,-0.0432183519005775,-0.0492128133773804,-0.997852921485901,-0.0186240933835506,0.0080161951482296,-0.99979442358017,0.143826380372047,0.0647638663649559,-0.987481474876404,-0.0092062670737505,0.11252224445343,-0.993606567382813,0.103420816361904,0.21826146543026,-0.970394790172577,0.219659760594368,0.341559857130051,-0.913830757141113,-0.0183486025780439,0.122060343623161,-0.992353081703186,-0.037861842662096,0.0737653523683548,-0.996556639671326,0.104775406420231,0.2166887819767,-0.970601916313171,0.249501809477806,0.31466880440712,-0.915823459625244,0.105659335851669,0.215661764144897,-0.970734834671021,0.265203058719635,0.354353129863739,-0.896717011928558,
  910. 0.0984218120574951,0.224052608013153,-0.969594657421112,-0.0615774132311344,0.119969740509987,-0.990866005420685,0.151948511600494,0.213529616594315,-0.965047538280487,0.113640375435352,0.206360191106796,-0.971854686737061,0.130951285362244,0.2630375623703,-0.955857217311859,0.281649976968765,0.328994244337082,-0.90135246515274,0.0305837746709585,-0.884556710720062,-0.46542888879776,0.0638235434889793,-0.845192790031433,-0.530637085437775,0.197196453809738,-0.758759915828705,-0.620803475379944,-0.00723261712118983,-0.870927214622498,-0.491358816623688,-0.11431872099638,-0.922417402267456,-0.36888661980629,0.0866502895951271,-0.859695255756378,-0.503404200077057,0.207717478275299,-0.763398349285126,-0.611617863178253,0.0546771101653576,-0.839050471782684,-0.541299104690552,0.209289774298668,-0.747793853282928,-0.630081057548523,0.0882553532719612,-0.860670268535614,-0.50145560503006,-0.112925171852112,-0.923242390155792,-0.36724841594696,0.0607840791344643,-0.895213782787323,-0.441472083330154,0.224170297384262,-0.761176466941834,-0.608570516109467,0.065004289150238,-0.845972001552582,-0.529250264167786,0.0105200065299869,-0.844204246997833,-0.535918354988098,-0.282101392745972,0.353933811187744,-0.8917116522789,-0.159004271030426,0.458233684301376,-0.874493896961212,-0.0242839809507132,0.566264748573303,-0.823865592479706,-0.291060268878937,0.363523125648499,-0.884949088096619,-0.308421730995178,0.32238245010376,-0.89495575428009,-0.158235222101212,0.4572993516922,-0.875122249126434,0.0121966367587447,0.532155334949493,-0.84655886888504,-0.147219777107239,0.443862408399582,-0.883918821811676,0.032276626676321,0.565860688686371,-0.823868989944458,-0.141508221626282,0.436856120824814,-0.888331115245819,-0.312576860189438,0.331587910652161,-0.890137732028961,-0.0949056968092918,0.420900791883469,-0.902128279209137,-0.149878337979317,0.447114557027817,-0.881830513477325,-0.122172795236111,0.501703917980194,-0.856368601322174,0.0389294922351837,0.554223001003265,-0.831457376480103,-0.00476048421114683,-0.907834827899933,-0.419300973415375,
  911. 0.0341467447578907,-0.878290474414825,-0.476906567811966,0.181593805551529,-0.8153937458992,-0.54968786239624,-0.0321003347635269,-0.894704937934875,-0.445502668619156,-0.16414213180542,-0.929298579692841,-0.330849707126617,0.0555954538285732,-0.896716237068176,-0.439100384712219,0.184776529669762,-0.817305266857147,-0.545774459838867,0.0228034537285566,-0.867783784866333,-0.496418476104736,0.194813787937164,-0.799824059009552,-0.567740321159363,0.0586616471409798,-0.89919513463974,-0.433597654104233,-0.161263912916183,-0.931537985801697,-0.325930863618851,0.0250821337103844,-0.925145208835602,-0.378784149885178,0.211253330111504,-0.820994675159454,-0.530414760112762,0.0385401509702206,-0.882218718528748,-0.469260066747665,-0.0082248579710722,-0.875030875205994,-0.483997464179993,0.213798806071281,0.967918932437897,0.131996348500252,0.00503315264359117,0.999602258205414,0.0277521386742592,-0.118157677352428,0.991856455802917,0.0475344620645046,0.212472721934319,0.967373490333557,0.138000264763832,-0.120377898216248,0.991130769252777,0.0562938749790192,0.00597896287217736,0.992443680763245,0.122556008398533,-0.00606571976095438,0.998578488826752,0.0529564805328846,-0.325973629951477,0.942405045032501,-0.0749260038137436,-0.105941116809845,0.994372427463531,-6.32333249086514e-005,-0.10804083943367,0.994113981723785,0.00804692134261131,-0.223951086401939,0.974599063396454,0.00166256166994572,0.0126421395689249,0.999148488044739,0.0392745174467564,-0.109545700252056,0.993884980678558,0.0138772632926703,-0.340141028165817,0.939776420593262,-0.0335320606827736,-0.216473534703255,0.97525680065155,-0.0448705293238163,0.0117329219356179,0.998643934726715,0.0507206544280052,-0.226289123296738,0.973913848400116,0.016883971169591,-0.120717838406563,0.991812407970428,0.041657667607069,-0.35814294219017,0.933403432369232,0.0221722982823849,-0.366317272186279,0.930485665798187,0.00283891428261995,-0.227740004658699,0.973361074924469,0.0265088751912117,-0.227331027388573,0.973527133464813,0.0237813927233219,-0.365980863571167,0.930622339248657,0.000556773215066642,
  912. -0.119630672037601,0.992548406124115,0.0231547970324755,-0.00209953915327787,-0.0390711650252342,-0.999234318733215,0.0335712544620037,0.0342695973813534,-0.998848617076874,0.165196195244789,0.14658297598362,-0.975307047367096,-0.0246695596724749,-0.0206567831337452,-0.999482333660126,-0.133584856987,-0.150854974985123,-0.979488551616669,0.0661619231104851,-0.0122525561600924,-0.997733771800995,0.157948136329651,0.154097631573677,-0.975349307060242,0.0103775123134255,0.0672170370817184,-0.997684419155121,0.168513178825378,0.18417689204216,-0.968339920043945,0.0708943009376526,-0.0190300345420837,-0.997302293777466,-0.129132330417633,-0.157032877206802,-0.979114651679993,0.0391329377889633,-0.0890082269906998,-0.99526184797287,0.188876181840897,0.147233113646507,-0.97090071439743,0.0282456483691931,0.0418465845286846,-0.998724818229675,-0.022575406357646,0.0513479635119438,-0.998425602912903,-0.0277280285954475,-0.111549094319344,-0.993372023105621,0.093359112739563,-0.00481182942166924,-0.995620965957642,0.214979290962219,0.120035335421562,-0.969213843345642,-0.0374361574649811,-0.100445598363876,-0.994238018989563,-0.0565403327345848,-0.145398199558258,-0.987756311893463,0.0950063019990921,-0.00694305403158069,-0.995452463626862,0.243290051817894,0.0920836254954338,-0.965572655200958,0.0951157882809639,-0.00708475057035685,-0.995441019535065,0.259734481573105,0.135110005736351,-0.956181645393372,0.0887942165136337,0.00109003460966051,-0.996049404144287,-0.07818304002285,-0.0964488834142685,-0.992262601852417,0.145752176642418,-0.00885984767228365,-0.989281475543976,0.102798156440258,-0.0170360170304775,-0.994556367397308,0.127200961112976,0.0427105203270912,-0.990956962108612,0.275220066308975,0.107498794794083,-0.955352246761322,-0.154376283288002,-0.0551039464771748,-0.986474394798279,-0.0444933548569679,0.0526323802769184,-0.99762225151062,0.0777077823877335,0.184631407260895,-0.97973096370697,-0.164236083626747,-0.0447888858616352,-0.985403716564178,-0.175378069281578,-0.0885239094495773,-0.980513155460358,-0.0422842390835285,0.0500192530453205,-0.997852861881256,
  913. 0.119300998747349,0.147216469049454,-0.98188316822052,-0.0323255881667137,0.0382387116551399,-0.998745739459991,0.132823288440704,0.188445851206779,-0.973060190677643,-0.0240551885217428,0.0284555610269308,-0.999305665493011,-0.180819571018219,-0.0778895989060402,-0.980427205562592,0.0281226895749569,0.0144579336047173,-0.999499917030334,-0.0347292199730873,0.041082076728344,-0.998552024364471,-0.00840918160974979,0.105738654732704,-0.994358420372009,0.140868678689003,0.175535932183266,-0.974342405796051,-0.100513651967049,0.815109252929688,-0.570520758628845,0.00518676545470953,0.880074083805084,-0.474808037281036,0.11870251595974,0.931061148643494,-0.345014274120331,-0.111554302275181,0.819961190223694,-0.56144392490387,-0.123582407832146,0.792495965957642,-0.597224891185761,0.00715853832662106,0.879074096679688,-0.476631432771683,0.161756426095963,0.912899076938629,-0.374766767024994,0.0185619965195656,0.873148322105408,-0.48710110783577,0.17602801322937,0.926888704299927,-0.33149915933609,0.0268786288797855,0.86867368221283,-0.494655221700668,-0.128904119133949,0.797314524650574,-0.589638292789459,0.084216520190239,0.86213093996048,-0.49963790178299,0.0157987903803587,0.874606490135193,-0.484576016664505,0.0427830033004284,0.904515385627747,-0.424289494752884,0.184753835201263,0.921175420284271,-0.342493921518326,-0.0468429438769817,0.521752238273621,-0.851810038089752,-0.00965491589158773,0.58696985244751,-0.809551239013672,0.117359936237335,0.670415043830872,-0.732646107673645,-0.067499965429306,0.534876525402069,-0.842229723930359,-0.171864971518517,0.41305685043335,-0.894341349601746,0.0259083975106478,0.546370267868042,-0.837143063545227,0.119533069431782,0.668663382530212,-0.733894467353821,-0.0260083172470331,0.604928255081177,-0.795855104923248,0.130540445446968,0.690982580184937,-0.710986912250519,0.0284845679998398,0.543346881866455,-0.839024901390076,-0.169676303863525,0.410614818334579,-0.895882487297058,-0.00417263805866241,0.483989745378494,-0.875063717365265,0.146240994334221,0.669648051261902,-0.728138089179993,
  914. -0.0140313832089305,0.591819763183594,-0.805948197841644,-0.0669345706701279,0.594431638717651,-0.801355600357056,0.048092495650053,0.968235790729523,0.245370268821716,-0.132436007261276,0.94802713394165,0.289319068193436,-0.0561545677483082,0.962028682231903,0.267109423875809,-0.141007617115974,0.954117000102997,0.264154493808746,0.0417193993926048,0.974323391914368,0.221254155039787,-0.140896409749985,0.95391583442688,0.264939188957214,-0.0593432076275349,0.964424431324005,0.257611960172653,0.266530841588974,0.952555954456329,0.146964803338051,0.0394492633640766,0.976331055164337,0.212653800845146,0.0355489179491997,0.979584395885468,0.197865188121796,-0.179372131824493,0.952402532100677,0.246485412120819,-0.14721804857254,0.960636556148529,0.23559345304966,0.266517609357834,0.952566921710968,0.146917194128037,0.141754999756813,0.970782697200775,0.193614304065704,0.0393270663917065,0.976436734199524,0.212190702557564,-0.158854365348816,0.932127237319946,0.325429439544678,0.056613739579916,0.959041893482208,0.277549207210541,0.150801673531532,0.963593304157257,0.220787212252617,0.128213167190552,0.979825496673584,0.153308033943176,0.255024939775467,0.961079061031342,0.10625147819519,0.291447699069977,0.952046036720276,0.0930943936109543,0.149875700473785,0.964372754096985,0.217996537685394,-0.172407746315002,0.929528474807739,0.325964093208313,-0.162408947944641,0.936025142669678,0.312218606472015,0.333585202693939,0.939997494220734,0.0715936347842216,0.12833571434021,0.979752659797668,0.153670832514763,0.291515111923218,0.952004849910736,0.0933043137192726,-0.193278089165688,0.936490893363953,0.292623341083527,0.144208535552025,0.968925893306732,0.200963944196701,0.127492144703865,0.980502188205719,0.149536803364754,0.172808840870857,0.954741358757019,0.242086887359619,0.146481990814209,0.967144131660461,0.207787081599236,0.35768735408783,0.924484968185425,0.131861075758934,0.844471454620361,0.393491119146347,0.363363087177277,0.640793919563293,0.500449538230896,0.58217990398407,0.549126803874969,0.492023169994354,0.675553798675537,
  915. 0.642605483531952,0.486837893724442,0.591647744178772,0.21117439866066,0.5570969581604,0.803149044513702,0.522676706314087,0.570237934589386,0.633749067783356,0.859350204467773,0.26396906375885,0.437992662191391,0.967323839664459,0.153797462582588,0.201571106910706,0.650236248970032,0.388686299324036,0.652775406837463,0.150342658162117,0.614953815937042,0.774098753929138,0.18875116109848,0.621739625930786,0.760140001773834,0.632695436477661,0.548808932304382,0.546356320381165,0.620360314846039,0.602435171604156,0.502219974994659,0.94953441619873,0.308666616678238,0.0557630658149719,0.555088937282562,0.455954223871231,0.695688188076019,0.645595967769623,0.460188150405884,0.609452784061432,0.510872483253479,0.590758860111237,0.624510586261749,0.169343858957291,0.565878748893738,0.80691009759903,0.888454914093018,0.372054785490036,0.268743604421616,0.549248576164246,0.477262258529663,0.685964107513428,0.957639455795288,0.273422420024872,0.0903716832399368,0.541378259658813,0.50389575958252,0.673051714897156,0.1787069439888,0.486220180988312,0.855367600917816,0.196832582354546,0.487551122903824,0.850617945194244,0.586856544017792,0.299325883388519,0.752331972122192,0.920083284378052,0.213346064090729,0.328527271747589,0.685994207859039,0.267149358987808,0.676788866519928,0.268119633197784,0.295580267906189,0.916921019554138,0.586765646934509,0.29995197057724,0.752153515815735,0.667376637458801,0.344441473484039,0.660279095172882,-0.114719621837139,0.379759877920151,0.917944371700287,0.00436443323269486,0.373383760452271,0.92766672372818,0.0394531972706318,0.354216665029526,0.934330761432648,-0.118129961192608,0.359435975551605,0.925662517547607,-0.17827644944191,0.363013505935669,0.914570331573486,0.0043927077203989,0.37082052230835,0.928694188594818,0.0455044023692608,0.380064636468887,0.923839926719666,0.00452749151736498,0.358519613742828,0.933511197566986,0.195716679096222,0.349717020988464,0.916183948516846,0.00437989784404635,0.371982604265213,0.92822939157486,-0.17831064760685,0.36446338891983,0.91398674249649,
  916. -0.092676006257534,0.383838623762131,0.918737888336182,0.196208089590073,0.356510251760483,0.913456499576569,0.00451517524197698,0.359649151563644,0.933076679706573,0.0992771983146667,0.345435231924057,0.933176696300507,0.0945468097925186,0.381412416696548,0.919557332992554,0.00438361195847392,0.371645599603653,0.928364336490631,-0.0881116688251495,0.357601463794708,0.929708302021027,-0.116347320377827,0.714965045452118,-0.689411580562592,0.00603307317942381,0.726610779762268,-0.687022864818573,0.0409210398793221,0.740180194377899,-0.671162247657776,-0.119799062609673,0.728994369506836,-0.673955142498016,-0.182908087968826,0.716799020767212,-0.672862470149994,0.00603870861232281,0.72684371471405,-0.686776340007782,0.0493625737726688,0.712567269802094,-0.699865221977234,0.00610650470480323,0.729657709598541,-0.683785319328308,0.19403837621212,0.716024398803711,-0.670565545558929,0.00603584479540586,0.7267245054245,-0.686902582645416,-0.182915180921555,0.716577887535095,-0.673096060752869,-0.0933555737137794,0.714205980300903,-0.69368189573288,0.194385841488838,0.711644232273102,-0.675112307071686,0.0060941381379962,0.729146301746368,-0.684330701828003,0.0998227521777153,0.732829749584198,-0.673049747943878,0.0968693941831589,0.715251803398132,-0.692120790481567,0.00603260798379779,0.726591885089874,-0.687042832374573,-0.0887952223420143,0.733451008796692,-0.673917770385742,-0.116862386465073,-0.687139332294464,-0.717065334320068,0.00608333246782422,-0.684810340404511,-0.728695929050446,0.0402645133435726,-0.668893098831177,-0.742267310619354,-0.119770124554634,-0.67408686876297,-0.728877186775208,-0.182912066578865,-0.672994077205658,-0.716674387454987,0.00603566505014896,-0.686910152435303,-0.726717293262482,0.0497087612748146,-0.701023399829865,-0.711403727531433,0.00607887795194983,-0.685004889965057,-0.728513181209564,0.194130972027779,-0.671769976615906,-0.714869379997253,0.00603237468749285,-0.687054991722107,-0.726580381393433,-0.182919681072235,-0.673245251178741,-0.716436505317688,-0.0933886915445328,-0.693824589252472,-0.714063048362732,
  917. 0.194409012794495,-0.675418138504028,-0.711347639560699,0.00608687335625291,-0.684651374816895,-0.728845298290253,0.0997743085026741,-0.673369884490967,-0.732542216777802,0.0968077778816223,-0.692509293556213,-0.714884102344513,0.00602371618151665,-0.687433362007141,-0.726222515106201,-0.0888830795884132,-0.674300670623779,-0.733088254928589,-0.115816228091717,0.639858424663544,-0.759715616703033,0.00428420538082719,0.651405215263367,-0.758717954158783,0.0401986613869667,0.666045725345612,-0.744826912879944,-0.11701949685812,0.645478367805481,-0.754760980606079,-0.180255532264709,0.633556663990021,-0.752405405044556,0.00406519183889031,0.641636371612549,-0.76699823141098,0.0466577559709549,0.642398238182068,-0.764949381351471,0.00449939258396626,0.660930335521698,-0.750433743000031,0.194695189595222,0.648883283138275,-0.73555713891983,0.00407978566363454,0.642289221286774,-0.766451478004456,-0.180240988731384,0.634181797504425,-0.751882076263428,-0.0846263393759727,0.628585875034332,-0.773122370243073,0.194941341876984,0.645990371704102,-0.738034188747406,0.0045452737249434,0.662952065467834,-0.748648047447205,0.10062026232481,0.667271137237549,-0.737986981868744,0.0975286811590195,0.646769165992737,-0.756424367427826,0.004443041048944,0.658442139625549,-0.752618253231049,-0.076771154999733,0.665691494941711,-0.742267489433289,0.116733126342297,0.575358629226685,0.809528291225433,-0.00841064285486937,0.572113215923309,0.820131540298462,-0.0445859096944332,0.553743302822113,0.831492900848389,0.119165606796741,0.561823964118958,0.818629086017609,0.177329808473587,0.562582910060883,0.80749899148941,-0.00837394408881664,0.574057936668396,0.818771839141846,-0.0526874735951424,0.585044920444489,0.80928760766983,-0.00849602185189724,0.567567408084869,0.823283076286316,-0.198260098695755,0.555319130420685,0.807659327983856,-0.0083643002435565,0.574567973613739,0.818414092063904,0.177344545722008,0.563186407089233,0.807074964046478,0.0881035551428795,0.584072291851044,0.80690598487854,-0.19867405295372,0.560658156871796,0.803860068321228,
  918. -0.00848981458693743,0.567897856235504,0.823055267333984,-0.103171899914742,0.555654227733612,0.824987232685089,-0.0992202237248421,0.58320814371109,0.806240439414978,-0.00833722855895758,0.575994491577148,0.817411065101624,0.0838952139019966,0.563178181648254,0.822065651416779,-0.116553887724876,-0.576342701911926,-0.808853685855865,0.00839245971292257,-0.573076784610748,-0.819458723068237,0.0448375307023525,-0.554724276065826,-0.830825209617615,-0.11929539591074,-0.561092257499695,-0.819111764431,-0.177312135696411,-0.561864793300629,-0.808002710342407,0.00838774628937244,-0.573327660560608,-0.819283246994019,0.0530408024787903,-0.586396634578705,-0.808285593986511,0.00846981815993786,-0.568965137004852,-0.822318017482758,0.198368400335312,-0.556707561016083,-0.806676268577576,0.00837574619799852,-0.573962986469269,-0.81883841753006,-0.177330076694489,-0.562593877315521,-0.807491302490234,-0.0879865810275078,-0.583492934703827,-0.807337820529938,0.198743864893913,-0.56156724691391,-0.803207993507385,0.00847205519676209,-0.56884503364563,-0.822401106357574,0.10304106771946,-0.556589782238007,-0.824372708797455,0.099383682012558,-0.582096636295319,-0.807023286819458,0.00835805293172598,-0.574895679950714,-0.818184018135071,-0.083673283457756,-0.562073588371277,-0.822843909263611,-0.166595712304115,-0.984140336513519,0.0609413832426071,0.00828847195953131,-0.998499155044556,0.0541364215314388,-0.20282831788063,-0.977723300457001,0.0540188252925873,-0.165096506476402,-0.985102891921997,0.0481193736195564,0.0172935109585524,-0.996696650981903,0.079352080821991,0.00828936602920294,-0.99849259853363,0.0542566552758217,-0.202738985419273,-0.97764128446579,0.0558075271546841,0.00829596258699894,-0.998444020748138,0.055142879486084,-0.0664946436882019,-0.9973224401474,0.0304402373731136,0.00829469133168459,-0.998453438282013,0.0549725219607353,0.0253471788018942,-0.999030709266663,0.0359880365431309,0.160987704992294,-0.985319256782532,0.0568240955471992,-0.0587472394108772,-0.995822250843048,0.0699059069156647,0.00829029269516468,-0.998485922813416,0.0543812103569508,
  919. 0.114889547228813,-0.992365598678589,0.0448434948921204,0.11660835146904,-0.991192698478699,0.0627657473087311,0.00831211358308792,-0.998321533203125,0.0573171563446522,0.161355331540108,-0.985493898391724,0.0525954589247704,-0.109610266983509,-0.565907597541809,-0.817150056362152,0.00859086401760578,-0.562486171722412,-0.826762080192566,0.0421782396733761,-0.544328510761261,-0.83781111240387,-0.112356923520565,-0.551626265048981,-0.826489210128784,-0.177097350358963,-0.553508341312408,-0.813796699047089,0.00854720640927553,-0.564832508563995,-0.825161337852478,0.0515961721539497,-0.580862879753113,-0.81236457824707,0.00858238991349936,-0.562939524650574,-0.826453506946564,0.199944227933884,-0.550966143608093,-0.810221374034882,0.00854458939284086,-0.564973115921021,-0.825065076351166,-0.177104994654655,-0.553795099258423,-0.813599944114685,-0.0924937874078751,-0.573465526103973,-0.813991546630859,0.200208231806755,-0.555006444454193,-0.807393670082092,0.00858906097710133,-0.562579810619354,-0.826698362827301,0.09659393876791,-0.550663352012634,-0.829119682312012,0.0937066078186035,-0.572049260139465,-0.814848899841309,0.00853406637907028,-0.565534651279449,-0.824680387973785,-0.0883007645606995,-0.551996111869812,-0.829158186912537,0.125880688428879,0.310112029314041,-0.942329347133636,0.1270781904459,0.275727570056915,-0.952798843383789,0.345159292221069,0.340429365634918,-0.874627292156219,0.145340487360954,0.227483168244362,-0.9628746509552,-0.212417706847191,0.160917386412621,-0.963838338851929,0.129344806075096,0.26918363571167,-0.954363822937012,0.334457814693451,0.378049403429031,-0.863259315490723,0.295001327991486,0.37070906162262,-0.880652725696564,0.117596954107285,0.343416422605515,-0.93179190158844,-0.231962263584137,0.201835438609123,-0.951554477214813,0.129079058766365,0.296966820955276,-0.946123421192169,-0.18715463578701,0.223078429698944,-0.956665754318237,0.00953392870724201,0.319033652544022,-0.947695434093475,0.11736810952425,0.344321697950363,-0.9314866065979,0.294802308082581,0.371537506580353,-0.880370199680328,
  920. 0.0177186224609613,0.288022994995117,-0.957459568977356,-0.186813592910767,0.221101298928261,-0.957191169261932,0.127319931983948,0.304217129945755,-0.944056034088135,0.0204533394426107,0.277572274208069,-0.960487008094788,0.304096192121506,0.331392079591751,-0.893143236637115,0.23844513297081,0.322042196989059,-0.916205644607544,-0.191785663366318,0.250307023525238,-0.948980867862701,0.0167333371937275,0.29177725315094,-0.95634001493454,-0.181214183568954,0.244345381855965,-0.952605247497559,-0.111216053366661,0.201860815286636,-0.973079264163971,0.0201798044145107,0.27861961722374,-0.960189521312714,0.238237202167511,0.322845280170441,-0.91597706079483,0.0157982632517815,0.295334845781326,-0.955263197422028,-0.19952081143856,0.24029178917408,-0.949974477291107,-0.180599063634872,0.241619750857353,-0.953417062759399,-0.190368175506592,0.218547910451889,-0.957077205181122,0.02026735432446,0.27828449010849,-0.960284829139709,-0.129466503858566,0.245305866003037,-0.960761904716492,0.171118155121803,0.752358853816986,-0.636140465736389,-0.0965866893529892,0.71778666973114,-0.689531266689301,-0.00399435916915536,0.738832056522369,-0.673877775669098,-0.0109150670468807,0.760503828525543,-0.649241745471954,-0.107507735490799,0.746967077255249,-0.656111478805542,-0.285835593938828,0.689852178096771,-0.665133059024811,-0.0141240619122982,0.770274519920349,-0.63755601644516,0.293840020895004,0.773549258708954,-0.561497807502747,0.161073550581932,0.782853960990906,-0.600995004177094,-0.262612104415894,0.682715475559235,-0.681861042976379,-0.00661120237782598,0.747122704982758,-0.664653360843658,-0.281019300222397,0.676479637622833,-0.680737435817719,0.288792371749878,0.793078482151031,-0.536307275295258,-0.0197843667119741,0.78707891702652,-0.616535127162933,0.0821958407759666,0.790674686431885,-0.606693863868713,0.0779891237616539,0.800939083099365,-0.593644917011261,-0.0166154559701681,0.777739286422729,-0.628367364406586,-0.278391599655151,0.716908276081085,-0.639171838760376,0.0837107300758362,0.786906778812408,-0.611367523670197,
  921. 0.356571704149246,0.777340769767761,-0.518264353275299,0.289763957262039,0.78947126865387,-0.541084051132202,-0.19196406006813,0.816543936729431,-0.544431626796722,0.0501748248934746,0.861741721630096,-0.504860103130341,-0.304342865943909,0.772223889827728,-0.557714700698853,0.359766632318497,0.765050053596497,-0.534103333950043,0.0905446261167526,0.769429802894592,-0.632281184196472,0.198979660868645,0.770790874958038,-0.605217695236206,-0.0259241815656424,0.999313056468964,0.0264827962964773,-0.0840027034282684,0.996260523796082,-0.0202107783406973,-0.374495625495911,0.922292053699493,-0.0955529063940048,0.0701818913221359,-0.276576012372971,0.958425998687744,0.287036120891571,-0.223615616559982,0.931453883647919,0.0756156444549561,-0.307565540075302,0.948517620563507,-0.312959879636765,-0.296478807926178,0.902306199073792,0.0624094232916832,-0.241801887750626,0.968316555023193,0.0408986732363701,-0.202159523963928,0.97849828004837,0.293298006057739,-0.248258888721466,0.923224687576294,0.0769340395927429,-0.306827515363693,0.948650658130646,0.253920614719391,-0.261796295642853,0.931121349334717,0.0713289976119995,-0.281712591648102,0.956843972206116,-0.290381610393524,-0.350876450538635,0.890260756015778,-0.236552610993385,-0.337145835161209,0.911249458789825,-0.0277974121272564,-0.33782684803009,0.940797686576843,0.254702746868134,-0.265755712985992,0.929785251617432,0.0777620822191238,-0.31054013967514,0.947374224662781,-0.233061850070953,-0.357575625181198,0.904335021972656,-0.0340756885707378,-0.312189131975174,0.949408650398254,0.0746379122138023,-0.296535789966583,0.952100694179535,0.19125334918499,-0.254970341920853,0.947846233844757,0.249286830425262,-0.238702923059464,0.938550472259521,-0.0345365852117538,-0.310293912887573,0.950013101100922,-0.02761160582304,-0.338580012321472,0.940532386302948,-0.231808468699455,-0.364715844392776,0.901802182197571,-0.22537200152874,-0.369864583015442,0.90133661031723,-0.159710004925728,-0.391563564538956,0.906184673309326,0.194564163684845,-0.268284350633621,0.943487405776978,
  922. -0.0311003029346466,-0.324382871389389,0.945414483547211,-0.227800041437149,-0.376329898834229,0.898043930530548,-0.0258889812976122,-0.345550715923309,0.938042998313904,-0.2230034917593,-0.380473852157593,0.897501587867737,-0.0323892012238503,-0.319110214710236,0.947163999080658,-0.235439658164978,-0.357262909412384,0.903842687606812,-0.180559143424034,-0.34082368016243,0.922625422477722,-0.0460012629628181,-0.994892120361328,0.0898528844118118,0.0818561464548111,-0.99285763502121,0.0867942348122597,0.114777773618698,-0.991165697574615,0.06645767390728,-0.0485488474369049,-0.996631503105164,0.0660972967743874,-0.107883751392365,-0.991685926914215,0.0701436102390289,0.0821430161595345,-0.993224322795868,0.0822068452835083,0.121445722877979,-0.986823856830597,0.106909416615963,0.0821088030934334,-0.993181586265564,0.0827554687857628,0.270092397928238,-0.958812892436981,0.0879088714718819,0.0821478292346001,-0.99323034286499,0.08212960511446,-0.10789455473423,-0.99167412519455,0.0702949464321136,-0.0191443171352148,-0.995639085769653,0.0913036912679672,0.270145744085312,-0.957831919193268,0.0978741049766541,0.0818161368370056,-0.992805004119873,0.0874316841363907,0.171410456299782,-0.982018947601318,0.0791026800870895,0.166593283414841,-0.980097472667694,0.107961483299732,0.0814789906144142,-0.992347180843353,0.0927807837724686,-0.0157571453601122,-0.997047781944275,0.0751494541764259,-0.177407950162888,0.319037914276123,0.930989384651184,-0.0581171214580536,0.322097629308701,0.944920897483826,-0.0193282421678305,0.304841071367264,0.952207088470459,-0.178835466504097,0.30414867401123,0.935687720775604,-0.241699516773224,0.303424566984177,0.921691298484802,-0.0583531521260738,0.325192272663116,0.943845808506012,-0.013526170514524,0.341925919055939,0.939629673957825,-0.0578056834638119,0.318021535873413,0.94631963968277,0.134349450469017,0.325155377388,0.936068475246429,-0.0583225376904011,0.324790626764297,0.943985998630524,-0.241676226258278,0.303135275840759,0.92179262638092,-0.151217415928841,0.32941147685051,0.931998610496521,
  923. 0.13437232375145,0.33320090174675,0.933231711387634,-0.0580049641430378,0.320628672838211,0.945427238941193,0.035504188388586,0.315426975488663,0.948285460472107,0.0303491353988647,0.34372341632843,0.938580393791199,-0.0585521832108498,0.327805370092392,0.942929089069366,-0.14651595056057,0.308468192815781,0.939883232116699,-0.150001794099808,-0.0849780216813087,0.985027015209198,-0.0241702795028687,-0.0853434428572655,0.996058404445648,0.0105054844170809,-0.103747084736824,0.994548320770264,-0.151931628584862,-0.109093263745308,0.982352018356323,-0.212600290775299,-0.105126045644283,0.971467792987823,-0.02374049089849,-0.0901172533631325,0.995648145675659,0.0156174562871456,-0.0641040131449699,0.997821033000946,-0.0238680671900511,-0.0887012556195259,0.995772361755371,0.159300267696381,-0.074992723762989,0.98437774181366,-0.0237209256738424,-0.0903343856334686,0.995628952980042,-0.212606817483902,-0.105061404407024,0.971473336219788,-0.126199126243591,-0.0826782658696175,0.988553524017334,0.159216463565826,-0.0680485516786575,0.984895706176758,-0.0239518228918314,-0.087771087884903,0.995852649211884,0.0667339190840721,-0.0925680100917816,0.993467628955841,0.0630163103342056,-0.0736917480826378,0.995288252830505,-0.0235449466854334,-0.092286616563797,0.995454072952271,-0.118661023676395,-0.113098777830601,0.986472725868225,-0.101901926100254,0.379816263914108,-0.91943222284317,0.0141336852684617,0.398589283227921,-0.917020618915558,0.0494991168379784,0.420496970415115,-0.905942797660828,-0.104676276445389,0.390157043933868,-0.914778888225555,-0.171804741024971,0.373799860477448,-0.911458611488342,0.0146860703825951,0.390916347503662,-0.920309066772461,0.0616928078234196,0.383442401885986,-0.921502113342285,0.0138816107064486,0.402076900005341,-0.915500640869141,0.204259216785431,0.408649504184723,-0.889541327953339,0.0147400861606002,0.390163779258728,-0.920627474784851,-0.171750366687775,0.373028367757797,-0.911784887313843,-0.0808664485812187,0.36925408244133,-0.925803482532501,0.204719811677933,0.405679434537888,-0.890794038772583,
  924. 0.0137026300653815,0.404548019170761,-0.91441410779953,0.108622349798679,0.41881936788559,-0.901549518108368,0.107653446495533,0.388802379369736,-0.915010094642639,0.0144164655357599,0.394666582345963,-0.918711423873901,-0.0784518793225288,0.398692280054092,-0.913723051548004,0.123875059187412,-0.349128186702728,-0.928851187229156,0.132731333374977,-0.379784971475601,-0.915503025054932,0.339902520179749,-0.284671247005463,-0.896341741085052,0.114570073783398,-0.312742561101913,-0.942902863025665,-0.259935081005096,-0.376766353845596,-0.889089941978455,0.0926484614610672,-0.272338300943375,-0.957730710506439,0.346477299928665,-0.3074811398983,-0.886232912540436,0.308779418468475,-0.323265850543976,-0.894513547420502,0.131119534373283,-0.37761116027832,-0.916633903980255,-0.235444501042366,-0.42977300286293,-0.87170022726059,0.124536886811256,-0.35172438621521,-0.927782595157623,-0.186606422066689,-0.416164338588715,-0.889935672283173,0.026686143130064,-0.412878274917603,-0.910395205020905,0.132014244794846,-0.381138682365417,-0.915044009685516,0.309627801179886,-0.327100247144699,-0.892824769020081,0.0187806989997625,-0.38462769985199,-0.922880709171295,-0.182746574282646,-0.437427222728729,-0.880489110946655,0.128031775355339,-0.365453869104385,-0.921982288360596,0.00866800453513861,-0.348021060228348,-0.937446653842926,0.294976055622101,-0.263365358114243,-0.918492138385773,0.228893682360649,-0.28542548418045,-0.930666446685791,-0.182107046246529,-0.440874010324478,-0.878901124000549,0.0263674799352884,-0.411745727062225,-0.910917222499847,-0.168509855866432,-0.446053296327591,-0.878999948501587,-0.129734069108963,-0.41659289598465,-0.899788677692413,0.00878428854048252,-0.348444938659668,-0.937288105487823,0.228790029883385,-0.285058468580246,-0.930804371833801,0.0279614552855492,-0.417405307292938,-0.908290147781372,-0.176875129342079,-0.454495310783386,-0.873011708259583,-0.165801897644997,-0.457235455513,-0.873753666877747,-0.184864714741707,-0.436506539583206,-0.880504012107849,0.0209242217242718,-0.392319589853287,-0.919590950012207,
  925. -0.128557339310646,-0.419308841228485,-0.898695230484009,0.164858609437943,0.21395181119442,-0.962832391262054,-0.103736728429794,0.153048351407051,-0.982758820056915,-0.0135641535744071,0.178217172622681,-0.983897686004639,-0.00337228109128773,0.130480974912643,-0.991445064544678,-0.0949677303433418,0.117914222180843,-0.98847222328186,-0.279163002967834,0.0673250257968903,-0.957880675792694,-0.0183883830904961,0.200714811682701,-0.979477226734161,0.294036269187927,0.251841574907303,-0.922018706798553,0.160346940159798,0.23357954621315,-0.959025263786316,-0.258895188570023,0.106599971652031,-0.960005164146423,-0.0108265345916152,0.165422558784485,-0.986163377761841,-0.287041008472443,0.0995085537433624,-0.952735900878906,0.288962453603745,0.28261536359787,-0.914674401283264,-0.0240566562861204,0.2270677536726,-0.973581910133362,0.0800346657633781,0.236355021595955,-0.968365013599396,0.0759451761841774,0.25210377573967,-0.964715480804443,-0.0207968764007092,0.211923748254776,-0.977064907550812,-0.274958878755569,0.160352811217308,-0.947989761829376,0.0815499126911163,0.230481177568436,-0.96965366601944,0.354207426309586,0.281652957201004,-0.89174473285675,0.289946168661118,0.276809453964233,-0.916137397289276,-0.198405727744102,0.292400032281876,-0.935487806797028,0.0481710098683834,0.355190932750702,-0.933551788330078,-0.301055014133453,0.253767281770706,-0.919221460819244,0.340406209230423,0.354864716529846,-0.870743751525879,0.0629699379205704,0.301087647676468,-0.951515138149261,0.174964174628258,0.315893769264221,-0.932522773742676,0.00946204923093319,0.734690308570862,-0.678336679935455,-0.0605436861515045,0.698737978935242,-0.71281111240387,-0.351380527019501,0.595722675323486,-0.722250819206238,0.0684450343251228,0.384809464216232,0.920454740524292,0.289047032594681,0.408484607934952,0.865789890289307,0.0828556343913078,0.355779230594635,0.930889964103699,-0.291023790836334,0.284308850765228,0.913495302200317,0.0744255781173706,0.358241468667984,0.930657744407654,0.0677303299307823,0.400637954473495,0.913729608058929,
  926. 0.291242897510529,0.400221109390259,0.868907749652863,0.0717304572463036,0.370286375284195,0.926144003868103,0.252240985631943,0.394286096096039,0.883692800998688,0.0709441751241684,0.373778223991394,0.924801051616669,-0.288757920265198,0.279403388500214,0.91572517156601,-0.238350480794907,0.302646517753601,0.922818601131439,-0.0346373282372952,0.342365264892578,0.938928365707397,0.252536177635193,0.392860651016235,0.884243190288544,0.0720175132155418,0.369009137153625,0.926631391048431,-0.236569538712502,0.292276799678802,0.926611661911011,-0.038419384509325,0.35734823346138,0.933180689811707,0.0718970894813538,0.369545310735703,0.926427066326141,0.187423035502434,0.391627907752991,0.900833070278168,0.251207113265991,0.399247884750366,0.881757378578186,-0.0362671241164207,0.348828434944153,0.936484634876251,-0.0354204326868057,0.34547233581543,0.937760233879089,-0.238162085413933,0.301543176174164,0.923228323459625,-0.234039232134819,0.29710191488266,0.925719201564789,-0.162603795528412,0.276999682188034,0.947011828422546,0.186465501785278,0.395403236150742,0.899381399154663,-0.0372154787182808,0.352584600448608,0.935039639472961,-0.241801396012306,0.298174828290939,0.923376441001892,-0.0367158763110638,0.350606650114059,0.935802817344666,-0.233752191066742,0.295741587877274,0.926227211952209,-0.0373174585402012,0.352988600730896,0.934883117675781,-0.240392565727234,0.294759035110474,0.924839735031128,-0.181371614336967,0.321413159370422,0.9294074177742,-0.0469095632433891,-0.719254970550537,0.693160712718964,0.0797517150640488,-0.719944834709167,0.689433872699738,0.111216560006142,-0.731168866157532,0.673069834709167,-0.0495849102735519,-0.735740900039673,0.675445556640625,-0.108924686908722,-0.729313254356384,0.67545360326767,0.0800298005342484,-0.72287929058075,0.686324179172516,0.117915943264961,-0.70238584280014,0.701961517333984,0.0800479054450989,-0.723070502281189,0.686120510101318,0.267989695072174,-0.69290679693222,0.669374108314514,0.0800304114818573,-0.722885727882385,0.686317265033722,-0.108934663236141,-0.729216694831848,0.675556302070618,
  927. -0.0137246679514647,-0.718273520469666,0.695625483989716,0.268020629882813,-0.686027944087982,0.67641019821167,0.0797566026449203,-0.719996392726898,0.689379513263702,0.174465417861938,-0.715308248996735,0.676680088043213,0.169748991727829,-0.695970892906189,0.697717547416687,0.0793659538030624,-0.715877711772919,0.69370037317276,-0.0102108819410205,-0.729772329330444,0.683613955974579,-0.177997186779976,0.831901609897614,0.525601267814636,-0.0566049814224243,0.842938482761383,0.535023927688599,-0.0214282609522343,0.834028363227844,0.55130523443222,-0.179662048816681,0.822660744190216,0.539398550987244,-0.24362775683403,0.813210725784302,0.528520464897156,-0.0568550825119019,0.844751179218292,0.532130539417267,-0.0156434383243322,0.85504412651062,0.518319189548492,-0.0562710799276829,0.840510547161102,0.538865149021149,0.137487694621086,0.839259624481201,0.526061475276947,-0.0568267069756985,0.844545841217041,0.532459616661072,-0.243597209453583,0.812984347343445,0.528882682323456,-0.150153055787086,0.840921401977539,0.519908905029297,0.13750521838665,0.843729794025421,0.518856823444366,-0.0564662590622902,0.84193080663681,0.536622881889343,0.0373310744762421,0.839529752731323,0.542029678821564,0.031912736594677,0.855969548225403,0.51604038476944,-0.0570440776646137,0.846117556095123,0.529934942722321,-0.145159125328064,0.829112648963928,0.539908349514008,-0.15324330329895,0.550491154193878,0.820655941963196,-0.0223011486232281,0.55727744102478,0.830026805400848,0.0110523300245404,0.541257739067078,0.840784132480621,-0.155217200517654,0.529884696006775,0.833744585514069,-0.213986769318581,0.526025950908661,0.823107779026031,-0.0218742601573467,0.553346633911133,0.832663834095001,0.0165336653590202,0.575103342533112,0.81791365146637,-0.0219899248331785,0.554412364959717,0.831951558589935,0.161846220493317,0.557795107364655,0.81404584646225,-0.0218556690961123,0.553175270557404,0.83277815580368,-0.213983073830605,0.525994122028351,0.823129057884216,-0.127459764480591,0.554133474826813,0.822611749172211,0.161742255091667,0.563308954238892,0.810260772705078,
  928. -0.0220704227685928,0.555153787136078,0.831454873085022,0.0634896829724312,0.549391627311707,0.833149373531342,0.0597555115818977,0.565296053886414,0.822721004486084,-0.0216703042387962,0.551465690135956,0.833916068077087,-0.11990587413311,0.529080748558044,0.840057194232941,-0.099200427532196,-0.297622263431549,-0.949515819549561,0.0198768191039562,-0.28048387169838,-0.95965301990509,0.0546889491379261,-0.2570780813694,-0.964841961860657,-0.106967091560364,-0.267427563667297,-0.957622349262238,-0.169538974761963,-0.27778959274292,-0.945563077926636,0.0190861392766237,-0.269326150417328,-0.962859988212585,0.0603107772767544,-0.275033205747604,-0.959541201591492,0.0181925296783447,-0.256717205047607,-0.96631532907486,0.200650617480278,-0.235988765954971,-0.950814723968506,0.019236858934164,-0.271452903747559,-0.962259471416473,-0.169391706585884,-0.279954046010971,-0.944950878620148,-0.0807311907410622,-0.291705399751663,-0.953095197677612,0.201552465558052,-0.24203833937645,-0.949101686477661,0.0182285904884338,-0.257226288318634,-0.966179251670837,0.107256434857845,-0.238068729639053,-0.965307891368866,0.106343001127243,-0.269584059715271,-0.95708703994751,0.0189308263361454,-0.267134994268417,-0.963473260402679,-0.078329861164093,-0.261244803667068,-0.96208918094635,0.0502374544739723,0.319944620132446,0.946103394031525,-0.130392834544182,0.272168606519699,0.953374087810516,-0.0592322088778019,0.296832978725433,0.953090727329254,-0.138910099864006,0.296531021595001,0.944866836071014,0.0438470393419266,0.343466699123383,0.938140749931335,-0.143337249755859,0.294408291578293,0.944869518280029,-0.0620315670967102,0.304890304803848,0.95036518573761,0.261458694934845,0.392515122890472,0.8817999958992,0.0416827797889709,0.351357966661453,0.935312867164612,0.0376855358481407,0.365833908319473,0.929916858673096,-0.177169382572174,0.310079753398895,0.934056520462036,-0.149663954973221,0.322471439838409,0.934672594070435,0.261415541172028,0.392667174339294,0.881745219230652,0.144839227199554,0.364051967859268,0.920047700405121,
  929. 0.0415655076503754,0.351784497499466,0.935157716274261,-0.156632661819458,0.233209371566772,0.959728896617889,0.0587794966995716,0.287979304790497,0.955830991268158,0.152834743261337,0.340903550386429,0.927591681480408,0.13105221092701,0.402790367603302,0.905861735343933,0.250026911497116,0.431526273488998,0.866759240627289,0.290139675140381,0.438100159168243,0.85081559419632,0.152295723557472,0.342480361461639,0.927099347114563,-0.170959085226059,0.231518313288689,0.957691133022308,-0.160139426589012,0.246163621544838,0.955907344818115,0.331169486045837,0.449544727802277,0.829600095748901,0.131196781992912,0.402391523122787,0.906017899513245,0.290195822715759,0.437932997941971,0.850882530212402,-0.191636651754379,0.263177782297134,0.945522546768188,0.14632260799408,0.359796077013016,0.921486020088196,0.126190975308418,0.406894087791443,0.904717087745667,0.172593533992767,0.313591092824936,0.93374091386795,0.150023192167282,0.349102169275284,0.924997687339783,0.355660200119019,0.390000551939011,0.84935587644577,0.843757212162018,-0.0916664525866508,0.528839290142059,0.643265008926392,-0.216520845890045,0.734390139579773,0.546341121196747,-0.302958637475967,0.78085058927536,0.645052075386047,-0.231561094522476,0.728208303451538,0.214488372206688,-0.371089696884155,0.903486132621765,0.519220173358917,-0.224277153611183,0.824687898159027,0.859013378620148,-0.225915282964706,0.459410786628723,0.967684745788574,-0.0854945182800293,0.237227618694305,0.652763605117798,-0.336615532636642,0.678667545318604,0.148848757147789,-0.31742936372757,0.936526894569397,0.192219913005829,-0.299897968769073,0.934405028820038,0.63504034280777,-0.159670442342758,0.755797028541565,0.622937202453613,-0.0950081869959831,0.776481091976166,0.949939668178558,0.121098197996616,0.28801017999649,0.558412432670593,-0.342396229505539,0.75560599565506,0.648042142391205,-0.260731846094131,0.715583980083466,0.510307610034943,-0.2005964666605,0.836269795894623,0.167856842279434,-0.370943754911423,0.913359105587006,0.888426125049591,-0.0239942632615566,0.458392083644867,
  930. 0.551935374736786,-0.320806443691254,0.769708096981049,0.958059251308441,0.07273069024086,0.277187198400497,0.541713833808899,-0.288682281970978,0.789435684680939,0.177472114562988,-0.455204159021378,0.872520983219147,0.195744246244431,-0.450198292732239,0.871209323406219,0.589504420757294,-0.469753533601761,0.657127201557159,0.920041978359222,-0.160269767045975,0.35754206776619,0.685577034950256,-0.423126429319382,0.592408776283264,0.26799950003624,-0.609871625900269,0.745810210704803,0.588762283325195,-0.465911030769348,0.660519540309906,0.667931735515594,-0.369210183620453,0.646182000637054,-0.108728423714638,-0.566293895244598,0.817000210285187,0.00907800998538733,-0.576453626155853,0.817079424858093,0.043638177216053,-0.592855036258698,0.804126024246216,-0.112055562436581,-0.583622694015503,0.80425637960434,-0.178452864289284,-0.57124274969101,0.801146864891052,0.00910967402160168,-0.578464329242706,0.815656840801239,0.049332395195961,-0.570815563201904,0.819594979286194,0.0092887794598937,-0.589837491512299,0.80746853351593,0.196821793913841,-0.579626202583313,0.790755748748779,0.00909261126071215,-0.577380836009979,0.816424369812012,-0.178483918309212,-0.570001304149628,0.802023828029633,-0.0864078402519226,-0.563319265842438,0.821708619594574,0.197272822260857,-0.573861002922058,0.794837713241577,0.00927599705755711,-0.589025795459747,0.808061003684998,0.101753056049347,-0.596136152744293,0.796409428119659,0.0969559252262115,-0.565006017684937,0.819370329380035,0.00910374894738197,-0.578088045120239,0.815923631191254,-0.0820680260658264,-0.586178719997406,0.806014478206635,-0.159144997596741,-0.233092784881592,0.95934385061264,0.0133307659998536,-0.245572715997696,0.969286620616913,-0.206718623638153,-0.238137826323509,0.94897723197937,-0.157155483961105,-0.24919268488884,0.955617666244507,0.0177176222205162,-0.223408430814743,0.974563896656036,0.0132989743724465,-0.248245537281036,0.968605875968933,-0.206641167402267,-0.236469596624374,0.949411153793335,0.0133435288444161,-0.244495466351509,0.969558715820313,
  931. -0.0639352053403854,-0.26794844865799,0.961309492588043,0.0134019870311022,-0.239535063505173,0.970795214176178,0.0243249218910933,-0.258173614740372,0.9657923579216,0.160384878516197,-0.234213754534721,0.958864212036133,-0.0564612038433552,-0.231926709413528,0.9710932970047,0.0133106941357255,-0.247258141636848,0.968858242034912,0.111394785344601,-0.254837810993195,0.960546135902405,0.113679908216,-0.232854351401329,0.965844571590424,0.0133956242352724,-0.240074694156647,0.970661997795105,0.161061882972717,-0.241562649607658,0.956925570964813,-0.12041911482811,0.229265511035919,-0.965886414051056,0.0114316307008266,0.240633189678192,-0.970548808574677,0.0428232401609421,0.26094788312912,-0.964402616024017,-0.123092964291573,0.245574921369553,-0.961530566215515,-0.18130823969841,0.236860647797585,-0.954476058483124,0.0113978665322065,0.238185480237007,-0.971152901649475,0.0521558187901974,0.217824935913086,-0.974593281745911,0.0114195365458727,0.239759966731071,-0.970765054225922,0.197591379284859,0.236058384180069,-0.951438009738922,0.0113963298499584,0.238073900341988,-0.971180200576782,-0.181314334273338,0.236568197607994,-0.954547345638275,-0.093736544251442,0.223809808492661,-0.970114767551422,0.197875753045082,0.231070458889008,-0.952602565288544,0.0114227337762713,0.239992916584015,-0.970707416534424,0.102442070841789,0.249481722712517,-0.962945759296417,0.0995292589068413,0.224485650658607,-0.969381332397461,0.0113811371847987,0.236977800726891,-0.971448421478271,-0.0894630253314972,0.249658733606339,-0.96419233083725,-0.11660934984684,0.985262930393219,0.125136986374855,0.00993517972528934,0.990724802017212,0.13552063703537,0.0402987450361252,0.987022042274475,0.155446156859398,-0.117804735898972,0.984152793884277,0.132534429430962,-0.180526062846184,0.975731790065765,0.123926572501659,0.00975352991372347,0.992336630821228,0.12317830324173,0.0468419156968594,0.991117537021637,0.12446640431881,0.010111041367054,0.989002764225006,0.147551670670509,0.191015973687172,0.970731675624847,0.145578548312187,0.00976707506924868,0.992222249507904,0.124095179140568,
  932. -0.180512696504593,0.975620210170746,0.12482126802206,-0.0864580795168877,0.990299940109253,0.108770348131657,0.19121690094471,0.971190392971039,0.142215892672539,0.0101466365158558,0.988634347915649,0.14999732375145,0.0983229875564575,0.982133030891418,0.16046030819416,0.0951953083276749,0.986522078514099,0.133086800575256,0.0100689381361008,0.989429950714111,0.144662410020828,-0.0785627216100693,0.984508514404297,0.15675114095211,-0.114889532327652,0.367675453424454,-0.922829985618591,0.0132497567683458,0.378632456064224,-0.925452291965485,0.0474493056535721,0.398649513721466,-0.91587507724762,-0.118066221475601,0.38622373342514,-0.914817810058594,-0.181006520986557,0.375570774078369,-0.908946335315704,0.0132629908621311,0.379687428474426,-0.92501974105835,0.056382279843092,0.359593570232391,-0.931404054164886,0.0132653592154384,0.379882365465164,-0.924939692020416,0.196098729968071,0.373966753482819,-0.906473457813263,0.0132558755576611,0.379118531942368,-0.92525315284729,-0.181016817688942,0.374929279088974,-0.909208953380585,-0.0826309397816658,0.363190978765488,-0.928043365478516,0.196446999907494,0.368741989135742,-0.90853625535965,0.0132664637640119,0.379972040653229,-0.924902856349945,0.103129602968693,0.389457076787949,-0.915252685546875,0.0996452793478966,0.362998992204666,-0.926446318626404,0.0132233230397105,0.376524537801743,-0.926312386989594,-0.0785612687468529,0.386693179607391,-0.918856203556061,-0.114699840545654,0.366571843624115,-0.923292517662048,0.0132360626012087,0.377539604902267,-0.925898849964142,0.0477038286626339,0.397552222013474,-0.916338801383972,-0.117733508348465,0.384275108575821,-0.915680885314941,-0.181038051843643,0.373592108488083,-0.909755110740662,0.0132377948611975,0.37767568230629,-0.925843298435211,0.056022897362709,0.361186563968658,-0.930809140205383,0.0132850240916014,0.381454914808273,-0.924291968345642,0.195991575717926,0.375553816556931,-0.905840277671814,0.0132300369441509,0.377056449651718,-0.92609578371048,-0.181048706173897,0.372910439968109,-0.910032510757446,
  933. -0.0829789713025093,0.36115550994873,-0.92880642414093,0.196360349655151,0.370051443576813,-0.908022344112396,0.0132831847295165,0.38130909204483,-0.924352288246155,0.103298030793667,0.390744507312775,-0.914684772491455,0.0994833111763,0.361777096986771,-0.926941454410553,0.0132081797346473,0.375318080186844,-0.926802098751068,-0.0787739232182503,0.385478556156158,-0.919348120689392,-0.115244850516319,-0.794274628162384,0.596528708934784,0.0126838879659772,-0.805426895618439,0.592559397220612,0.0497713014483452,-0.817449748516083,0.573845565319061,-0.118196479976177,-0.804641246795654,0.581878244876862,-0.18228580057621,-0.792219758033752,0.582374393939972,0.0126682631671429,-0.804434716701508,0.593905985355377,0.0577928796410561,-0.794532179832459,0.60446560382843,0.0127227613702416,-0.807895302772522,0.589188694953918,0.189220741391182,-0.794081032276154,0.577607870101929,0.0126640563830733,-0.804167628288269,0.594267666339874,-0.182302892208099,-0.79175078868866,0.583006262779236,-0.0920479521155357,-0.79198431968689,0.603562951087952,0.189561292529106,-0.790472626686096,0.582425594329834,0.0127146998420358,-0.807383418083191,0.589890122413635,0.0930897891521454,-0.811770141124725,0.576509773731232,0.0893186405301094,-0.792729139328003,0.602994799613953,0.012636436149478,-0.802413702011108,0.596634387969971,-0.0879681557416916,-0.807405829429626,0.583401560783386,-0.109602525830269,0.379451215267181,-0.918696939945221,0.0133845182135701,0.389438301324844,-0.920955300331116,0.045021403580904,0.409072577953339,-0.911390542984009,-0.112288750708103,0.394868612289429,-0.911849796772003,-0.180880531668663,0.382994323968887,-0.905868411064148,0.0133571214973927,0.387231767177582,-0.921885669231415,0.0545679517090321,0.367616921663284,-0.928375124931335,0.0133691225200891,0.388202577829361,-0.921477198600769,0.198506072163582,0.381828278303146,-0.902664124965668,0.0133564434945583,0.387176752090454,-0.921908736228943,-0.180883690714836,0.382816344499588,-0.905943036079407,-0.0884904190897942,0.371585696935654,-0.924171805381775,
  934. 0.198798254132271,0.377040922641754,-0.904610097408295,0.0133704887703061,0.388313919305801,-0.921430289745331,0.0931403860449791,0.398535132408142,-0.912411451339722,0.0900991857051849,0.374331146478653,-0.922907650470734,0.0133398929610848,0.385850429534912,-0.922465026378632,-0.0839912220835686,0.396890938282013,-0.91401481628418,0.121883064508438,0.123847290873528,-0.984787464141846,0.12556554377079,0.0898941978812218,-0.988004207611084,0.333271712064743,0.173777163028717,-0.926677644252777,0.128497183322906,0.0999496057629585,-0.986660420894623,-0.235973596572876,0.0119528314098716,-0.971685945987701,0.106291905045509,0.140036940574646,-0.984424650669098,0.335985571146011,0.165020644664764,-0.927298188209534,0.296404957771301,0.152829885482788,-0.942755103111267,0.125884607434273,0.109430924057961,-0.985990822315216,-0.233413547277451,0.00679813465103507,-0.97235381603241,0.124147191643715,0.115705847740173,-0.985494613647461,-0.191079065203667,0.0275679565966129,-0.981187462806702,0.0191347002983093,0.0736407116055489,-0.997101247310638,0.126240372657776,0.10814306139946,-0.986087441444397,0.29679000377655,0.151296347379684,-0.942881405353546,0.0142857041209936,0.089899867773056,-0.99584835767746,-0.18850314617157,0.0152758685871959,-0.981953799724579,0.125153258442879,0.112075164914131,-0.985786914825439,0.017110263928771,0.0804335102438927,-0.996613204479218,0.295086979866028,0.15805421769619,-0.94230705499649,0.2307518273592,0.14180813729763,-0.962623536586761,-0.191186875104904,0.0280853565782309,-0.981151878833771,0.0180970393121243,0.0771235749125481,-0.996857285499573,-0.177174299955368,0.0235218498855829,-0.983898341655731,-0.113102152943611,0.00170154729858041,-0.993582010269165,0.015909580513835,0.0844590663909912,-0.996299922466278,0.229745894670486,0.145238175988197,-0.962352693080902,0.0164468493312597,0.0826583951711655,-0.996442317962646,-0.192950651049614,0.0222844257950783,-0.980955481529236,-0.176932394504547,0.022593492642045,-0.983963668346405,-0.191193908452988,0.0184435173869133,-0.981379091739655,
  935. 0.0157075896859169,0.0851362869143486,-0.996245503425598,-0.132984638214111,0.0457057394087315,-0.990063786506653,0.148708015680313,0.619766056537628,-0.77056872844696,-0.118412457406521,0.563949048519135,-0.817275941371918,-0.0268093571066856,0.591674029827118,-0.805731534957886,-0.0344771146774292,0.616782903671265,-0.786378026008606,-0.130964860320091,0.599080801010132,-0.789905309677124,-0.307034492492676,0.53392219543457,-0.7878178358078,-0.0384405218064785,0.629550337791443,-0.776008188724518,0.26748389005661,0.659562826156616,-0.702445209026337,0.137178987264633,0.655317068099976,-0.742793023586273,-0.281603515148163,0.525366187095642,-0.802925825119019,-0.0296080037951469,0.600900530815125,-0.798775255680084,-0.301612794399261,0.517994940280914,-0.80044424533844,0.261435747146606,0.683162569999695,-0.681865274906158,-0.0449353940784931,0.650157630443573,-0.758469462394714,0.0536164417862892,0.65829610824585,-0.750847220420837,0.0487987138330936,0.671007454395294,-0.739843010902405,-0.0409034974873066,0.637411177158356,-0.769437372684479,-0.299644827842712,0.567094147205353,-0.767213940620422,0.0553182139992714,0.65374743938446,-0.754688143730164,0.328992992639542,0.674242675304413,-0.661181092262268,0.262605428695679,0.678731799125671,-0.685829102993011,-0.226335853338242,0.681663811206818,-0.695777654647827,0.0179351549595594,0.746742069721222,-0.66487193107605,-0.328592985868454,0.635050058364868,-0.69909805059433,0.332912266254425,0.658931493759155,-0.674521088600159,0.063084565103054,0.632596135139465,-0.771908342838287,0.175364062190056,0.644050240516663,-0.744611799716949,-0.0656213834881783,0.983375906944275,-0.169309422373772,-0.124998860061169,0.968318223953247,-0.216183543205261,-0.415221154689789,0.866931438446045,-0.275720000267029,0.245071515440941,-0.964183628559113,-0.101440139114857,0.281435668468475,-0.953735530376434,-0.105747446417809,0.340920358896255,-0.934088528156281,-0.106075249612331,0.44308465719223,-0.889424741268158,-0.112247943878174,0.245827078819275,-0.964963614940643,-0.0917293950915337,
  936. 0.341531455516815,-0.934783816337585,-0.0976497456431389,0.28023174405098,-0.953638255596161,-0.109746240079403,0.244545981287956,-0.963602423667908,-0.108017727732658,0.22801361978054,-0.96884548664093,-0.0966863185167313,0.245748102664948,-0.964885294437408,-0.0927591472864151,0.437898427248001,-0.894175708293915,-0.09324561804533,0.204488977789879,-0.96485710144043,-0.165031000971794,0.265251934528351,-0.960651218891144,-0.0824057683348656,0.228590130805969,-0.968927025794983,-0.0944837927818298,0.245999589562416,-0.965131998062134,-0.0894677340984344,0.183357834815979,-0.979913055896759,-0.0784253925085068,0.265705794095993,-0.959421038627625,-0.0944018363952637,0.244007736444473,-0.962976634502411,-0.114614434540272,0.26291286945343,-0.955288827419281,-0.135278686881065,0.219235047698021,-0.967022955417633,-0.129624769091606,0.266480624675751,-0.956615805625916,-0.117789387702942,0.266034334897995,-0.958359897136688,-0.103789404034615,0.183328673243523,-0.979927659034729,-0.0783095881342888,0.221462041139603,-0.972769320011139,-0.0683701038360596,0.39956060051918,-0.909552872180939,-0.11430299282074,0.270533114671707,-0.957892417907715,-0.0961975678801537,0.266716748476028,-0.955508887767792,-0.125956207513809,0.390882968902588,-0.916884303092957,-0.0808327943086624,0.265659779310226,-0.959557294845581,-0.0931378826498985,0.23550745844841,-0.963621258735657,-0.126374676823616,0.266728132963181,-0.955451607704163,-0.126366078853607,0.400014966726303,-0.908645749092102,-0.119795426726341,0.400250673294067,-0.908703804016113,-0.118562377989292,-0.00344833475537598,-0.958980083465576,0.283452481031418,0.117424011230469,-0.952731847763062,0.280202925205231,0.15038113296032,-0.953726589679718,0.260367333889008,-0.00588265573605895,-0.965567052364349,0.260087847709656,-0.0709134936332703,-0.9620281457901,0.263577550649643,0.11775279045105,-0.953924834728241,0.275974005460739,0.156607642769814,-0.941214501857758,0.299315065145493,0.117749094963074,-0.953911483287811,0.276021748781204,0.303920567035675,-0.912243366241455,0.274671375751495,
  937. 0.117755606770515,-0.953935027122498,0.275937616825104,-0.0709192082285881,-0.962008595466614,0.263647377490997,0.0247856676578522,-0.957627415657043,0.286941528320313,0.303894013166428,-0.909225046634674,0.284531712532043,0.117407247424126,-0.952670693397522,0.280417650938034,0.207804873585701,-0.940005123615265,0.270568877458572,0.202780053019524,-0.932712256908417,0.298208177089691,0.116974666714668,-0.951084971427917,0.285927146673203,0.0286522377282381,-0.962299764156342,0.270477741956711,-0.201661005616188,0.488220483064651,0.849101662635803,-0.0809566825628281,0.498489946126938,0.863107025623322,-0.0446733832359314,0.485097318887711,0.873318314552307,-0.202589839696884,0.474275916814804,0.856749534606934,-0.263359755277634,0.467955678701401,0.843598902225494,-0.0813259407877922,0.50143176317215,0.861366510391235,-0.0400295369327068,0.519711852073669,0.853403329849243,-0.0804606974124908,0.494541198015213,0.865421891212463,0.117718674242496,0.507710635662079,0.853447258472443,-0.0812840461730957,0.501097977161407,0.861564695835114,-0.263329893350601,0.467726469039917,0.843735337257385,-0.173630878329277,0.498978674411774,0.849042177200317,0.117436990141869,0.51491242647171,0.849160730838776,-0.0807479545474052,0.49682742357254,0.864084661006927,0.0169656928628683,0.496216088533401,0.868033289909363,0.0103185437619686,0.522953629493713,0.852298676967621,-0.081600233912468,0.503617703914642,0.860064327716827,-0.168192625045776,0.480235666036606,0.860862910747528,-0.154695838689804,0.104093872010708,0.98246306180954,-0.0307294707745314,0.110894151031971,0.993357121944427,0.00888179894536734,0.093258835375309,0.995602309703827,-0.155609428882599,0.0800644531846046,0.984568655490875,-0.218434542417526,0.078920915722847,0.972655057907104,-0.0301355496048927,0.106432810425758,0.993863105773926,0.0127736516296864,0.134123399853706,0.990882337093353,-0.0302224848419428,0.107085205614567,0.9937903881073,0.152792021632195,0.126130774617195,0.980176329612732,-0.0301151517778635,0.106279656291008,0.993880152702332,-0.21843358874321,0.078914038836956,0.972655832767487,
  938. -0.130788385868073,0.108091726899147,0.985500276088715,0.152433097362518,0.133050516247749,0.97931694984436,-0.0303207449615002,0.107823088765144,0.993707716464996,0.056569017469883,0.106053911149502,0.992749989032745,0.0522919297218323,0.124175272881985,0.990881443023682,-0.0297962054610252,0.103884473443031,0.994142949581146,-0.122008286416531,0.0780966952443123,0.989451825618744,-0.113445162773132,0.18636491894722,-0.975908994674683,0.00920874532312155,0.211466699838638,-0.977341830730438,0.0370765514671803,0.234618857502937,-0.971380114555359,-0.116600587964058,0.197156175971031,-0.973413467407227,-0.18203017115593,0.179873496294022,-0.966700851917267,0.0100797284394503,0.20353989303112,-0.979014873504639,0.0503876991569996,0.196473494172096,-0.97921359539032,0.00884425453841686,0.21477784216404,-0.976622879505157,0.193910241127014,0.233723625540733,-0.9527707695961,0.010160862468183,0.202800527215004,-0.979167461395264,-0.181955441832542,0.179205343127251,-0.966839015483856,-0.0828058496117592,0.177099734544754,-0.980703353881836,0.194517552852631,0.230495274066925,-0.953433215618134,0.00857209321111441,0.217248156666756,-0.976078867912292,0.0958268493413925,0.238139778375626,-0.966491937637329,0.0960189178586006,0.205203413963318,-0.973998010158539,0.00967664457857609,0.207210555672646,-0.978248536586761,-0.0818050056695938,0.20760689675808,-0.974785804748535,0.0459835827350616,0.706242680549622,0.706474900245667,-0.126448407769203,0.669113457202911,0.732323706150055,-0.0574882887303829,0.690038800239563,0.721485733985901,-0.135011330246925,0.68718820810318,0.713823795318604,0.0397183336317539,0.72372841835022,0.68894100189209,-0.148506104946136,0.682621002197266,0.715523958206177,-0.0608354322612286,0.697329342365265,0.714164435863495,0.263569682836533,0.743791222572327,0.614252090454102,0.0371575355529785,0.730719149112701,0.681666254997253,0.0335145480930805,0.740509331226349,0.671209871768951,-0.177375376224518,0.693327724933624,0.698451578617096,-0.154831916093826,0.703512132167816,0.693612217903137,0.263553708791733,0.743832170963287,0.614209353923798,
  939. 0.141854345798492,0.735250771045685,0.662784814834595,0.037009634077549,0.73112016916275,0.681244194507599,-0.156828045845032,0.635469853878021,0.756031095981598,0.0546083375811577,0.681272864341736,0.729989886283875,0.150383174419403,0.716534554958344,0.681148409843445,0.128192976117134,0.763614475727081,0.632818698883057,0.252074241638184,0.771929800510406,0.583595037460327,0.294044077396393,0.770686984062195,0.565313816070557,0.149652302265167,0.718169808387756,0.6795853972435,-0.174386367201805,0.631259500980377,0.755712151527405,-0.160393625497818,0.645606637001038,0.746636509895325,0.326581418514252,0.771706640720367,0.545722901821136,0.128325670957565,0.763348281383514,0.633112907409668,0.294108361005783,0.770550668239594,0.565466165542603,-0.195084005594254,0.654213786125183,0.730716466903687,0.143829017877579,0.730987966060638,0.667060613632202,0.127119988203049,0.766218543052673,0.629880845546722,0.172409683465958,0.69678407907486,0.696252107620239,0.146878838539124,0.724321246147156,0.673636019229889,0.351110428571701,0.727089762687683,0.589967787265778,0.843861103057861,0.152557626366615,0.514416813850403,0.639777004718781,0.132357954978943,0.757077813148499,0.55032080411911,0.0769325271248817,0.831401467323303,0.64146888256073,0.117243230342865,0.758136987686157,0.21052411198616,0.0682807117700577,0.975201189517975,0.522783517837524,0.167774617671967,0.835792481899261,0.858784139156342,0.00287191406823695,0.512329757213593,0.967759847640991,0.0288164801895618,0.250220835208893,0.649535238742828,-0.00166964752133936,0.76032966375351,0.148218393325806,0.132509797811508,0.980036973953247,0.188083678483963,0.145859777927399,0.97126179933548,0.631309151649475,0.193848788738251,0.750913739204407,0.619487404823303,0.259008020162582,0.741046667098999,0.949919700622559,0.236444383859634,0.204320386052132,0.555898547172546,0.0351293347775936,0.830507516860962,0.644472479820251,0.0861571878194809,0.759757936000824,0.510906040668488,0.189515858888626,0.838486015796661,0.167206883430481,0.0733962655067444,0.983186066150665,
  940. 0.888262987136841,0.181769654154778,0.421839594841003,0.549933075904846,0.058873075991869,0.833131194114685,0.957997500896454,0.188730359077454,0.215920552611351,0.541597068309784,0.0899837538599968,0.835808277130127,0.176902800798416,-0.0199395250529051,0.984026312828064,0.194600060582161,-0.0162213407456875,0.980748534202576,0.587534487247467,-0.127326399087906,0.799118995666504,0.919945955276489,0.0165328104048967,0.39169642329216,0.685016572475433,-0.116492658853531,0.719153523445129,0.266880065202713,-0.215022876858711,0.939436078071594,0.587313771247864,-0.125809639692307,0.799521386623383,0.666624665260315,-0.0422171130776405,0.744197070598602,-0.111716218292713,-0.143056571483612,0.98338919878006,0.010186605155468,-0.152741715312004,0.988213658332825,0.0443729273974895,-0.173447474837303,0.983842968940735,-0.115175560116768,-0.164600029587746,0.97961300611496,-0.179969474673271,-0.155238777399063,0.9713454246521,0.0102192247286439,-0.154986321926117,0.987863779067993,0.0500688776373863,-0.146816670894623,0.987895727157593,0.0104256859049201,-0.169276222586632,0.985513508319855,0.19714267551899,-0.167413592338562,0.965974867343903,0.0101995747536421,-0.153632342815399,0.988075435161591,-0.18000029027462,-0.15374094247818,0.971578001976013,-0.0903708562254906,-0.139394834637642,0.986104667186737,0.197598442435265,-0.16040526330471,0.967070341110229,0.0104131419211626,-0.16840623319149,0.985662698745728,0.102628998458385,-0.179053395986557,0.978471875190735,0.0980874076485634,-0.141805708408356,0.985022842884064,0.0102161010727286,-0.154773607850075,0.987897157669067,-0.0859329402446747,-0.167159542441368,0.982177793979645,-0.116965778172016,0.966765403747559,-0.227340430021286,0.00422902684658766,0.975651979446411,-0.219283610582352,0.0431596003472805,0.979207992553711,-0.198214456439018,-0.120400331914425,0.970918893814087,-0.206930503249168,-0.182543203234673,0.960044145584106,-0.212116122245789,0.00423379894345999,0.975712835788727,-0.219012632966042,0.0516086556017399,0.970133721828461,-0.237017527222633,
  941. 0.00430670101195574,0.976639330387115,-0.214842081069946,0.197933167219162,0.957386434078217,-0.21031853556633,0.0042305807583034,0.975671529769897,-0.219196736812592,-0.182551860809326,0.95996367931366,-0.212472453713417,-0.0873150452971458,0.96881639957428,-0.231885507702827,0.1982491761446,0.956000804901123,-0.216240063309669,0.00429457752034068,0.97648686170578,-0.215534582734108,0.0981006920337677,0.973954916000366,-0.204421371221542,0.0953380092978477,0.968752801418304,-0.22897307574749,0.0042286841198802,0.975647747516632,-0.21930256485939,-0.0830581337213516,0.975019216537476,-0.206006899476051,-0.117477156221867,-0.224327459931374,-0.967406988143921,0.00428070919588208,-0.216331124305725,-0.976310670375824,0.0425054654479027,-0.19521027803421,-0.97983992099762,-0.120369851589203,-0.207113459706306,-0.970883667469025,-0.182547748088837,-0.21230274438858,-0.96000200510025,0.00423048064112663,-0.219202145934105,-0.975670397281647,0.0519549548625946,-0.238607957959175,-0.96972519159317,0.00427812105044723,-0.216476500034332,-0.976278483867645,0.198020651936531,-0.211945310235024,-0.957009434700012,0.00422679493203759,-0.219412848353386,-0.975622951984406,-0.182556986808777,-0.212684243917465,-0.959915816783905,-0.087348960340023,-0.232092574238777,-0.968763768672943,0.198270872235298,-0.216651514172554,-0.955903112888336,0.00428712926805019,-0.215960487723351,-0.976392686367035,0.0980542674660683,-0.204839676618576,-0.97387170791626,0.0952788814902306,-0.229491084814072,-0.968636035919189,0.00421954551711679,-0.219824180006981,-0.975530385971069,-0.083142414689064,-0.206517145037651,-0.974904119968414,-0.113717176020145,0.938646972179413,-0.325592219829559,0.0024324432015419,0.947631657123566,-0.319356441497803,0.0398810841143131,0.953051924705505,-0.30016952753067,-0.114801600575447,0.940787136554718,-0.318967312574387,-0.181869462132454,0.92879444360733,-0.322899907827377,0.0022083418443799,0.943452954292297,-0.33149915933609,0.0462076738476753,0.94312971830368,-0.329197824001312,0.00265459227375686,0.951626837253571,-0.307244747877121,
  942. 0.19451117515564,0.933604001998901,-0.300913542509079,0.00222300738096237,0.943730771541595,-0.330707252025604,-0.18185456097126,0.92904406785965,-0.322189420461655,-0.0856481045484543,0.935242474079132,-0.343490719795227,0.194721519947052,0.932491004467011,-0.30421057343483,0.00270207179710269,0.952461779117584,-0.304646134376526,0.0975276082754135,0.951135098934174,-0.292968302965164,0.0943593084812164,0.94283801317215,-0.319613575935364,0.00259559042751789,0.950579762458801,-0.310469955205917,-0.0775877460837364,0.951545834541321,-0.297557860612869,-0.11509121209383,-0.0808109864592552,-0.990062415599823,0.00670729437842965,-0.0727514401078224,-0.997327566146851,0.0433096773922443,-0.0510882064700127,-0.997754633426666,-0.117579877376556,-0.0643413960933685,-0.990976870059967,-0.182699829339981,-0.0708453878760338,-0.980612933635712,0.00666710501536727,-0.0752138942480087,-0.997145116329193,0.0516643226146698,-0.0899239182472229,-0.99460768699646,0.0067999167367816,-0.0670659691095352,-0.997725367546082,0.194662794470787,-0.0648866444826126,-0.978721678256989,0.00665660202503204,-0.0758569836616516,-0.997096598148346,-0.182712063193321,-0.0715237185359001,-0.980561494827271,-0.0865231901407242,-0.0897926837205887,-0.992195069789886,0.195091381669044,-0.0715143606066704,-0.978174448013306,0.00679445220157504,-0.0674005895853043,-0.997702836990356,0.104899555444717,-0.0562857948243618,-0.992888808250427,0.100945167243481,-0.0895568281412125,-0.990853011608124,0.00663081463426352,-0.0774312615394592,-0.996975660324097,-0.0824367627501488,-0.0644771009683609,-0.994508385658264,-0.151477694511414,0.985643863677979,-0.0745702460408211,0.0162323527038097,0.99767792224884,-0.0661462843418121,-0.210259526968002,0.975414931774139,-0.0660050958395004,-0.150170624256134,0.986635208129883,-0.0632434636354446,0.0148924877867103,0.995627701282501,-0.0922152251005173,0.0162417180836201,0.997585475444794,-0.0675235539674759,-0.21021381020546,0.975355505943298,-0.0670210346579552,0.0162343960255384,0.997657954692841,-0.0664462298154831,
  943. -0.0721135213971138,0.996485590934753,-0.0426157414913177,0.0162406768649817,0.997595429420471,-0.0673779547214508,0.0230986252427101,0.998574018478394,-0.048129003494978,0.160453841090202,0.984632194042206,-0.0689495578408241,-0.0647650063037872,0.994701504707336,-0.0798397734761238,0.0162116512656212,0.997873485088348,-0.0631327629089355,0.116965942084789,0.991742193698883,-0.0525965914130211,0.119042620062828,0.990227460861206,-0.0726529806852341,0.0162368025630713,0.997633576393127,-0.0668116882443428,0.160992205142975,0.984987378120422,-0.0623008646070957,-0.162490010261536,-0.877991080284119,-0.450253993272781,0.0102785164490342,-0.885215997695923,-0.465066939592361,-0.202160686254501,-0.868192315101624,-0.453181147575378,-0.160940483212471,-0.87217777967453,-0.461956828832626,0.0130812842398882,-0.897228181362152,-0.441373348236084,0.0102906534448266,-0.885611355304718,-0.464313298463821,-0.202083915472031,-0.868991792201996,-0.451680570840836,0.01029481459409,-0.885745882987976,-0.464056313037872,-0.0624487586319447,-0.872680425643921,-0.484281927347183,0.0103237889707088,-0.886688351631165,-0.462252289056778,0.021459249779582,-0.87669163942337,-0.480574131011963,0.160242602229118,-0.876043796539307,-0.454829216003418,-0.0546853803098202,-0.891577184200287,-0.449554949998856,0.0103055676445365,-0.886096715927124,-0.463386058807373,0.117151401937008,-0.875567376613617,-0.468676179647446,0.118903033435345,-0.883784949779511,-0.45253312587738,0.0103640602901578,-0.887991726398468,-0.45974263548851,0.160585731267929,-0.874114096164703,-0.458407014608383,-0.115605019032955,-0.0701223462820053,-0.990817010402679,0.00689708814024925,-0.0610899813473225,-0.998108446598053,0.0408666133880615,-0.0397766567766666,-0.998372554779053,-0.118500083684921,-0.0526214055716991,-0.991558730602264,-0.182489454746246,-0.0598252192139626,-0.981386125087738,0.00684947241097689,-0.0640235245227814,-0.997924983501434,0.0505577102303505,-0.0847661644220352,-0.995117485523224,0.00689093302935362,-0.0614664331078529,-0.998085379600525,
  944. 0.20142275094986,-0.0593038685619831,-0.977707505226135,0.00684636319056153,-0.0642151311039925,-0.997912585735321,-0.182495296001434,-0.0601172931492329,-0.981367111206055,-0.0923905000090599,-0.0772176459431648,-0.992724239826202,0.201721802353859,-0.0645109787583351,-0.97731614112854,0.00689899735152721,-0.0609684772789478,-0.998115837574005,0.0970908477902412,-0.049235288053751,-0.994056940078735,0.0939976647496223,-0.0757978409528732,-0.992682814598084,0.00683793285861611,-0.0647311061620712,-0.997879326343536,-0.0881054922938347,-0.0507139675319195,-0.994819343090057,0.127183154225349,0.466565012931824,-0.875295102596283,0.129579648375511,0.435961216688156,-0.890587985515594,0.343596518039703,0.48580014705658,-0.803703725337982,0.132809206843376,0.445213079452515,-0.885520756244659,-0.237505957484245,0.368444532155991,-0.898799061775208,0.11203321814537,0.482321947813034,-0.868800401687622,0.341541737318039,0.492729336023331,-0.800354301929474,0.298910945653915,0.488356500864029,-0.819853723049164,0.126379922032356,0.469567954540253,-0.87380439043045,-0.235537141561508,0.364595621824265,-0.90088415145874,0.128780394792557,0.460560142993927,-0.878236830234528,-0.186892256140709,0.388132274150848,-0.902454793453217,0.0183490552008152,0.4465312063694,-0.894579887390137,0.126401603221893,0.46948704123497,-0.873844683170319,0.298978894948959,0.488073945045471,-0.819997370243073,0.0186586063355207,0.445439785718918,-0.895117580890656,-0.185222133994102,0.379195392131805,-0.906589031219482,0.128900438547134,0.460107028484344,-0.878456711769104,0.0150366937741637,0.458161294460297,-0.888741850852966,0.296211987733841,0.499441891908646,-0.814135253429413,0.234358757734299,0.494479566812515,-0.836998164653778,-0.187346875667572,0.390575617551804,-0.901305615901947,0.0219081584364176,0.433931976556778,-0.900679230690002,-0.174526855349541,0.386521250009537,-0.905616760253906,-0.117880739271641,0.38565069437027,-0.915083408355713,0.0149393808096647,0.458501666784287,-0.888568103313446,0.23428001999855,0.494755536317825,-0.83685714006424,
  945. 0.0222624950110912,0.432671815156937,-0.901276588439941,-0.190188333392143,0.378489553928375,-0.905855417251587,-0.172922566533089,0.379948496818542,-0.908700704574585,-0.189535677433014,0.377045542001724,-0.906594097614288,0.0210427362471819,0.437005490064621,-0.899212777614594,-0.126633509993553,0.404983878135681,-0.905512034893036,-0.167425930500031,-0.864677309989929,0.473605245351791,0.102146819233894,-0.840155601501465,0.53263932466507,0.00991510134190321,-0.858042895793915,0.513482332229614,-0.000460945797385648,-0.830791831016541,0.556583106517792,0.093427374958992,-0.82147479057312,0.562539339065552,0.274246603250504,-0.766610860824585,0.580600202083588,0.0148266116157174,-0.870154738426209,0.492555499076843,-0.293877989053726,-0.859496355056763,0.418212831020355,-0.162819311022758,-0.875205516815186,0.45552733540535,0.257129073143005,-0.792893528938293,0.552453398704529,0.00681448820978403,-0.850135922431946,0.526519417762756,0.28215417265892,-0.783902943134308,0.553069114685059,-0.288761079311371,-0.874062716960907,0.39068067073822,0.0204726066440344,-0.883448898792267,0.468080013990402,-0.0808510705828667,-0.883218705654144,0.461939215660095,-0.0754235684871674,-0.893092811107636,0.443504810333252,0.0162499062716961,-0.873569548130035,0.486427992582321,0.273064583539963,-0.819235742092133,0.504270553588867,-0.0823997780680656,-0.880312502384186,0.467183262109756,-0.356012791395187,-0.855691432952881,0.375562369823456,-0.289766728878021,-0.871331036090851,0.396001905202866,0.19599062204361,-0.897148966789246,0.395867943763733,-0.0473525263369083,-0.936738610267639,0.346811950206757,0.299115717411041,-0.859340608119965,0.414805382490158,-0.342409729957581,-0.888227343559265,0.306280612945557,-0.0634971708059311,-0.913129270076752,0.402694761753082,-0.170511484146118,-0.90959769487381,0.3788902759552,-0.0053024236112833,-0.994640290737152,-0.103259772062302,0.0636738315224648,-0.996388852596283,-0.0561681091785431,0.349295169115067,-0.936610400676727,0.0274568814784288,0.0703743025660515,-0.439578086137772,0.895443201065063,
  946. 0.287940889596939,-0.381644606590271,0.878315091133118,0.0806570649147034,-0.465565264225006,0.881330490112305,-0.316322147846222,-0.449206650257111,0.835555911064148,0.0620989613234997,-0.405305325984955,0.912069797515869,0.0464302487671375,-0.367808729410172,0.928741633892059,0.294187039136887,-0.40455886721611,0.86590188741684,0.0770836472511292,-0.467197090387344,0.880786597728729,0.254398971796036,-0.419333904981613,0.87145870923996,0.0711962208151817,-0.442969679832459,0.893705189228058,-0.29340198636055,-0.501021981239319,0.814181983470917,-0.239242196083069,-0.490409970283508,0.838010251522064,-0.029409809038043,-0.498040676116943,0.866654813289642,0.255185604095459,-0.42297351360321,0.869467496871948,0.0779145210981369,-0.470606654882431,0.878896296024323,-0.235746249556541,-0.509981215000153,0.827250182628632,-0.0368979200720787,-0.470558136701584,0.88159716129303,0.0744674727320671,-0.456445813179016,0.886629462242126,0.176637351512909,-0.381468445062637,0.907348394393921,0.241529017686844,-0.361541718244553,0.900528371334076,-0.0462361797690392,-0.435400038957596,0.899048924446106,-0.0297584421932697,-0.496774852275848,0.86736923456192,-0.234811201691628,-0.515061438083649,0.824363648891449,-0.228286281228065,-0.520482540130615,0.822789967060089,-0.183854758739471,-0.494720101356506,0.849381804466248,0.176418751478195,-0.380672067403793,0.907725274562836,-0.0461462363600731,-0.43574333190918,0.89888721704483,-0.227475970983505,-0.526469647884369,0.819197416305542,-0.0282809846103191,-0.502128899097443,0.864330232143402,-0.225834026932716,-0.530766427516937,0.816875874996185,-0.0348879620432854,-0.477996647357941,0.877668499946594,-0.23510867357254,-0.508691906929016,0.828224897384644,-0.183095753192902,-0.496493935585022,0.848510265350342,-0.107846431434155,0.0730242729187012,-0.991482019424438,0.06336759775877,0.0956267043948174,-0.993398249149323,-0.159332737326622,0.0759299844503403,-0.98430061340332,-0.107605084776878,0.0790900960564613,-0.991042852401733,0.070606917142868,0.0621287934482098,-0.995567500591278,
  947. 0.0639611482620239,0.0886924713850021,-0.994003355503082,-0.159359991550446,0.0761702507734299,-0.984277665615082,0.0633000433444977,0.0964133739471436,-0.993326544761658,-0.0159769095480442,0.115749500691891,-0.993149936199188,0.0629637762904167,0.100321210920811,-0.992960929870605,0.0771102458238602,0.11983560025692,-0.989794671535492,0.207342743873596,0.107110351324081,-0.972386956214905,-0.00612456491217017,0.0806073918938637,-0.996727108955383,0.0629408210515976,0.1005874350667,-0.992935359477997,0.156610280275345,0.115782417356968,-0.980850577354431,0.159204542636871,0.101147651672363,-0.982050538063049,0.0628906711935997,0.101168908178806,-0.992879450321198,0.207401290535927,0.114424005150795,-0.971540987491608,-0.100693590939045,-0.983313918113709,0.151507526636124,0.0708317682147026,-0.985394299030304,0.154857724905014,-0.145478963851929,-0.979344069957733,0.140431731939316,-0.0989529937505722,-0.984921097755432,0.141911745071411,0.06900255382061,-0.981068193912506,0.180953249335289,0.0706872269511223,-0.985022187232971,0.157272413372993,-0.145526483654976,-0.978967607021332,0.1429842710495,0.0707238912582397,-0.985117018222809,0.156660854816437,-0.00657480163499713,-0.991967618465424,0.126322031021118,0.070545420050621,-0.984652519226074,0.159633159637451,0.0789864510297775,-0.986800074577332,0.141374632716179,0.208145931363106,-0.963659167289734,0.167440339922905,-0.00330177298747003,-0.988680303096771,0.150001153349876,0.0717923417687416,-0.987742960453033,0.138598993420601,0.172491490840912,-0.975947201251984,0.13331826031208,0.173745572566986,-0.970483362674713,0.167255774140358,0.0707494467496872,-0.985183238983154,0.156232863664627,0.209508210420609,-0.964937508106232,0.158119812607765,-0.152764320373535,-0.254420608282089,0.954951941967011,-0.0255908910185099,-0.257170855998993,0.966027021408081,0.0107875168323517,-0.275512337684631,0.961237013339996,-0.154682189226151,-0.27766552567482,0.948143064975739,-0.210327550768852,-0.272119164466858,0.938996016979218,-0.0251575540751219,-0.261878162622452,0.964772999286652,
  948. 0.0163142122328281,-0.235891371965408,0.97164249420166,-0.025304151698947,-0.26028773188591,0.96519947052002,0.15908308327198,-0.244586750864983,0.956488311290741,-0.0251362975686789,-0.262108713388443,0.96471095085144,-0.210332587361336,-0.272070497274399,0.939008951187134,-0.121348924934864,-0.252564758062363,0.959940373897552,0.158972829580307,-0.238189950585365,0.958119630813599,-0.0253926906734705,-0.259326279163361,0.965456008911133,0.0610623434185982,-0.264369755983353,0.962486386299133,0.0575773604214191,-0.24689045548439,0.96733146905899,-0.0249741822481155,-0.263866752386093,0.964235782623291,-0.11415658146143,-0.281367391347885,0.952785730361938,-0.10265076905489,0.535070657730103,-0.838547706604004,0.0197093561291695,0.553896367549896,-0.83235228061676,0.0479784607887268,0.572900474071503,-0.818219482898712,-0.108529657125473,0.554529905319214,-0.825056314468384,-0.174146354198456,0.537964880466461,-0.824783027172089,0.0194004848599434,0.557573854923248,-0.829900622367859,0.059923455119133,0.539931774139404,-0.83957302570343,0.0194210018962622,0.557330071926117,-0.830063998699188,0.204391494393349,0.559663951396942,-0.803119301795959,0.0194494966417551,0.556991338729858,-0.830290555953979,-0.174092620611191,0.537268936634064,-0.825247764587402,-0.0739681199193001,0.536411106586456,-0.840709149837494,0.20566813647747,0.552412867546082,-0.807799875736237,0.0196098908782005,0.555082261562347,-0.831564247608185,0.107856065034866,0.567681431770325,-0.816152513027191,0.106848664581776,0.541787505149841,-0.833696365356445,0.0201456602662802,0.548675179481506,-0.83579283952713,-0.0726274773478508,0.551287889480591,-0.831147968769073
  949. }
  950. TangentsW: *3783 {
  951. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  952. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  953. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  954. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  955. }
  956. }
  957. LayerElementColor: 0 {
  958. Version: 101
  959. Name: "colorSet0"
  960. MappingInformationType: "ByPolygonVertex"
  961. ReferenceInformationType: "IndexToDirect"
  962. Colors: *15132 {
  963. a: 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,
  964. 0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
  965. 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,
  966. 0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,
  967. 0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,
  968. 0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,
  969. 0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,
  970. 1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,
  971. 0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,
  972. 0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,
  973. 0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,
  974. 0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,
  975. 0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,
  976. 0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,
  977. 1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,
  978. 0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,
  979. 0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,
  980. 0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,0.223529428243637,0,0,1,0.48235297203064,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.48235297203064,0,0,1,1,0,0,1,1,0,0,1,0.0901960805058479,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.0901960805058479,0,0,1,0.823529481887817,0,0,1,0.517647087574005,0,0,1,0,0,0,1,0.517647087574005,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,0.823529481887817,0,0,1,1,0,0,1,0.607843160629272,0,0,1,0.517647087574005,0,0,1,1,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,
  981. 0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
  982. 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,
  983. 0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,
  984. 0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,
  985. 0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,
  986. 0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,
  987. 0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0.223529428243637,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.0156862754374743,0,0,1,0,0,0,1,0.588235318660736,0,0,1,0.282352954149246,0,0,1,0.529411792755127,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.529411792755127,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.588235318660736,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.529411792755127,0,0,1,0.650980412960052,0,0,1,1,0,0,1,0.996078491210938,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,0.996078491210938,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,
  988. 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,1,0,0,1,1,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.650980412960052,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.223529428243637,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.30588236451149,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.403921604156494,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0,0,0,1,0.0980392247438431,0,0,1,0.0156862754374743,0,0,1,0.282352954149246,0,0,1,0.282352954149246,0,0,1,0.0156862754374743,0,0,1,0.0745098069310188,0,0,1,0.282352954149246,0,0,1,0.650980412960052,0,0,1,0.0980392247438431,0,0,1,0.584313750267029,0,0,1,0.282352954149246,0,0,1,0.0745098069310188,0,0,1,0.650980412960052,0,0,1,0.282352954149246,0,0,1,0.674509823322296,0,0,1,0.674509823322296,0,0,1,0.282352954149246,0,0,1,0.584313750267029,0,0,1,0.674509823322296,
  989. 0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.952941238880157,0,0,1,0.674509823322296,0,0,1,0.584313750267029,0,0,1,1,0,0,1,0.674509823322296,0,0,1,0.996078491210938,0,0,1,0.996078491210938,0,0,1,0.674509823322296,0,0,1,0.952941238880157,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.972549080848694,0,0,1,0.650980412960052,0,0,1,1,0,0,1,1,0,0,1,0.650980412960052,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.972549080848694,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.513725519180298,0,0,1,0.650980412960052,0,0,1,0.603921592235565,0,0,1,0.30588236451149,0,0,1,0.650980412960052,0,0,1,0.223529428243637,0,0,1,0.513725519180298,0,0,1,0.30588236451149,0,0,1,0.30588236451149,0,0,1,0.603921592235565,0,0,1,0.403921604156494,0,0,1,0,0,0,1,0.223529428243637,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0.30588236451149,0,0,1,0.403921604156494,0,0,1,0.30588236451149,0,0,1,0.0705882385373116,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1
  990. }
  991. ColorIndex: *3783 {
  992. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,
  993. 534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,
  994. 1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,
  995. 1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,
  996. 1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,
  997. 2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,
  998. 2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,
  999. 3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,
  1000. 3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782
  1001. }
  1002. }
  1003. LayerElementUV: 0 {
  1004. Version: 101
  1005. Name: "UVmap_0"
  1006. MappingInformationType: "ByPolygonVertex"
  1007. ReferenceInformationType: "IndexToDirect"
  1008. UV: *6806 {
  1009. a: 0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.362060546875,1.55029296875,0.62646484375,1.556640625,0.56201171875,1.61083984375,0.703125,1.822265625,0.439453125,1.587890625,0.323486328125,1.6220703125,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.63330078125,2.0791015625,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.38232421875,2.25,0.31298828125,2.3203125,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.2496337890625,2.15625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.450439453125,3.40625,0.71826171875,3.302734375,0.25390625,3.091796875,0.27197265625,2.7548828125,0.6533203125,3.1953125,0.8359375,2.990234375,0.52099609375,3.05859375,0.76806640625,2.974609375,0.71630859375,2.744140625,0.3603515625,2.7890625,0.61376953125,2.78125,0.343505859375,2.5009765625,0.2861328125,2.4365234375,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.349609375,2.19140625,0.51123046875,2.330078125,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.22119140625,0.658203125,0.07513427734375,0.50732421875,0.1429443359375,0.4970703125,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.349853515625,0.2568359375,0.3505859375,0.431640625,
  1010. 0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.445068359375,0.28173828125,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.29931640625,0.02734375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.36669921875,0.8900146484375,0.63037109375,0.8282470703125,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.459228515625,0.602294921875,0.62109375,0.614990234375,0.55224609375,0.5693359375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.1416015625,0.01220703125,0.0168914794921875,0.2177734375,0.07000732421875,0.7755126953125,0.155029296875,0.17236328125,0.067626953125,0.1376953125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.0112228393554688,0.8890380859375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.3681640625,0.8900146484375,0.6318359375,0.8282470703125,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.46044921875,0.602294921875,0.62255859375,0.614990234375,0.55322265625,0.5693359375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.2437744140625,0.517333984375,0.36181640625,0.77685546875,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.25146484375,0.95538330078125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.43359375,0.3388671875,1.0009765625,0.39404296875,0.638671875,0.0107421875,0.96630859375,0.00244140625,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.3271484375,
  1011. 0.41162109375,0.4462890625,0.28173828125,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.300537109375,0.02734375,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.252685546875,0.95538330078125,0.2841796875,0.976959228515625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,
  1012. 1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,
  1013. 1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,
  1014. 2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,
  1015. 1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,
  1016. 0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,
  1017. 0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,
  1018. 0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,
  1019. 0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,
  1020. 0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,
  1021. 0.27587890625,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.349853515625,0.2568359375,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.1357421875,
  1022. 0.624755859375,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,
  1023. 0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,
  1024. 0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,
  1025. 0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,
  1026. 0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,
  1027. 0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,
  1028. 0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,
  1029. 0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,
  1030. 0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,
  1031. 0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,
  1032. 0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,
  1033. 0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,
  1034. 0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,
  1035. 0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.428466796875,0.71337890625,0.525390625,
  1036. 0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.428466796875,
  1037. 0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.428466796875,0.71337890625,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.428466796875,0.71337890625,0.459228515625,0.602294921875,0.525390625,0.65869140625,0.5986328125,0.71337890625,0.525390625,0.65869140625,0.62109375,0.614990234375,0.525390625,0.65869140625,0.459228515625,0.602294921875,0.55224609375,0.5693359375,0.525390625,0.65869140625,0.55224609375,0.5693359375,0.62109375,0.614990234375,0.45263671875,0.995662689208984,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.45263671875,0.995662689208984,0.36669921875,0.8900146484375,0.495849609375,0.8795166015625,0.623046875,0.95709228515625,0.495849609375,0.8795166015625,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.36669921875,0.8900146484375,0.448486328125,0.73486328125,0.63037109375,0.8282470703125,0.495849609375,0.8795166015625,0.448486328125,0.73486328125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,
  1038. 0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,0.4296875,0.71337890625,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.4296875,0.71337890625,0.46044921875,0.602294921875,0.5263671875,0.65869140625,0.60009765625,0.71337890625,0.5263671875,0.65869140625,0.62255859375,0.614990234375,0.5263671875,0.65869140625,0.46044921875,0.602294921875,0.55322265625,0.5693359375,0.5263671875,0.65869140625,0.55322265625,0.5693359375,0.62255859375,0.614990234375,
  1039. 0.453857421875,0.995662689208984,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.453857421875,0.995662689208984,0.3681640625,0.8900146484375,0.4970703125,0.8795166015625,0.62451171875,0.95709228515625,0.4970703125,0.8795166015625,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.3681640625,0.8900146484375,0.44970703125,0.73486328125,0.6318359375,0.8282470703125,0.4970703125,0.8795166015625,0.44970703125,0.73486328125,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,
  1040. 0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,
  1041. 0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,
  1042. 0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.39306640625,0.27587890625,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.4365234375,0.0947265625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.36962890625,0.13232421875,
  1043. 0.300537109375,0.02734375,0.3056640625,0.16796875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.378173828125,0.0009765625,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.332763671875,0.62939453125,0.297607421875,0.4951171875,0.2449951171875,0.517333984375,0.332763671875,0.62939453125,0.357177734375,0.805908203125,0.410888671875,0.5390625,0.2493896484375,0.7708740234375,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.332763671875,0.62939453125,0.299560546875,0.821533203125,0.299560546875,0.821533203125,0.332763671875,0.62939453125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.357177734375,0.805908203125,0.252685546875,0.95538330078125,0.299560546875,0.821533203125,0.2493896484375,0.7708740234375,0.31787109375,1,0.299560546875,0.821533203125,0.2841796875,0.976959228515625,0.2841796875,0.976959228515625,0.299560546875,0.821533203125,0.252685546875,0.95538330078125,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,
  1044. 0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,
  1045. 0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.33154296875,0.62939453125,0.2437744140625,0.517333984375,0.29638671875,0.4951171875,0.40966796875,0.5390625,0.36181640625,0.77685546875,0.33154296875,0.62939453125,0.2476806640625,0.743408203125,0.2437744140625,0.517333984375,0.33154296875,0.62939453125,0.33154296875,0.62939453125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.33154296875,0.62939453125,0.306396484375,0.8087158203125,0.2476806640625,0.743408203125,0.316650390625,1,0.306396484375,0.8087158203125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.25146484375,0.95538330078125,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.282958984375,0.976959228515625,0.25146484375,0.95538330078125,0.306396484375,0.8087158203125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,
  1046. 0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,
  1047. 1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.39306640625,0.27587890625,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.4365234375,0.0947265625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.3056640625,0.16796875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.378173828125,0.0009765625,0.410888671875,0.5390625,0.297607421875,0.4951171875,
  1048. 0.332763671875,0.62939453125,0.332763671875,0.62939453125,0.297607421875,0.4951171875,0.2449951171875,0.517333984375,0.332763671875,0.62939453125,0.357177734375,0.805908203125,0.410888671875,0.5390625,0.2493896484375,0.7708740234375,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.332763671875,0.62939453125,0.299560546875,0.821533203125,0.299560546875,0.821533203125,0.332763671875,0.62939453125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.357177734375,0.805908203125,0.252685546875,0.95538330078125,0.299560546875,0.821533203125,0.2493896484375,0.7708740234375,0.31787109375,1,0.299560546875,0.821533203125,0.2841796875,0.976959228515625,0.2841796875,0.976959228515625,0.299560546875,0.821533203125,0.252685546875,0.95538330078125,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,
  1049. 0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.3681640625,0.13232421875,0.29931640625,0.02734375,0.376953125,0.0009765625,0.29931640625,0.02734375,0.3681640625,0.13232421875,0.304443359375,0.16796875,0.376953125,0.0009765625,0.435302734375,0.0947265625,0.3681640625,0.13232421875,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.304443359375,0.16796875,0.435302734375,0.0947265625,0.391845703125,0.27587890625,0.3681640625,0.13232421875,0.349853515625,0.2568359375,0.3681640625,0.13232421875,0.391845703125,0.27587890625,0.391845703125,0.27587890625,
  1050. 0.435302734375,0.0947265625,0.445068359375,0.28173828125,0.391845703125,0.27587890625,0.325927734375,0.41162109375,0.349853515625,0.2568359375,0.381103515625,0.43896484375,0.391845703125,0.27587890625,0.445068359375,0.28173828125,0.325927734375,0.41162109375,0.391845703125,0.27587890625,0.3505859375,0.431640625,0.3505859375,0.431640625,0.391845703125,0.27587890625,0.381103515625,0.43896484375,0.40966796875,0.5390625,0.33154296875,0.62939453125,0.29638671875,0.4951171875,0.33154296875,0.62939453125,0.2437744140625,0.517333984375,0.29638671875,0.4951171875,0.40966796875,0.5390625,0.36181640625,0.77685546875,0.33154296875,0.62939453125,0.2476806640625,0.743408203125,0.2437744140625,0.517333984375,0.33154296875,0.62939453125,0.33154296875,0.62939453125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.33154296875,0.62939453125,0.306396484375,0.8087158203125,0.2476806640625,0.743408203125,0.316650390625,1,0.306396484375,0.8087158203125,0.36181640625,0.77685546875,0.306396484375,0.8087158203125,0.25146484375,0.95538330078125,0.2476806640625,0.743408203125,0.306396484375,0.8087158203125,0.316650390625,1,0.282958984375,0.976959228515625,0.25146484375,0.95538330078125,0.306396484375,0.8087158203125,0.282958984375,0.976959228515625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,
  1051. 0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,
  1052. 0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.39306640625,0.27587890625,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.4365234375,0.0947265625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.36962890625,0.13232421875,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.3056640625,0.16796875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.378173828125,0.0009765625,0.410888671875,0.5390625,0.297607421875,0.4951171875,0.332763671875,0.62939453125,0.332763671875,0.62939453125,0.297607421875,0.4951171875,0.2449951171875,0.517333984375,0.332763671875,0.62939453125,0.357177734375,0.805908203125,
  1053. 0.410888671875,0.5390625,0.2493896484375,0.7708740234375,0.332763671875,0.62939453125,0.2449951171875,0.517333984375,0.357177734375,0.805908203125,0.332763671875,0.62939453125,0.299560546875,0.821533203125,0.299560546875,0.821533203125,0.332763671875,0.62939453125,0.2493896484375,0.7708740234375,0.299560546875,0.821533203125,0.31787109375,1,0.357177734375,0.805908203125,0.252685546875,0.95538330078125,0.299560546875,0.821533203125,0.2493896484375,0.7708740234375,0.31787109375,1,0.299560546875,0.821533203125,0.2841796875,0.976959228515625,0.2841796875,0.976959228515625,0.299560546875,0.821533203125,0.252685546875,0.95538330078125,0.39306640625,0.27587890625,0.38232421875,0.43896484375,0.351806640625,0.431640625,0.3271484375,0.41162109375,0.39306640625,0.27587890625,0.351806640625,0.431640625,0.38232421875,0.43896484375,0.39306640625,0.27587890625,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.3271484375,0.41162109375,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.4462890625,0.28173828125,0.39306640625,0.27587890625,0.351318359375,0.2568359375,0.36962890625,0.13232421875,0.39306640625,0.27587890625,0.4365234375,0.0947265625,0.4462890625,0.28173828125,0.36962890625,0.13232421875,0.36962890625,0.13232421875,0.351318359375,0.2568359375,0.3056640625,0.16796875,0.378173828125,0.0009765625,0.4365234375,0.0947265625,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.36962890625,0.13232421875,0.3056640625,0.16796875,0.36962890625,0.13232421875,0.300537109375,0.02734375,0.378173828125,0.0009765625,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,
  1054. 0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875
  1055. }
  1056. UVIndex: *3783 {
  1057. a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,28,29,30,31,28,30,29,28,32,33,29,32,28,31,34,35,34,31,32,36,33,37,33,36,32,28,38,36,32,38,28,34,38,37,36,39,39,36,38,40,37,39,38,34,41,34,35,41,42,39,38,40,39,42,43,41,35,35,44,43,45,38,41,41,43,45,45,42,38,44,46,43,43,46,45,47,46,44,48,46,47,49,40,42,49,42,45,40,49,
  1058. 50,46,51,45,51,49,45,46,48,51,51,50,49,50,51,48,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,52,53,54,55,52,54,55,56,57,54,58,55,56,55,58,56,58,59,54,60,58,59,58,61,58,60,61,61,60,62,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,63,64,65,66,63,65,67,63,66,66,65,68,67,66,69,69,66,68,70,71,826,70,827,72,73,70,72,828,829,72,73,72,830,72,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,74,75,76,77,75,74,75,77,78,77,79,78,77,80,79,74,81,77,80,77,81,81,74,82,83,80,81,84,81,82,81,84,83,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,
  1059. 958,959,960,961,962,963,964,965,966,967,968,969,970,85,86,87,85,88,86,87,86,89,86,88,90,89,86,90,91,92,93,91,94,92,93,92,95,92,94,96,92,96,95,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,97,98,99,100,98,97,101,97,99,97,102,100,101,102,97,103,100,102,104,102,101,103,102,104,986,987,988,989,990,991,992,993,994,995,996,105,997,105,998,999,1000,105,1001,1002,105,105,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,106,1080,1081,1082,1083,1084,1085,1086,106,1087,1088,1089,107,106,1090,1091,1092,1093,107,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,108,109,110,108,110,111,109,112,110,110,113,111,110,112,113,111,113,114,112,115,113,113,115,114,116,117,118,116,119,117,118,117,120,117,119,121,120,117,121,122,123,124,122,125,123,124,123,126,123,125,127,123,127,126,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,
  1060. 1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,
  1061. 1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,
  1062. 2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,128,129,130,129,131,130,128,132,129,133,131,129,129,132,134,129,134,133,135,134,132,134,136,133,134,135,137,136,134,137,138,139,140,138,141,139,140,139,142,139,141,143,142,139,144,144,139,143,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,145,146,147,145,148,146,147,149,145,148,145,150,151,145,149,151,150,145,151,149,152,150,151,153,154,151,152,151,155,153,155,151,154,156,157,158,158,157,159,158,160,156,161,158,159,160,158,162,162,158,161,162,163,160,164,162,161,163,162,165,165,162,164,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,
  1063. 2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,
  1064. 2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,
  1065. 3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402
  1066. }
  1067. }
  1068. LayerElementUV: 1 {
  1069. Version: 101
  1070. Name: "LightMapUV"
  1071. MappingInformationType: "ByPolygonVertex"
  1072. ReferenceInformationType: "IndexToDirect"
  1073. UV: *2572 {
  1074. a: 0.489013671875,0.856689453125,0.492919921875,0.8753662109375,0.474609375,0.88250732421875,0.5009765625,0.8685302734375,0.477294921875,0.8912353515625,0.509765625,0.89202880859375,0.501953125,0.89862060546875,0.51904296875,0.924560546875,0.48681640625,0.89581298828125,0.47265625,0.9000244140625,0.460693359375,0.8941650390625,0.47412109375,0.91656494140625,0.482421875,0.92156982421875,0.476318359375,0.945892333984375,0.49560546875,0.92742919921875,0.50732421875,0.926025390625,0.4970703125,0.963531494140625,0.5107421875,0.95599365234375,0.521484375,0.958404541015625,0.501953125,0.975967407226563,0.51123046875,0.984222412109375,0.488525390625,0.990196228027344,0.489013671875,0.97979736328125,0.479736328125,0.9769287109375,0.471435546875,0.98553466796875,0.47998046875,0.95263671875,0.47265625,0.96844482421875,0.463623046875,0.9654541015625,0.5869140625,0.856689453125,0.5908203125,0.8753662109375,0.572265625,0.88250732421875,0.59912109375,0.8685302734375,0.5751953125,0.8912353515625,0.60791015625,0.89202880859375,0.599609375,0.89862060546875,0.6171875,0.924560546875,0.5849609375,0.89581298828125,0.5703125,0.9000244140625,0.55859375,0.8941650390625,0.57177734375,0.91656494140625,0.580078125,0.92156982421875,0.57421875,0.945892333984375,0.59375,0.92742919921875,0.60546875,0.926025390625,0.5947265625,0.963531494140625,0.6083984375,0.95599365234375,0.61962890625,0.958404541015625,0.60009765625,0.975967407226563,0.609375,0.984222412109375,0.58642578125,0.990196228027344,0.5869140625,0.97979736328125,0.57763671875,0.9769287109375,0.5693359375,0.98553466796875,0.578125,0.95263671875,0.57080078125,0.96844482421875,0.5615234375,0.9654541015625,0.68505859375,0.856689453125,0.68896484375,0.8753662109375,0.67041015625,0.88250732421875,0.697265625,0.8685302734375,0.67333984375,0.8912353515625,0.70556640625,0.89202880859375,0.69775390625,0.89862060546875,0.71533203125,0.924560546875,0.6826171875,0.89581298828125,0.66845703125,0.9000244140625,0.65673828125,0.8941650390625,0.669921875,0.91656494140625,0.67822265625,
  1075. 0.92156982421875,0.67236328125,0.945892333984375,0.69140625,0.92742919921875,0.70361328125,0.926025390625,0.69287109375,0.963531494140625,0.70654296875,0.95599365234375,0.7177734375,0.958404541015625,0.6982421875,0.975967407226563,0.70751953125,0.984222412109375,0.6845703125,0.990196228027344,0.68505859375,0.97979736328125,0.67578125,0.9769287109375,0.66748046875,0.98553466796875,0.67578125,0.95263671875,0.66845703125,0.96844482421875,0.65966796875,0.9654541015625,0.390869140625,0.856689453125,0.394775390625,0.8753662109375,0.37646484375,0.88250732421875,0.403076171875,0.8685302734375,0.37939453125,0.8912353515625,0.411865234375,0.89202880859375,0.40380859375,0.89862060546875,0.421142578125,0.924560546875,0.388916015625,0.89581298828125,0.37451171875,0.9000244140625,0.362548828125,0.8941650390625,0.3759765625,0.91656494140625,0.38427734375,0.92156982421875,0.37841796875,0.945892333984375,0.397705078125,0.92742919921875,0.40966796875,0.926025390625,0.39892578125,0.963531494140625,0.41259765625,0.95599365234375,0.423828125,0.958404541015625,0.404052734375,0.975967407226563,0.413330078125,0.984222412109375,0.390625,0.990196228027344,0.390869140625,0.97979736328125,0.3818359375,0.9769287109375,0.373291015625,0.98553466796875,0.382080078125,0.95263671875,0.374755859375,0.96844482421875,0.365478515625,0.9654541015625,0.1485595703125,0.967376708984375,0.1666259765625,0.990196228027344,0.1356201171875,0.987937927246094,0.12744140625,0.94403076171875,0.1678466796875,0.98016357421875,0.2020263671875,0.96685791015625,0.1427001953125,0.93975830078125,0.14501953125,0.896484375,0.1937255859375,0.95306396484375,0.217041015625,0.9267578125,0.1768798828125,0.935546875,0.2083740234375,0.92474365234375,0.2017822265625,0.8951416015625,0.1563720703125,0.90087890625,0.188720703125,0.89990234375,0.1541748046875,0.8638916015625,0.1468505859375,0.8555908203125,0.1756591796875,0.88116455078125,0.1595458984375,0.851318359375,0.155029296875,0.8240966796875,0.1756591796875,0.8419189453125,0.1873779296875,0.8701171875,0.2073974609375,0.860107421875,
  1076. 0.1766357421875,0.856201171875,0.0309600830078125,0.967376708984375,0.049041748046875,0.990196228027344,0.0180206298828125,0.987937927246094,0.00980377197265625,0.94403076171875,0.050262451171875,0.98016357421875,0.08447265625,0.96685791015625,0.0251617431640625,0.93975830078125,0.0274658203125,0.896484375,0.076171875,0.95306396484375,0.0994873046875,0.9267578125,0.05926513671875,0.935546875,0.0908203125,0.92474365234375,0.08416748046875,0.8951416015625,0.03875732421875,0.90087890625,0.07110595703125,0.89990234375,0.036590576171875,0.8638916015625,0.029266357421875,0.8555908203125,0.058013916015625,0.88116455078125,0.0419921875,0.851318359375,0.037384033203125,0.8240966796875,0.058013916015625,0.8419189453125,0.0697021484375,0.8701171875,0.0897216796875,0.860107421875,0.05908203125,0.856201171875,0.26611328125,0.967376708984375,0.2841796875,0.990196228027344,0.253173828125,0.987937927246094,0.2449951171875,0.94403076171875,0.285400390625,0.98016357421875,0.319580078125,0.96685791015625,0.26025390625,0.93975830078125,0.2626953125,0.896484375,0.311279296875,0.95306396484375,0.334716796875,0.9267578125,0.29443359375,0.935546875,0.325927734375,0.92474365234375,0.3193359375,0.8951416015625,0.27392578125,0.90087890625,0.306396484375,0.89990234375,0.271728515625,0.8638916015625,0.264404296875,0.8555908203125,0.293212890625,0.88116455078125,0.277099609375,0.851318359375,0.2724609375,0.8240966796875,0.293212890625,0.8419189453125,0.304931640625,0.8701171875,0.324951171875,0.860107421875,0.294189453125,0.856201171875,0.06646728515625,0.39013671875,0.0300750732421875,0.40234375,0.02490234375,0.36865234375,0.0377197265625,0.35009765625,0.0266265869140625,0.34228515625,0.03717041015625,0.3447265625,0.0230712890625,0.35498046875,0.0184783935546875,0.34033203125,0.0170745849609375,0.3818359375,0.0102386474609375,0.353515625,0.00980377197265625,0.38232421875,0.556640625,0.41015625,0.52001953125,0.421875,0.5146484375,0.38818359375,0.52783203125,0.36962890625,0.5166015625,0.36181640625,0.52734375,0.3642578125,0.51318359375,0.37451171875,
  1077. 0.50830078125,0.35986328125,0.5068359375,0.4013671875,0.5,0.373046875,0.5,0.40185546875,0.69384765625,0.35107421875,0.6572265625,0.36279296875,0.65234375,0.32958984375,0.6650390625,0.31103515625,0.65380859375,0.30322265625,0.66455078125,0.30517578125,0.650390625,0.3154296875,0.6455078125,0.30126953125,0.64453125,0.3427734375,0.63720703125,0.314453125,0.63720703125,0.3427734375,0.615234375,0.35107421875,0.57861328125,0.36279296875,0.57373046875,0.32958984375,0.58642578125,0.31103515625,0.5751953125,0.30322265625,0.5859375,0.30517578125,0.57177734375,0.3154296875,0.5673828125,0.30126953125,0.56591796875,0.3427734375,0.55908203125,0.314453125,0.55859375,0.3427734375,0.7265625,0.27001953125,0.70458984375,0.28466796875,0.69580078125,0.27001953125,0.71484375,0.23095703125,0.72802734375,0.23583984375,0.70556640625,0.21337890625,0.7158203125,0.2119140625,0.61669921875,0.22119140625,0.62890625,0.22900390625,0.62841796875,0.25048828125,0.6083984375,0.2353515625,0.60205078125,0.22705078125,0.6064453125,0.26513671875,0.59765625,0.25048828125,0.040313720703125,0.28955078125,0.018341064453125,0.30419921875,0.00980377197265625,0.28955078125,0.0289154052734375,0.25048828125,0.041900634765625,0.25537109375,0.0196990966796875,0.2333984375,0.0300140380859375,0.2314453125,0.94970703125,0.22119140625,0.9619140625,0.22900390625,0.9619140625,0.25048828125,0.94140625,0.2353515625,0.93505859375,0.22705078125,0.93994140625,0.26513671875,0.93115234375,0.25048828125,0.5107421875,0.3095703125,0.48876953125,0.32373046875,0.480224609375,0.3095703125,0.49951171875,0.27001953125,0.51220703125,0.27490234375,0.490234375,0.2529296875,0.50048828125,0.25146484375,0.151611328125,0.48828125,0.1439208984375,0.5,0.12225341796875,0.5,0.1373291015625,0.47998046875,0.1456298828125,0.47314453125,0.1077880859375,0.47802734375,0.12225341796875,0.46923828125,0.80029296875,0.16650390625,0.80029296875,0.185546875,0.79736328125,0.18359375,0.80517578125,0.16845703125,0.80419921875,0.1865234375,0.81201171875,0.1689453125,0.810546875,0.1484375,0.80224609375,0.15234375,
  1078. 0.79443359375,0.15625,0.8037109375,0.1376953125,0.7939453125,0.140625,0.7216796875,0.16650390625,0.7216796875,0.185546875,0.71875,0.18359375,0.72705078125,0.16845703125,0.7255859375,0.1865234375,0.7333984375,0.1689453125,0.732421875,0.1484375,0.72412109375,0.15234375,0.71630859375,0.15625,0.72509765625,0.1376953125,0.71533203125,0.140625,0.7607421875,0.16650390625,0.76123046875,0.185546875,0.7578125,0.18359375,0.76611328125,0.16845703125,0.7646484375,0.1865234375,0.77294921875,0.1689453125,0.771484375,0.1484375,0.76318359375,0.15234375,0.75537109375,0.15625,0.76416015625,0.1376953125,0.7548828125,0.140625,0.95947265625,0.1865234375,0.9638671875,0.17431640625,0.97705078125,0.1826171875,0.95068359375,0.17578125,0.97802734375,0.16943359375,0.958984375,0.15966796875,0.42138671875,0.10791015625,0.43408203125,0.10107421875,0.443603515625,0.10791015625,0.425537109375,0.09326171875,0.446533203125,0.09521484375,0.4375,0.0888671875,0.5390625,0.10791015625,0.5517578125,0.10107421875,0.56103515625,0.10791015625,0.54296875,0.09326171875,0.56396484375,0.09521484375,0.55517578125,0.0888671875,0.7919921875,0.613525390625,0.7548828125,0.597412109375,0.78466796875,0.587158203125,0.78466796875,0.6396484375,0.814453125,0.5849609375,0.80029296875,0.634521484375,0.7880859375,0.676513671875,0.8134765625,0.635986328125,0.9833984375,0.314453125,0.97021484375,0.30908203125,0.97119140625,0.29052734375,0.98193359375,0.3486328125,0.9609375,0.2919921875,0.9599609375,0.33154296875,0.95947265625,0.36279296875,0.95068359375,0.3486328125,0.101318359375,0.29443359375,0.08807373046875,0.28955078125,0.08917236328125,0.2705078125,0.09967041015625,0.3291015625,0.07867431640625,0.2724609375,0.077880859375,0.31201171875,0.07733154296875,0.34326171875,0.068603515625,0.3291015625,0.22705078125,0.6689453125,0.2626953125,0.684326171875,0.23388671875,0.694091796875,0.2340087890625,0.64404296875,0.205810546875,0.6962890625,0.2193603515625,0.64892578125,0.230712890625,0.60888671875,0.20654296875,0.647705078125,0.16015625,0.29443359375,0.1468505859375,0.28955078125,
  1079. 0.14794921875,0.2705078125,0.158447265625,0.3291015625,0.137451171875,0.2724609375,0.13671875,0.31201171875,0.1361083984375,0.34326171875,0.12744140625,0.3291015625,0.126708984375,0.560791015625,0.1429443359375,0.59814453125,0.1533203125,0.568115234375,0.0950927734375,0.5673828125,0.155517578125,0.53857421875,0.10552978515625,0.552734375,0.08819580078125,0.5498046875,0.10418701171875,0.53955078125,0.1666259765625,0.06884765625,0.1783447265625,0.06201171875,0.187255859375,0.06884765625,0.1702880859375,0.05517578125,0.18994140625,0.056640625,0.181640625,0.05126953125,0.33154296875,0.1474609375,0.335693359375,0.13623046875,0.347900390625,0.1435546875,0.323486328125,0.13720703125,0.348388671875,0.13134765625,0.331298828125,0.12255859375,0.65673828125,0.10791015625,0.6689453125,0.10107421875,0.6787109375,0.10791015625,0.66064453125,0.09375,0.681640625,0.09521484375,0.6728515625,0.08935546875,0.8525390625,0.06884765625,0.86328125,0.0625,0.87158203125,0.06884765625,0.85595703125,0.05615234375,0.8740234375,0.0576171875,0.86669921875,0.052734375,0.480224609375,0.06884765625,0.491943359375,0.06201171875,0.5009765625,0.06884765625,0.48388671875,0.05517578125,0.50341796875,0.056640625,0.495361328125,0.05126953125,0.5390625,0.06884765625,0.55078125,0.06201171875,0.5595703125,0.06884765625,0.54248046875,0.05517578125,0.5625,0.056640625,0.55419921875,0.05126953125,0.1956787109375,0.57861328125,0.2005615234375,0.565673828125,0.214599609375,0.57421875,0.1861572265625,0.56689453125,0.2154541015625,0.56005859375,0.1953125,0.549560546875,0.59765625,0.02978515625,0.60791015625,0.02392578125,0.61572265625,0.02978515625,0.60107421875,0.01806640625,0.6181640625,0.01904296875,0.61083984375,0.01416015625,0.05780029296875,0.1474609375,0.062225341796875,0.13525390625,0.07525634765625,0.1435546875,0.04901123046875,0.13623046875,0.07598876953125,0.1298828125,0.057373046875,0.12060546875,0.841796875,0.24169921875,0.83154296875,0.22119140625,0.83056640625,0.23779296875,0.84033203125,0.27197265625,0.822265625,0.22216796875,0.82470703125,0.2607421875,
  1080. 0.82080078125,0.28466796875,0.8134765625,0.27197265625,0.8408203125,0.1279296875,0.8447265625,0.1171875,0.85595703125,0.12451171875,0.8330078125,0.1181640625,0.8564453125,0.11279296875,0.84033203125,0.1044921875,0.323486328125,0.08837890625,0.335205078125,0.08154296875,0.343994140625,0.08837890625,0.3271484375,0.07470703125,0.346923828125,0.076171875,0.33837890625,0.07080078125,0.5,0.02978515625,0.509765625,0.02392578125,0.517578125,0.02978515625,0.5029296875,0.017578125,0.52001953125,0.01904296875,0.5126953125,0.01416015625,0.2646484375,0.04931640625,0.274658203125,0.04345703125,0.282470703125,0.04931640625,0.267822265625,0.03759765625,0.284912109375,0.03857421875,0.277587890625,0.03369140625,0.81982421875,0.06884765625,0.8232421875,0.06005859375,0.83251953125,0.06591796875,0.8134765625,0.06103515625,0.8330078125,0.05615234375,0.8193359375,0.04931640625,0.5673828125,0.22216796875,0.556640625,0.201171875,0.5556640625,0.2177734375,0.56591796875,0.25244140625,0.5478515625,0.20263671875,0.55029296875,0.2412109375,0.54638671875,0.26513671875,0.5390625,0.25244140625,0.00980377197265625,0.1005859375,0.0200958251953125,0.0966796875,0.0132217407226563,0.08544921875,0.0191650390625,0.10791015625,0.024658203125,0.0849609375,0.032928466796875,0.10107421875,0.2646484375,0.08837890625,0.2763671875,0.08154296875,0.285400390625,0.08837890625,0.268310546875,0.07470703125,0.2880859375,0.076171875,0.279541015625,0.07080078125,0.12744140625,0.02978515625,0.1375732421875,0.02392578125,0.1453857421875,0.02978515625,0.130615234375,0.017578125,0.147705078125,0.01904296875,0.140380859375,0.01416015625,0.441162109375,0.02978515625,0.451171875,0.02392578125,0.458984375,0.02978515625,0.4443359375,0.017578125,0.46142578125,0.01904296875,0.4541015625,0.01416015625,0.2318115234375,0.8333740234375,0.2349853515625,0.82470703125,0.2445068359375,0.83056640625,0.2254638671875,0.8255615234375,0.2449951171875,0.8209228515625,0.2314453125,0.81396484375,0.5478515625,0.1669921875,0.55224609375,0.15478515625,0.5654296875,0.1630859375,0.5390625,0.15625,0.56591796875,
  1081. 0.14990234375,0.54736328125,0.14013671875,0.480224609375,0.10791015625,0.492919921875,0.10107421875,0.50244140625,0.10791015625,0.484375,0.09326171875,0.50537109375,0.09521484375,0.496337890625,0.0888671875,0.67626953125,0.808349609375,0.68359375,0.8209228515625,0.67626953125,0.8304443359375,0.69091796875,0.812255859375,0.68896484375,0.8333740234375,0.6953125,0.824462890625,0.69873046875,0.64794921875,0.73583984375,0.6640625,0.70556640625,0.674560546875,0.70556640625,0.6220703125,0.67626953125,0.676513671875,0.6904296875,0.626953125,0.7021484375,0.5849609375,0.6767578125,0.625732421875,0.395263671875,0.27490234375,0.382080078125,0.27001953125,0.38330078125,0.2509765625,0.393798828125,0.30908203125,0.372802734375,0.25244140625,0.371826171875,0.29248046875,0.371337890625,0.32373046875,0.362548828125,0.30908203125,0.277587890625,0.27490234375,0.264404296875,0.27001953125,0.265625,0.2509765625,0.276123046875,0.30908203125,0.255126953125,0.25244140625,0.25439453125,0.29248046875,0.253662109375,0.32373046875,0.2449951171875,0.30908203125,0.280517578125,0.5576171875,0.2449951171875,0.54248046875,0.273681640625,0.532470703125,0.273681640625,0.58251953125,0.302001953125,0.530517578125,0.288330078125,0.577880859375,0.277099609375,0.61767578125,0.30126953125,0.5791015625,0.9833984375,0.8238525390625,0.97021484375,0.8189697265625,0.97119140625,0.7999267578125,0.98193359375,0.858154296875,0.9609375,0.801513671875,0.9599609375,0.84130859375,0.95947265625,0.87255859375,0.95068359375,0.858154296875,0.63623046875,0.521728515625,0.65234375,0.558837890625,0.6630859375,0.52880859375,0.6044921875,0.528076171875,0.6650390625,0.49951171875,0.615234375,0.513671875,0.59765625,0.510498046875,0.61376953125,0.500244140625,0.38232421875,0.06494140625,0.388916015625,0.07666015625,0.38232421875,0.0859375,0.395751953125,0.06884765625,0.394287109375,0.08837890625,0.39990234375,0.080078125,0.390380859375,0.1474609375,0.39453125,0.13623046875,0.40673828125,0.1435546875,0.38232421875,0.13720703125,0.4072265625,0.13134765625,0.389892578125,0.12255859375,
  1082. 0.71533203125,0.10791015625,0.72802734375,0.10107421875,0.7373046875,0.10791015625,0.71923828125,0.09375,0.740234375,0.09521484375,0.7314453125,0.08935546875,0.91162109375,0.06884765625,0.92236328125,0.0625,0.9306640625,0.06884765625,0.9150390625,0.05615234375,0.93310546875,0.0576171875,0.92529296875,0.052734375,0.59765625,0.06884765625,0.609375,0.06201171875,0.61865234375,0.06884765625,0.6015625,0.05517578125,0.62109375,0.056640625,0.61279296875,0.05126953125,0.65673828125,0.06884765625,0.66845703125,0.06201171875,0.67724609375,0.06884765625,0.66015625,0.05517578125,0.68017578125,0.056640625,0.67138671875,0.05126953125,0.8427734375,0.1865234375,0.84716796875,0.173828125,0.861328125,0.18212890625,0.8330078125,0.1748046875,0.8623046875,0.16796875,0.84228515625,0.15771484375,0.1861572265625,0.02978515625,0.1964111328125,0.02392578125,0.2041015625,0.02978515625,0.189453125,0.01806640625,0.2064208984375,0.01904296875,0.19921875,0.01416015625,0.2734375,0.1474609375,0.27783203125,0.13525390625,0.290771484375,0.1435546875,0.2646484375,0.13623046875,0.29150390625,0.1298828125,0.27294921875,0.12060546875,0.783203125,0.24169921875,0.7724609375,0.22119140625,0.771484375,0.23779296875,0.78173828125,0.27197265625,0.76318359375,0.22216796875,0.76611328125,0.2607421875,0.76220703125,0.28466796875,0.7548828125,0.27197265625,0.8994140625,0.1279296875,0.9033203125,0.1171875,0.91455078125,0.12451171875,0.89208984375,0.1181640625,0.9150390625,0.11279296875,0.89892578125,0.1044921875,0.12744140625,0.06494140625,0.1341552734375,0.07666015625,0.12744140625,0.0859375,0.14111328125,0.06884765625,0.1395263671875,0.08837890625,0.1451416015625,0.080078125,0.38232421875,0.02978515625,0.392333984375,0.02392578125,0.400146484375,0.02978515625,0.385498046875,0.017578125,0.402587890625,0.01904296875,0.395263671875,0.01416015625,0.00980377197265625,0.04931640625,0.0199737548828125,0.04345703125,0.027740478515625,0.04931640625,0.0130386352539063,0.03759765625,0.030120849609375,0.03857421875,0.0228118896484375,0.03369140625,0.78076171875,0.06884765625,
  1083. 0.78369140625,0.06005859375,0.79345703125,0.06591796875,0.7744140625,0.06103515625,0.7939453125,0.05615234375,0.7802734375,0.04931640625,0.90087890625,0.1865234375,0.9052734375,0.17431640625,0.91845703125,0.1826171875,0.89208984375,0.17578125,0.9189453125,0.16943359375,0.900390625,0.15966796875,0.59765625,0.10791015625,0.6103515625,0.10107421875,0.6201171875,0.10791015625,0.6015625,0.09326171875,0.623046875,0.09521484375,0.61376953125,0.0888671875,0.2254638671875,0.1025390625,0.232666015625,0.115234375,0.2254638671875,0.125,0.2401123046875,0.1064453125,0.2384033203125,0.1279296875,0.244384765625,0.11865234375,0.87060546875,0.64794921875,0.8330078125,0.6640625,0.86328125,0.674560546875,0.86328125,0.6220703125,0.892578125,0.676513671875,0.87841796875,0.626953125,0.86669921875,0.5849609375,0.89208984375,0.625732421875,0.4541015625,0.27490234375,0.44091796875,0.27001953125,0.442138671875,0.2509765625,0.45263671875,0.30908203125,0.431640625,0.25244140625,0.4306640625,0.29248046875,0.43017578125,0.32373046875,0.42138671875,0.30908203125,0.33642578125,0.27490234375,0.3232421875,0.27001953125,0.324462890625,0.2509765625,0.3349609375,0.30908203125,0.31396484375,0.25244140625,0.31298828125,0.29248046875,0.3125,0.32373046875,0.3037109375,0.30908203125,0.95263671875,0.6494140625,0.98828125,0.664794921875,0.958984375,0.674560546875,0.95947265625,0.62451171875,0.93115234375,0.676513671875,0.94482421875,0.62939453125,0.9560546875,0.58935546875,0.931640625,0.6279296875,0.218994140625,0.27490234375,0.2056884765625,0.27001953125,0.206787109375,0.2509765625,0.21728515625,0.30908203125,0.1962890625,0.25244140625,0.195556640625,0.29248046875,0.1949462890625,0.32373046875,0.1861572265625,0.30908203125,0.03204345703125,0.5693359375,0.06927490234375,0.585693359375,0.039154052734375,0.595947265625,0.03851318359375,0.537841796875,0.00980377197265625,0.59814453125,0.02398681640625,0.548095703125,0.0208282470703125,0.53076171875,0.0105667114257813,0.546875,0.2254638671875,0.04541015625,0.232177734375,0.05712890625,0.2254638671875,0.06591796875,
  1084. 0.239013671875,0.04931640625,0.237548828125,0.06884765625,0.2430419921875,0.060546875,0.1748046875,0.1279296875,0.1788330078125,0.11669921875,0.1910400390625,0.1240234375,0.1666259765625,0.11767578125,0.191650390625,0.11181640625,0.1744384765625,0.10302734375,0.7744140625,0.10791015625,0.78662109375,0.10107421875,0.79638671875,0.10791015625,0.7783203125,0.09375,0.79931640625,0.09521484375,0.79052734375,0.08935546875,0.97021484375,0.04736328125,0.9765625,0.05810546875,0.97021484375,0.06640625,0.98291015625,0.05078125,0.9814453125,0.06884765625,0.98681640625,0.06103515625,0.71533203125,0.06884765625,0.72705078125,0.06201171875,0.73583984375,0.06884765625,0.71923828125,0.05517578125,0.73876953125,0.056640625,0.73046875,0.05126953125,0.42138671875,0.06884765625,0.43310546875,0.06201171875,0.442138671875,0.06884765625,0.42529296875,0.05517578125,0.44482421875,0.056640625,0.4365234375,0.05126953125,0.626953125,0.61767578125,0.6318359375,0.60498046875,0.64599609375,0.613525390625,0.6171875,0.60595703125,0.646484375,0.59912109375,0.62646484375,0.5888671875,0.55859375,0.02978515625,0.56884765625,0.02392578125,0.57666015625,0.02978515625,0.56201171875,0.01806640625,0.57861328125,0.01904296875,0.57177734375,0.01416015625,0.11663818359375,0.1474609375,0.12103271484375,0.13525390625,0.134033203125,0.1435546875,0.1077880859375,0.13623046875,0.134765625,0.1298828125,0.1162109375,0.12060546875,0.90087890625,0.24169921875,0.89013671875,0.22119140625,0.88916015625,0.23779296875,0.8994140625,0.27197265625,0.880859375,0.22216796875,0.8837890625,0.2607421875,0.8798828125,0.28466796875,0.8720703125,0.27197265625,0.95849609375,0.1279296875,0.9619140625,0.1171875,0.9736328125,0.12451171875,0.95068359375,0.1181640625,0.97412109375,0.11279296875,0.9580078125,0.1044921875,0.068603515625,0.08837890625,0.080322265625,0.08154296875,0.08929443359375,0.08837890625,0.07232666015625,0.07470703125,0.092041015625,0.076171875,0.0836181640625,0.07080078125,0.068603515625,0.04931640625,0.07879638671875,0.04345703125,0.0865478515625,0.04931640625,0.07183837890625,
  1085. 0.03759765625,0.08892822265625,0.03857421875,0.08160400390625,0.03369140625,0.323486328125,0.04931640625,0.33349609375,0.04345703125,0.34130859375,0.04931640625,0.32666015625,0.03759765625,0.34375,0.03857421875,0.33642578125,0.03369140625,0.11419677734375,0.8333740234375,0.117431640625,0.82470703125,0.1268310546875,0.83056640625,0.1077880859375,0.8255615234375,0.12744140625,0.8209228515625,0.1138916015625,0.81396484375,0.6845703125,0.14990234375,0.67626953125,0.13720703125,0.685546875,0.13427734375,0.6767578125,0.154296875,0.69287109375,0.1455078125,0.6826171875,0.16455078125,0.6875,0.1669921875,0.6943359375,0.16748046875,0.6796875,0.18310546875,0.68603515625,0.1865234375,0.6826171875,0.185546875,0.306884765625,0.17578125,0.296142578125,0.185546875,0.291259765625,0.1708984375,0.2841796875,0.17333984375,0.30029296875,0.20166015625,0.28466796875,0.19775390625,0.292724609375,0.205078125,0.294189453125,0.2255859375,0.28515625,0.220703125,0.28955078125,0.22314453125,0.3369140625,0.61181640625,0.359130859375,0.58740234375,0.362060546875,0.61767578125,0.323486328125,0.591796875,0.388671875,0.59814453125,0.346923828125,0.55419921875,0.384765625,0.55322265625,0.8291015625,0.767578125,0.85498046875,0.739501953125,0.8583984375,0.7745361328125,0.8134765625,0.744384765625,0.88916015625,0.751708984375,0.8408203125,0.70068359375,0.884765625,0.69970703125,0.2998046875,0.708740234375,0.325927734375,0.6806640625,0.3291015625,0.7158203125,0.2841796875,0.685546875,0.360107421875,0.69287109375,0.3115234375,0.641845703125,0.35546875,0.640869140625,0.7265625,0.35791015625,0.7451171875,0.337890625,0.74755859375,0.36279296875,0.71533203125,0.341796875,0.76904296875,0.3466796875,0.73486328125,0.310546875,0.765625,0.31005859375,0.388427734375,0.8258056640625,0.3603515625,0.79541015625,0.356689453125,0.8333740234375,0.4052734375,0.80078125,0.323486328125,0.8087158203125,0.375732421875,0.753662109375,0.328369140625,0.75244140625,0.88916015625,0.982666015625,0.91748046875,0.952239990234375,0.9208984375,0.990196228027344,0.8720703125,0.95758056640625,
  1086. 0.9541015625,0.965484619140625,0.90185546875,0.91046142578125,0.94921875,0.9093017578125,0.056549072265625,0.7969970703125,0.08697509765625,0.768798828125,0.04901123046875,0.76513671875,0.08160400390625,0.8138427734375,0.07373046875,0.73193359375,0.128662109375,0.7841796875,0.1298828125,0.737060546875,0.025390625,0.689208984375,0.051422119140625,0.6611328125,0.0548095703125,0.6962890625,0.00980377197265625,0.666015625,0.0855712890625,0.67333984375,0.037200927734375,0.622314453125,0.08099365234375,0.621337890625,0.6689453125,0.24365234375,0.66357421875,0.26416015625,0.66748046875,0.26513671875,0.66015625,0.26123046875,0.67626953125,0.244140625,0.66357421875,0.2412109375,0.666015625,0.224609375,0.6748046875,0.2197265625,0.6572265625,0.2294921875,0.6669921875,0.20751953125,0.65673828125,0.2109375,0.246826171875,0.16845703125,0.232177734375,0.16259765625,0.2366943359375,0.1796875,0.2254638671875,0.16552734375,0.2398681640625,0.20166015625,0.2259521484375,0.197265625,0.232421875,0.20361328125,0.23486328125,0.2255859375,0.2264404296875,0.22021484375,0.23046875,0.22265625,0.0222625732421875,0.1845703125,0.02081298828125,0.2060546875,0.0167083740234375,0.205078125,0.0133819580078125,0.20263671875,0.0294342041015625,0.185546875,0.016632080078125,0.18212890625,0.01910400390625,0.166015625,0.0281219482421875,0.1611328125,0.0104904174804688,0.17041015625,0.0202484130859375,0.1484375,0.00980377197265625,0.15185546875,0.31689453125,0.416015625,0.338623046875,0.392578125,0.341552734375,0.421875,0.3037109375,0.396484375,0.367431640625,0.40283203125,0.32666015625,0.35986328125,0.363525390625,0.35888671875,0.708984375,0.552978515625,0.73095703125,0.529541015625,0.7333984375,0.558837890625,0.69580078125,0.53369140625,0.75927734375,0.539794921875,0.71875,0.4970703125,0.75537109375,0.49609375,0.80712890625,0.455078125,0.82861328125,0.431640625,0.83154296875,0.4609375,0.7939453125,0.435546875,0.857421875,0.44189453125,0.81689453125,0.39892578125,0.853515625,0.3984375,0.414794921875,0.513916015625,0.436767578125,0.490234375,0.439453125,
  1087. 0.519775390625,0.40185546875,0.49462890625,0.46533203125,0.50048828125,0.4248046875,0.4580078125,0.46142578125,0.45703125,0.47314453125,0.1650390625,0.467529296875,0.185546875,0.4716796875,0.1865234375,0.46435546875,0.18310546875,0.480224609375,0.166015625,0.467529296875,0.16259765625,0.469970703125,0.146484375,0.47900390625,0.14111328125,0.46142578125,0.15087890625,0.47119140625,0.12890625,0.460693359375,0.13232421875,0.129150390625,0.18798828125,0.11456298828125,0.1826171875,0.11907958984375,0.19921875,0.1077880859375,0.18505859375,0.12225341796875,0.22119140625,0.1083984375,0.216796875,0.11480712890625,0.22314453125,0.1171875,0.2451171875,0.10882568359375,0.23974609375,0.11285400390625,0.24267578125,0.0222625732421875,0.772705078125,0.02081298828125,0.794189453125,0.0167083740234375,0.793212890625,0.0133819580078125,0.79052734375,0.0294342041015625,0.7735595703125,0.016632080078125,0.770263671875,0.01910400390625,0.75390625,0.0281219482421875,0.7490234375,0.0104904174804688,0.758544921875,0.0202484130859375,0.73681640625,0.00980377197265625,0.740234375,0.414794921875,0.416015625,0.436767578125,0.392578125,0.439453125,0.421875,0.40185546875,0.396484375,0.46533203125,0.40283203125,0.4248046875,0.35986328125,0.46142578125,0.35888671875,0.80712890625,0.552978515625,0.82861328125,0.529541015625,0.83154296875,0.558837890625,0.7939453125,0.53369140625,0.857421875,0.539794921875,0.81689453125,0.4970703125,0.853515625,0.49609375,0.90478515625,0.455078125,0.9267578125,0.431640625,0.9296875,0.4609375,0.89208984375,0.435546875,0.95556640625,0.44189453125,0.9150390625,0.39892578125,0.95166015625,0.3984375,0.0228729248046875,0.49462890625,0.044677734375,0.470703125,0.047515869140625,0.5,0.00980377197265625,0.47509765625,0.07330322265625,0.48095703125,0.032745361328125,0.4384765625,0.0694580078125,0.4375,0.6455078125,0.14990234375,0.63720703125,0.13720703125,0.646484375,0.13427734375,0.6376953125,0.154296875,0.65380859375,0.1455078125,0.64306640625,0.16455078125,0.6484375,0.1669921875,0.65478515625,0.16748046875,0.64013671875,
  1088. 0.18310546875,0.64697265625,0.1865234375,0.64306640625,0.185546875,0.424560546875,0.17578125,0.413818359375,0.185546875,0.408935546875,0.1708984375,0.40185546875,0.17333984375,0.41796875,0.20166015625,0.40234375,0.19775390625,0.410400390625,0.205078125,0.411865234375,0.2255859375,0.40283203125,0.220703125,0.4072265625,0.22314453125,0.53271484375,0.61181640625,0.55517578125,0.58740234375,0.55810546875,0.61767578125,0.51953125,0.591796875,0.58447265625,0.59814453125,0.54296875,0.55419921875,0.58056640625,0.55322265625,0.68310546875,0.759033203125,0.71142578125,0.73291015625,0.67626953125,0.7294921875,0.70654296875,0.7745361328125,0.69921875,0.69873046875,0.75,0.747314453125,0.7509765625,0.703369140625,0.39794921875,0.708740234375,0.423828125,0.6806640625,0.42724609375,0.7158203125,0.38232421875,0.685546875,0.4580078125,0.69287109375,0.40966796875,0.641845703125,0.453369140625,0.640869140625,0.8046875,0.35791015625,0.8232421875,0.337890625,0.82568359375,0.36279296875,0.7939453125,0.341796875,0.84765625,0.3466796875,0.8134765625,0.310546875,0.84423828125,0.31005859375,0.732421875,0.7991943359375,0.76025390625,0.82958984375,0.76416015625,0.7916259765625,0.71533203125,0.8243408203125,0.79736328125,0.81640625,0.7451171875,0.8714599609375,0.79248046875,0.87255859375,0.771484375,0.982666015625,0.7998046875,0.952239990234375,0.80322265625,0.990196228027344,0.7548828125,0.95758056640625,0.83642578125,0.965484619140625,0.7841796875,0.91046142578125,0.83154296875,0.9093017578125,0.5751953125,0.8258056640625,0.603515625,0.79541015625,0.607421875,0.8333740234375,0.55859375,0.80078125,0.640625,0.8087158203125,0.58837890625,0.753662109375,0.63525390625,0.75244140625,0.1234130859375,0.689208984375,0.1494140625,0.6611328125,0.15283203125,0.6962890625,0.1077880859375,0.666015625,0.18359375,0.67333984375,0.1351318359375,0.622314453125,0.178955078125,0.621337890625,0.296630859375,0.772705078125,0.291015625,0.793212890625,0.295166015625,0.794189453125,0.287841796875,0.79052734375,0.3037109375,0.7735595703125,0.291015625,0.770263671875,0.29345703125,
  1089. 0.75390625,0.302490234375,0.7490234375,0.284912109375,0.758544921875,0.294677734375,0.73681640625,0.2841796875,0.740234375,0.18798828125,0.16845703125,0.17333984375,0.16259765625,0.1778564453125,0.1796875,0.1666259765625,0.16552734375,0.1810302734375,0.20166015625,0.1671142578125,0.197265625,0.173583984375,0.20361328125,0.176025390625,0.2255859375,0.1676025390625,0.22021484375,0.171630859375,0.22265625,0.46240234375,0.21875,0.441162109375,0.21728515625,0.44189453125,0.212890625,0.444580078125,0.20947265625,0.461669921875,0.2255859375,0.465087890625,0.212890625,0.4814453125,0.21533203125,0.486328125,0.224609375,0.4765625,0.20703125,0.49853515625,0.216796875,0.4951171875,0.2060546875,0.2188720703125,0.416015625,0.24072265625,0.392578125,0.2435302734375,0.421875,0.205810546875,0.396484375,0.269287109375,0.40283203125,0.228759765625,0.35986328125,0.265380859375,0.35888671875,0.90478515625,0.552978515625,0.9267578125,0.529541015625,0.9296875,0.558837890625,0.89208984375,0.53369140625,0.95556640625,0.539794921875,0.9150390625,0.4970703125,0.95166015625,0.49609375,0.61083984375,0.455078125,0.6328125,0.431640625,0.6357421875,0.4609375,0.59765625,0.435546875,0.6611328125,0.44189453125,0.62060546875,0.39892578125,0.6572265625,0.3984375,0.5126953125,0.513916015625,0.53466796875,0.490234375,0.53759765625,0.519775390625,0.5,0.49462890625,0.5634765625,0.50048828125,0.52294921875,0.4580078125,0.5595703125,0.45703125,0.6064453125,0.14990234375,0.59765625,0.13720703125,0.607421875,0.13427734375,0.5986328125,0.154296875,0.61474609375,0.1455078125,0.60400390625,0.16455078125,0.609375,0.1669921875,0.61572265625,0.16748046875,0.60107421875,0.18310546875,0.60791015625,0.1865234375,0.60400390625,0.185546875,0.36572265625,0.17578125,0.35498046875,0.185546875,0.35009765625,0.1708984375,0.343017578125,0.17333984375,0.359130859375,0.20166015625,0.343505859375,0.19775390625,0.3515625,0.205078125,0.35302734375,0.2255859375,0.343994140625,0.220703125,0.348388671875,0.22314453125,0.434814453125,0.61181640625,0.457275390625,0.58740234375,0.460205078125,
  1090. 0.61767578125,0.42138671875,0.591796875,0.48681640625,0.59814453125,0.445068359375,0.55419921875,0.482666015625,0.55322265625,0.92724609375,0.767578125,0.953125,0.739501953125,0.95654296875,0.7745361328125,0.91162109375,0.744384765625,0.9873046875,0.751708984375,0.93896484375,0.70068359375,0.98291015625,0.69970703125,0.495849609375,0.708740234375,0.52197265625,0.6806640625,0.525390625,0.7158203125,0.480224609375,0.685546875,0.55615234375,0.69287109375,0.50732421875,0.641845703125,0.55126953125,0.640869140625,0.88330078125,0.35791015625,0.90185546875,0.337890625,0.904296875,0.36279296875,0.8720703125,0.341796875,0.92578125,0.3466796875,0.8916015625,0.310546875,0.9228515625,0.31005859375,0.4580078125,0.8258056640625,0.486083984375,0.79541015625,0.48974609375,0.8333740234375,0.441162109375,0.80078125,0.52294921875,0.8087158203125,0.470703125,0.753662109375,0.517578125,0.75244140625,0.8408203125,0.8753662109375,0.87109375,0.8472900390625,0.8330078125,0.8436279296875,0.86572265625,0.8922119140625,0.85791015625,0.810302734375,0.91259765625,0.8626708984375,0.9140625,0.8153076171875,0.1741943359375,0.7969970703125,0.20458984375,0.768798828125,0.1666259765625,0.76513671875,0.19921875,0.8138427734375,0.1912841796875,0.73193359375,0.246337890625,0.7841796875,0.24755859375,0.737060546875,0.59375,0.708740234375,0.61962890625,0.6806640625,0.623046875,0.7158203125,0.578125,0.685546875,0.65380859375,0.69287109375,0.60546875,0.641845703125,0.6494140625,0.640869140625,0.78662109375,0.733642578125,0.78125,0.7540283203125,0.78515625,0.7550048828125,0.77783203125,0.7513427734375,0.7939453125,0.734375,0.78125,0.731201171875,0.78369140625,0.71484375,0.79248046875,0.709716796875,0.77490234375,0.719482421875,0.78466796875,0.697509765625,0.7744140625,0.700927734375,0.04901123046875,0.18798828125,0.06353759765625,0.1826171875,0.059051513671875,0.19921875,0.0703125,0.18505859375,0.055908203125,0.22119140625,0.06976318359375,0.216796875,0.06329345703125,0.22314453125,0.06097412109375,0.2451171875,0.0693359375,0.23974609375,0.0653076171875,0.24267578125,
  1091. 0.51220703125,0.1650390625,0.5107421875,0.1865234375,0.5068359375,0.185546875,0.50341796875,0.18310546875,0.51953125,0.166015625,0.5068359375,0.16259765625,0.50927734375,0.146484375,0.51806640625,0.14111328125,0.50048828125,0.15087890625,0.51025390625,0.12890625,0.5,0.13232421875,0.1136474609375,0.42822265625,0.13720703125,0.40673828125,0.1077880859375,0.40380859375,0.133056640625,0.44140625,0.126953125,0.3779296875,0.169677734375,0.41845703125,0.170654296875,0.3818359375,0.1920166015625,0.506591796875,0.2156982421875,0.48486328125,0.1861572265625,0.48193359375,0.2115478515625,0.519775390625,0.2054443359375,0.45654296875,0.2481689453125,0.4970703125,0.2490234375,0.4599609375,0.708984375,0.455078125,0.73095703125,0.431640625,0.7333984375,0.4609375,0.69580078125,0.435546875,0.75927734375,0.44189453125,0.71875,0.39892578125,0.75537109375,0.3984375,0.31689453125,0.462890625,0.338623046875,0.486328125,0.341552734375,0.45703125,0.3037109375,0.482421875,0.367431640625,0.47607421875,0.32666015625,0.518798828125,0.363525390625,0.519775390625
  1092. }
  1093. UVIndex: *3783 {
  1094. a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,28,29,30,31,29,28,29,32,30,31,33,29,34,29,33,33,35,34,32,29,36,34,36,29,36,37,32,38,32,37,37,39,38,39,37,40,37,36,40,40,41,39,34,42,36,40,36,42,43,42,34,43,34,35,42,44,40,42,43,44,35,45,43,44,43,45,45,35,46,46,47,45,47,44,45,47,46,48,48,49,47,50,44,47,49,50,47,49,51,50,51,44,50,51,49,52,40,44,53,51,53,44,41,40,53,52,54,51,53,51,54,53,54,41,54,52,55,55,41,54,56,57,58,59,57,56,57,60,58,59,61,57,62,57,61,61,63,62,60,57,64,62,64,57,64,65,60,66,60,65,65,67,66,67,65,68,65,64,68,68,69,67,62,70,64,68,64,70,71,70,62,71,62,63,70,72,68,70,71,72,63,73,71,72,71,73,73,63,74,74,75,73,75,72,73,75,74,76,76,77,75,78,72,75,77,78,75,77,79,78,79,72,78,79,77,80,68,72,81,79,81,72,69,68,81,80,82,79,81,79,82,81,82,69,82,80,83,83,69,82,84,85,86,87,85,84,85,88,86,87,89,85,90,85,89,89,91,90,88,85,92,90,92,85,92,93,88,94,88,93,93,95,94,95,93,96,93,92,96,96,97,95,90,98,92,96,92,98,99,98,90,99,90,91,98,100,96,98,99,100,91,101,99,100,99,101,101,91,102,102,103,101,103,100,101,103,102,104,104,105,103,106,100,103,105,106,103,105,107,106,107,100,106,107,105,108,96,100,109,107,109,100,97,96,109,108,110,107,109,107,110,109,110,97,110,108,111,111,97,110,112,113,114,115,112,114,113,112,116,117,113,116,112,115,118,119,118,115,116,120,117,121,117,120,116,112,122,120,116,122,112,118,122,121,120,123,123,120,122,124,121,123,122,118,125,118,119,125,126,123,122,124,123,126,127,125,119,119,128,127,129,122,125,125,127,129,129,126,122,128,130,127,127,130,129,131,130,128,132,130,131,133,124,126,133,126,129,124,133,134,130,135,129,135,133,129,130,132,135,135,134,133,134,135,132,136,137,138,139,136,138,137,136,140,141,137,140,136,139,142,143,142,139,140,144,141,145,141,144,140,136,146,144,140,146,136,142,146,145,144,147,147,144,146,
  1095. 148,145,147,146,142,149,142,143,149,150,147,146,148,147,150,151,149,143,143,152,151,153,146,149,149,151,153,153,150,146,152,154,151,151,154,153,155,154,152,156,154,155,157,148,150,157,150,153,148,157,158,154,159,153,159,157,153,154,156,159,159,158,157,158,159,156,160,161,162,163,160,162,161,160,164,165,161,164,160,163,166,167,166,163,164,168,165,169,165,168,164,160,170,168,164,170,160,166,170,169,168,171,171,168,170,172,169,171,170,166,173,166,167,173,174,171,170,172,171,174,175,173,167,167,176,175,177,170,173,173,175,177,177,174,170,176,178,175,175,178,177,179,178,176,180,178,179,181,172,174,181,174,177,172,181,182,178,183,177,183,181,177,178,180,183,183,182,181,182,183,180,184,185,186,187,184,186,187,188,189,186,190,187,188,187,190,188,190,191,186,192,190,191,190,193,190,192,193,193,192,194,195,196,197,198,195,197,198,199,200,197,201,198,199,198,201,199,201,202,197,203,201,202,201,204,201,203,204,204,203,205,206,207,208,209,206,208,209,210,211,208,212,209,210,209,212,210,212,213,208,214,212,213,212,215,212,214,215,215,214,216,217,218,219,220,217,219,220,221,222,219,223,220,221,220,223,221,223,224,219,225,223,224,223,226,223,225,226,226,225,227,228,229,230,231,228,230,232,228,231,231,230,233,232,231,234,234,231,233,235,236,237,235,237,238,239,235,238,237,240,238,239,238,241,238,240,241,242,243,244,245,242,244,246,242,245,245,244,247,246,245,248,248,245,247,249,250,251,249,251,252,253,249,252,251,254,252,253,252,255,252,254,255,256,257,258,259,256,258,260,256,259,259,258,261,260,259,262,262,259,261,263,264,265,263,265,266,267,263,266,265,268,266,267,266,269,266,268,269,270,271,272,273,271,270,271,273,274,273,275,274,273,276,275,270,277,273,276,273,277,277,270,278,279,276,277,280,277,278,277,280,279,281,282,283,284,282,281,282,284,285,284,286,285,284,287,286,281,288,284,287,284,288,288,281,289,290,287,288,291,288,289,288,291,290,292,293,294,295,293,292,293,295,296,295,297,296,295,298,297,292,299,295,298,295,299,299,292,300,301,298,299,302,299,300,299,302,301,303,304,305,303,306,304,305,304,307,304,306,308,307,304,308,
  1096. 309,310,311,309,312,310,311,310,313,310,312,314,310,314,313,315,316,317,315,318,316,317,316,319,316,318,320,316,320,319,321,322,323,324,322,321,325,321,323,321,326,324,325,326,321,327,324,326,328,326,325,327,326,328,329,330,331,329,332,330,331,330,333,330,332,334,330,334,333,332,335,334,336,333,334,334,335,336,337,338,339,337,340,338,339,338,341,338,340,342,342,341,338,340,343,342,344,341,342,342,343,344,345,346,347,348,346,345,349,345,347,345,350,348,349,350,345,351,348,350,352,350,349,351,350,352,353,354,355,353,356,354,355,354,357,354,356,358,354,358,357,356,359,358,360,357,358,358,359,360,361,362,363,364,362,361,365,361,363,361,366,364,365,366,361,367,364,366,368,366,365,367,366,368,369,370,371,369,372,370,371,370,373,370,372,374,370,374,373,375,376,377,375,378,376,377,376,379,376,378,380,379,376,380,381,382,383,381,384,382,383,382,385,382,384,386,382,386,385,387,388,389,387,390,388,389,388,391,388,390,392,388,392,391,393,394,395,393,396,394,395,394,397,394,396,398,394,398,397,399,400,401,399,402,400,401,400,403,400,402,404,400,404,403,405,406,407,405,408,406,407,406,409,406,408,410,409,406,410,411,412,413,411,414,412,413,412,415,412,414,416,412,416,415,417,418,419,417,420,418,419,418,421,418,420,422,421,418,422,423,424,425,423,425,426,424,427,425,425,428,426,425,427,428,426,428,429,427,430,428,428,430,429,431,432,433,431,434,432,433,432,435,432,434,436,435,432,436,437,438,439,437,440,438,439,438,441,438,440,442,438,442,441,443,444,445,443,446,444,445,444,447,444,446,448,444,448,447,449,450,451,449,452,450,451,450,453,450,452,454,450,454,453,455,456,457,455,458,456,457,456,459,456,458,460,459,456,460,461,462,463,461,463,464,462,465,463,463,466,464,463,465,466,464,466,467,465,468,466,466,468,467,469,470,471,469,472,470,471,470,473,470,472,474,473,470,474,475,476,477,475,478,476,477,476,479,476,478,480,476,480,479,481,482,483,481,484,482,483,482,485,482,484,486,482,486,485,487,488,489,487,490,488,489,488,491,488,490,492,488,492,491,493,494,495,493,496,494,495,494,497,494,496,498,497,494,498,499,500,501,499,502,500,
  1097. 501,500,503,500,502,504,503,500,504,505,506,507,505,508,506,507,506,509,506,508,510,506,510,509,511,512,513,511,514,512,513,512,515,512,514,516,512,516,515,517,518,519,520,518,517,521,517,519,517,522,520,521,522,517,523,520,522,524,522,521,523,522,524,525,526,527,525,528,526,527,526,529,526,528,530,526,530,529,528,531,530,532,529,530,530,531,532,533,534,535,533,536,534,535,534,537,534,536,538,538,537,534,536,539,538,540,537,538,538,539,540,541,542,543,544,542,541,545,541,543,541,546,544,545,546,541,547,544,546,548,546,545,547,546,548,549,550,551,549,552,550,551,550,553,550,552,554,550,554,553,552,555,554,556,553,554,554,555,556,557,558,559,560,558,557,561,557,559,557,562,560,561,562,557,563,560,562,564,562,561,563,562,564,565,566,567,565,568,566,567,566,569,566,568,570,566,570,569,571,572,573,571,574,572,573,572,575,572,574,576,575,572,576,577,578,579,577,580,578,579,578,581,578,580,582,578,582,581,583,584,585,583,586,584,585,584,587,584,586,588,584,588,587,589,590,591,589,592,590,591,590,593,590,592,594,590,594,593,595,596,597,595,598,596,597,596,599,596,598,600,596,600,599,601,602,603,601,604,602,603,602,605,602,604,606,605,602,606,607,608,609,607,610,608,609,608,611,608,610,612,608,612,611,613,614,615,613,616,614,615,614,617,614,616,618,617,614,618,619,620,621,619,621,622,620,623,621,621,624,622,621,623,624,622,624,625,623,626,624,624,626,625,627,628,629,627,630,628,629,628,631,628,630,632,631,628,632,633,634,635,633,636,634,635,634,637,634,636,638,634,638,637,639,640,641,639,642,640,641,640,643,640,642,644,640,644,643,645,646,647,645,648,646,647,646,649,646,648,650,646,650,649,651,652,653,651,654,652,653,652,655,652,654,656,655,652,656,657,658,659,657,660,658,659,658,661,658,660,662,661,658,662,663,664,665,663,666,664,665,664,667,664,666,668,664,668,667,669,670,671,669,672,670,671,670,673,670,672,674,670,674,673,675,676,677,678,676,675,679,675,677,675,680,678,679,680,675,681,678,680,682,680,679,681,680,682,683,684,685,683,686,684,685,684,687,684,686,688,684,688,687,686,689,688,690,687,688,688,689,690,691,692,693,
  1098. 691,694,692,693,692,695,692,694,696,696,695,692,694,697,696,698,695,696,696,697,698,699,700,701,702,700,699,703,699,701,699,704,702,703,704,699,705,702,704,706,704,703,705,704,706,707,708,709,707,710,708,709,708,711,708,710,712,708,712,711,710,713,712,714,711,712,712,713,714,715,716,717,718,716,715,719,715,717,715,720,718,719,720,715,721,718,720,722,720,719,721,720,722,723,724,725,723,726,724,725,724,727,724,726,728,724,728,727,729,730,731,729,732,730,731,730,733,730,732,734,733,730,734,735,736,737,735,738,736,737,736,739,736,738,740,736,740,739,741,742,743,741,744,742,743,742,745,742,744,746,742,746,745,747,748,749,747,750,748,749,748,751,748,750,752,748,752,751,753,754,755,753,756,754,755,754,757,754,756,758,754,758,757,759,760,761,759,762,760,761,760,763,760,762,764,763,760,764,765,766,767,765,768,766,767,766,769,766,768,770,766,770,769,771,772,773,771,774,772,773,772,775,772,774,776,775,772,776,777,778,779,777,779,780,778,781,779,779,782,780,779,781,782,780,782,783,781,784,782,782,784,783,785,786,787,785,788,786,787,786,789,786,788,790,789,786,790,791,792,793,791,794,792,793,792,795,792,794,796,792,796,795,797,798,799,797,800,798,799,798,801,798,800,802,798,802,801,803,804,805,803,806,804,805,804,807,804,806,808,804,808,807,809,810,811,809,812,810,811,810,813,810,812,814,813,810,814,815,816,817,816,815,818,817,819,815,815,820,818,819,821,815,820,815,821,821,819,822,821,823,820,824,821,822,823,821,825,825,821,824,826,827,828,827,829,828,826,830,827,831,829,827,827,830,832,827,832,831,833,832,830,832,834,831,832,833,835,834,832,835,836,837,838,836,839,837,838,837,840,837,839,841,840,837,842,842,837,841,843,844,845,843,846,844,845,844,847,844,846,848,847,844,849,849,844,848,850,851,852,850,853,851,852,851,854,851,853,855,854,851,856,856,851,855,857,858,859,857,860,858,859,858,861,858,860,862,861,858,863,863,858,862,864,865,866,864,867,865,866,865,868,865,867,869,868,865,870,870,865,869,871,872,873,871,874,872,873,872,875,872,874,876,875,872,877,877,872,876,878,879,880,878,881,879,880,879,882,879,881,883,882,879,884,
  1099. 884,879,883,885,886,887,885,888,886,887,886,889,886,888,890,889,886,891,891,886,890,892,893,894,892,895,893,894,896,892,895,892,897,898,892,896,898,897,892,898,896,899,897,898,900,901,898,899,898,902,900,902,898,901,903,904,905,905,904,906,905,907,903,908,905,906,907,905,909,909,905,908,909,910,907,911,909,908,910,909,912,912,909,911,913,914,915,916,913,915,914,913,917,913,916,918,919,917,913,918,919,913,920,917,919,919,918,921,922,920,919,923,919,921,919,923,922,924,925,926,924,927,925,926,925,928,925,927,929,928,925,930,930,925,929,931,932,933,931,934,932,933,932,935,932,934,936,935,932,937,937,932,936,938,939,940,938,941,939,940,939,942,939,941,943,942,939,944,944,939,943,945,946,947,945,948,946,947,946,949,946,948,950,949,946,951,951,946,950,952,953,954,952,955,953,954,956,952,955,952,957,958,952,956,958,957,952,958,956,959,957,958,960,961,958,959,958,962,960,962,958,961,963,964,965,965,964,966,965,967,963,968,965,966,967,965,969,969,965,968,969,970,967,971,969,968,970,969,972,972,969,971,973,974,975,976,973,975,974,973,977,973,976,978,979,977,973,978,979,973,980,977,979,979,978,981,982,980,979,983,979,981,979,983,982,984,985,986,984,987,985,986,985,988,985,987,989,988,985,990,990,985,989,991,992,993,991,994,992,993,992,995,992,994,996,995,992,997,997,992,996,998,999,1000,998,1001,999,1000,999,1002,999,1001,1003,1002,999,1004,1004,999,1003,1005,1006,1007,1005,1008,1006,1007,1006,1009,1006,1008,1010,1009,1006,1011,1011,1006,1010,1012,1013,1014,1013,1012,1015,1014,1016,1012,1012,1017,1015,1016,1018,1012,1017,1012,1018,1018,1016,1019,1018,1020,1017,1021,1018,1019,1020,1018,1022,1022,1018,1021,1023,1024,1025,1024,1026,1025,1023,1027,1024,1028,1026,1024,1024,1027,1029,1024,1029,1028,1030,1029,1027,1029,1031,1028,1029,1030,1032,1031,1029,1032,1033,1034,1035,1033,1036,1034,1035,1034,1037,1034,1036,1038,1037,1034,1039,1039,1034,1038,1040,1041,1042,1040,1043,1041,1042,1041,1044,1041,1043,1045,1044,1041,1046,1046,1041,1045,1047,1048,1049,1047,1050,1048,1049,1048,1051,1048,1050,1052,1051,1048,1053,1053,1048,1052,1054,1055,
  1100. 1056,1054,1057,1055,1056,1055,1058,1055,1057,1059,1058,1055,1060,1060,1055,1059,1061,1062,1063,1061,1064,1062,1063,1062,1065,1062,1064,1066,1065,1062,1067,1067,1062,1066,1068,1069,1070,1068,1071,1069,1070,1069,1072,1069,1071,1073,1072,1069,1074,1074,1069,1073,1075,1076,1077,1075,1078,1076,1077,1076,1079,1076,1078,1080,1079,1076,1081,1081,1076,1080,1082,1083,1084,1082,1085,1083,1084,1083,1086,1083,1085,1087,1086,1083,1088,1088,1083,1087,1089,1090,1091,1089,1092,1090,1091,1093,1089,1092,1089,1094,1095,1089,1093,1095,1094,1089,1095,1093,1096,1094,1095,1097,1098,1095,1096,1095,1099,1097,1099,1095,1098,1100,1101,1102,1102,1101,1103,1102,1104,1100,1105,1102,1103,1104,1102,1106,1106,1102,1105,1106,1107,1104,1108,1106,1105,1107,1106,1109,1109,1106,1108,1110,1111,1112,1113,1110,1112,1111,1110,1114,1110,1113,1115,1116,1114,1110,1115,1116,1110,1117,1114,1116,1116,1115,1118,1119,1117,1116,1120,1116,1118,1116,1120,1119,1121,1122,1123,1121,1124,1122,1123,1122,1125,1122,1124,1126,1125,1122,1127,1127,1122,1126,1128,1129,1130,1128,1131,1129,1130,1129,1132,1129,1131,1133,1132,1129,1134,1134,1129,1133,1135,1136,1137,1135,1138,1136,1137,1136,1139,1136,1138,1140,1139,1136,1141,1141,1136,1140,1142,1143,1144,1142,1145,1143,1144,1143,1146,1143,1145,1147,1146,1143,1148,1148,1143,1147,1149,1150,1151,1150,1149,1152,1151,1153,1149,1149,1154,1152,1153,1155,1149,1154,1149,1155,1155,1153,1156,1155,1157,1154,1158,1155,1156,1157,1155,1159,1159,1155,1158,1160,1161,1162,1161,1163,1162,1160,1164,1161,1165,1163,1161,1161,1164,1166,1161,1166,1165,1167,1166,1164,1166,1168,1165,1166,1167,1169,1168,1166,1169,1170,1171,1172,1170,1173,1171,1172,1171,1174,1171,1173,1175,1174,1171,1176,1176,1171,1175,1177,1178,1179,1177,1180,1178,1179,1178,1181,1178,1180,1182,1181,1178,1183,1183,1178,1182,1184,1185,1186,1184,1187,1185,1186,1185,1188,1185,1187,1189,1188,1185,1190,1190,1185,1189,1191,1192,1193,1191,1194,1192,1193,1192,1195,1192,1194,1196,1195,1192,1197,1197,1192,1196,1198,1199,1200,1198,1201,1199,1200,1199,1202,1199,1201,1203,1202,1199,1204,1204,1199,1203,1205,
  1101. 1206,1207,1205,1208,1206,1207,1206,1209,1206,1208,1210,1209,1206,1211,1211,1206,1210,1212,1213,1214,1212,1215,1213,1214,1213,1216,1213,1215,1217,1216,1213,1218,1218,1213,1217,1219,1220,1221,1219,1222,1220,1221,1220,1223,1220,1222,1224,1223,1220,1225,1225,1220,1224,1226,1227,1228,1226,1229,1227,1228,1230,1226,1229,1226,1231,1232,1226,1230,1232,1231,1226,1232,1230,1233,1231,1232,1234,1235,1232,1233,1232,1236,1234,1236,1232,1235,1237,1238,1239,1239,1238,1240,1239,1241,1237,1242,1239,1240,1241,1239,1243,1243,1239,1242,1243,1244,1241,1245,1243,1242,1244,1243,1246,1246,1243,1245,1247,1248,1249,1250,1247,1249,1248,1247,1251,1247,1250,1252,1253,1251,1247,1252,1253,1247,1254,1251,1253,1253,1252,1255,1256,1254,1253,1257,1253,1255,1253,1257,1256,1258,1259,1260,1258,1261,1259,1260,1259,1262,1259,1261,1263,1262,1259,1264,1264,1259,1263,1265,1266,1267,1265,1268,1266,1267,1266,1269,1266,1268,1270,1269,1266,1271,1271,1266,1270,1272,1273,1274,1272,1275,1273,1274,1273,1276,1273,1275,1277,1276,1273,1278,1278,1273,1277,1279,1280,1281,1279,1282,1280,1281,1280,1283,1280,1282,1284,1283,1280,1285,1285,1280,1284
  1102. }
  1103. }
  1104. LayerElementSmoothing: 0 {
  1105. Version: 102
  1106. Name: ""
  1107. MappingInformationType: "ByEdge"
  1108. ReferenceInformationType: "Direct"
  1109. Smoothing: *2391 {
  1110. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  1111. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  1112. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1113. }
  1114. }
  1115. LayerElementMaterial: 0 {
  1116. Version: 101
  1117. Name: ""
  1118. MappingInformationType: "ByPolygon"
  1119. ReferenceInformationType: "IndexToDirect"
  1120. Materials: *1261 {
  1121. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1122. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1123. }
  1124. }
  1125. Layer: 0 {
  1126. Version: 100
  1127. LayerElement: {
  1128. Type: "LayerElementNormal"
  1129. TypedIndex: 0
  1130. }
  1131. LayerElement: {
  1132. Type: "LayerElementBinormal"
  1133. TypedIndex: 0
  1134. }
  1135. LayerElement: {
  1136. Type: "LayerElementTangent"
  1137. TypedIndex: 0
  1138. }
  1139. LayerElement: {
  1140. Type: "LayerElementMaterial"
  1141. TypedIndex: 0
  1142. }
  1143. LayerElement: {
  1144. Type: "LayerElementColor"
  1145. TypedIndex: 0
  1146. }
  1147. LayerElement: {
  1148. Type: "LayerElementSmoothing"
  1149. TypedIndex: 0
  1150. }
  1151. LayerElement: {
  1152. Type: "LayerElementUV"
  1153. TypedIndex: 0
  1154. }
  1155. }
  1156. Layer: 1 {
  1157. Version: 100
  1158. LayerElement: {
  1159. Type: "LayerElementBinormal"
  1160. TypedIndex: 1
  1161. }
  1162. LayerElement: {
  1163. Type: "LayerElementTangent"
  1164. TypedIndex: 1
  1165. }
  1166. LayerElement: {
  1167. Type: "LayerElementUV"
  1168. TypedIndex: 1
  1169. }
  1170. }
  1171. }
  1172. Geometry: 2267733790880, "Geometry::", "Mesh" {
  1173. Vertices: *2106 {
  1174. a: -17.037109375,338.297546386719,99.8131713867188,-9.671875,316.774047851563,84.0201416015625,-14.9150390625,310.434234619141,98.8639221191406,-15.552734375,332.213134765625,75.319580078125,-13.44140625,294.093963623047,92.8488464355469,-12.546875,305.582855224609,51.1687927246094,-6.7802734375,292.441253662109,58.5076599121094,-8.4296875,266.651092529297,22.4430847167969,-7.3671875,288.376312255859,79.6819763183594,-7.0556640625,275.09716796875,95.86669921875,-13.044921875,276.29052734375,115.07373046875,-10.001953125,251.544128417969,86.6759643554688,-4.2900390625,251.694519042969,71.7003784179688,-6.3330078125,212.566802978516,68.7074279785156,-5.9697265625,250.19677734375,51.66357421875,-3.34765625,259.01220703125,36.26806640625,-1.5185546875,202.321594238281,30.9094848632813,0.3662109375,220.447647094727,16.5042877197266,-4.232421875,222.621520996094,0.88519287109375,2.681640625,189.035934448242,17.2644500732422,-1.234375,182.530212402344,0.84368896484375,-0.8330078125,162.028503417969,27.7423706054688,2.951171875,176.799591064453,32.6023254394531,2.46484375,175.740997314453,46.0564270019531,-1.625,158.371398925781,53.0715942382813,-0.51171875,208.619964599609,58.3934020996094,0.337890625,182.86003112793,59.9840545654297,-4.138671875,179.897811889648,74.5862884521484,-23.3515625,284.81689453125,-187.94091796875,-15.986328125,258.145965576172,-186.777862548828,-21.2294921875,262.496459960938,-171.234985351563,-21.8671875,264.737243652344,-203.229553222656,-19.755859375,245.989379882813,-165.694213867188,-18.861328125,228.851501464844,-205.387756347656,-13.095703125,223.199478149414,-191.436264038086,-14.7451171875,180.509613037109,-203.410308837891,-13.681640625,233.286926269531,-172.382019042969,-13.3701171875,233.066680908203,-151.446014404297,-19.359375,246.022399902344,-137.217834472656,-16.31640625,208.946701049805,-143.866775512695,-10.60546875,199.687133789063,-155.639038085938,-12.6484375,167.303909301758,-133.474411010742,-12.28515625,185.974975585938,-170.322875976563,-9.662109375,183.208557128906,-187.848083496094,
  1175. -7.8349609375,135.650146484375,-156.532470703125,-5.9501953125,140.764373779297,-179.113555908203,-10.548828125,132.680145263672,-192.653839111328,-3.634765625,116.747451782227,-158.853134155273,-7.55078125,101.39372253418,-167.58381652832,-7.150390625,102.24870300293,-133.77473449707,-3.365234375,116.809585571289,-139.232406616211,-3.8515625,124.407684326172,-128.078643798828,-7.94140625,115.255966186523,-111.734268188477,-6.8271484375,157.769134521484,-139.045318603516,-5.978515625,138.678695678711,-121.676773071289,-10.455078125,145.511260986328,-108.436004638672,-13.9453125,233.799057006836,-80.4411773681641,-5.6201171875,209.904663085938,-91.6959228515625,-10.7275390625,206.399230957031,-75.8966674804688,-12.03125,223.08740234375,-103.26220703125,-8.5673828125,189.26806640625,-78.58154296875,-7.796875,192.374572753906,-121.707458496094,-1.5791015625,181.170852661133,-111.928756713867,-1.9345703125,148.755767822266,-142.221771240234,-2.171875,181.323013305664,-90.3693695068359,-1.4677734375,171.504180908203,-71.8883972167969,-7.6494140625,176.206008911133,-53.2920379638672,-3.41796875,146.506378173828,-76.2729187011719,2.400390625,143.940612792969,-90.9861450195313,1.9140625,104.937316894531,-86.2306518554688,0.9384765625,138.471725463867,-110.336868286133,3.3349609375,144.189361572266,-127.166107177734,7.421875,87.6695098876953,-121.277755737305,8.708984375,102.674209594727,-138.963485717773,4.1513671875,101.55322265625,-154.70654296875,12.2451171875,72.1413726806641,-132.045150756836,8.7158203125,62.3867340087891,-146.867172241211,9.7080078125,47.5990142822266,-116.464462280273,12.873046875,63.1760406494141,-114.601303100586,12.3232421875,64.7615356445313,-101.202331542969,8.861328125,48.9586334228516,-90.9105072021484,7.9658203125,99.2775726318359,-95.5671539306641,9.8095703125,74.3862762451172,-88.9457550048828,5.3388671875,74.1730194091797,-74.0457305908203,-17.37890625,73.9957885742188,184.072952270508,-10.0126953125,55.5417327880859,164.781967163086,-15.255859375,46.7206268310547,178.299728393555,-15.8935546875,72.2570343017578,158.895706176758,
  1176. -13.7822265625,31.6731109619141,169.539321899414,-12.8876953125,50.2251434326172,130.486862182617,-7.1220703125,36.0087432861328,135.432571411133,-8.7705078125,16.8729705810547,95.4374237060547,-7.7080078125,28.3287811279297,155.57878112793,-7.396484375,12.4407348632813,169.213195800781,-13.3857421875,10.2808380126953,188.334548950195,-10.3427734375,-9.15840148925781,156.071090698242,-4.630859375,-6.40968322753906,141.348129272461,-6.673828125,-44.4232635498047,131.607009887695,-6.310546875,-4.40553283691406,121.357162475586,-3.6884765625,6.94960021972656,107.725967407227,-1.859375,-47.9493560791016,92.6043548583984,0.025390625,-27.5972137451172,81.5658721923828,-4.5732421875,-22.7440948486328,66.5605926513672,2.3408203125,-58.6637115478516,76.8597259521484,-1.5751953125,-62.2191925048828,59.5581512451172,-1.173828125,-87.0802459716797,82.4881134033203,2.6103515625,-73.3776092529297,89.8401641845703,2.1240234375,-76.7563629150391,102.905746459961,-1.9658203125,-95.0801544189453,106.797775268555,-0.8525390625,-46.5192413330078,120.764938354492,-0.0029296875,-72.1639556884766,117.857528686523,-4.4794921875,-77.6167449951172,131.724075317383,-1.4267578125,-21.2458648681641,67.3781585693359,-7.029296875,-63.4850921630859,72.7697906494141,-7.029296875,-28.6278228759766,102.094833374023,-7.029296875,24.6635894775391,64.7612457275391,-1.4267578125,-54.5111236572266,60.9810638427734,-7.0283203125,-76.8973846435547,12.0987091064453,-1.4267578125,12.9608917236328,44.5556182861328,-7.0283203125,54.5232696533203,-2.89958190917969,-1.42578125,-54.1176605224609,6.30616760253906,-7.0283203125,-51.6646270751953,-44.9898223876953,-4.3232421875,-18.4732818603516,5.15367126464844,-1.42578125,-40.2656707763672,-37.9668426513672,-7.0283203125,-1.43095397949219,-59.6125946044922,-1.42578125,38.3267211914063,-9.95062255859375,-1.42578125,6.49497985839844,-42.5294342041016,-1.42578125,78.1684112548828,-46.2476043701172,-7.0283203125,94.2287750244141,-47.2975921630859,-4.3232421875,38.2367706298828,-50.0444793701172,-1.42578125,85.3848419189453,-64.7665252685547,
  1177. -7.0283203125,117.883941650391,-88.3445739746094,-7.0283203125,72.8841552734375,-97.9332275390625,-1.42578125,39.0110931396484,-70.8648834228516,-7.0283203125,31.2627410888672,-97.9599151611328,-1.42578125,62.9413299560547,-76.3125762939453,2.5302734375,48.3122863769531,79.4636535644531,-3.0712890625,20.8654174804688,46.9083862304688,-3.0712890625,15.1450042724609,92.1000823974609,-3.0712890625,75.4201202392578,116.608596801758,2.53125,35.6361236572266,48.0511627197266,-3.0712890625,64.5510101318359,2.72288513183594,2.5302734375,86.0434722900391,95.8149566650391,-3.0712890625,148.456588745117,104.978073120117,2.53125,81.7774200439453,18.7149200439453,-3.0712890625,126.19702911377,-7.05785369873047,-0.3662109375,102.085311889648,48.0306243896484,2.53125,126.481979370117,6.32767486572266,-3.0712890625,165.735656738281,27.2053833007813,2.53125,145.592102050781,87.5471801757813,2.53125,155.686370849609,43.1316833496094,2.53125,197.698913574219,101.320007324219,-3.0712890625,207.295104980469,114.241394042969,-0.3662109375,179.222198486328,65.7163391113281,2.53125,217.170288085938,97.3343505859375,-3.0712890625,254.609375,111.83984375,-3.0712890625,238.247619628906,68.8374481201172,2.53125,197.131469726563,55.0699462890625,-3.0712890625,215.686935424805,33.8607635498047,2.53125,214.690979003906,72.2163696289063,-1.8740234375,-13.4093170166016,-117.377090454102,-7.4765625,-52.4727630615234,-134.326278686523,-7.4765625,-37.4939117431641,-91.3064117431641,-7.4765625,27.3914184570313,-96.1681518554688,-1.8740234375,-38.7357025146484,-139.873397827148,-7.4755859375,-33.0014801025391,-193.331558227539,-1.8740234375,27.6564331054688,-119.516418457031,-7.4755859375,87.6312255859375,-139.071899414063,-1.873046875,-10.4598236083984,-186.671737670898,-7.4755859375,17.8594055175781,-229.512664794922,-4.7705078125,20.7687225341797,-169.44807434082,-1.873046875,24.0690002441406,-217.650726318359,-7.4755859375,68.5116119384766,-216.413192749023,-1.873046875,77.3119506835938,-153.408752441406,-1.873046875,66.5958404541016,-197.678573608398,
  1178. -1.873046875,130.106292724609,-164.253082275391,-7.4755859375,144.448303222656,-156.949157714844,-4.7705078125,97.7213287353516,-187.920272827148,-1.873046875,145.772094726563,-176.484741210938,-7.4755859375,185.755874633789,-180.145492553711,-7.4755859375,151.973587036133,-211.381881713867,-1.873046875,109.025482177734,-205.421783447266,-7.4755859375,116.209579467773,-232.672256469727,-1.873046875,132.378997802734,-197.875885009766,-27.0146484375,243.174285888672,126.014129638672,-25.4169921875,283.274353027344,88.8602905273438,-16.2431640625,243.735504150391,59.1222076416016,-4.4501953125,212.976318359375,65.052490234375,-5.185546875,209.781494140625,44.506103515625,-2.2998046875,206.345153808594,60.8002319335938,-11.73046875,227.474334716797,47.4313659667969,2.3623046875,213.949645996094,34.9887084960938,-16.9404296875,266.241943359375,58.882568359375,-1.171875,236.221435546875,33.390380859375,-11.732421875,272.497833251953,51.4626770019531,-33.3291015625,227.049926757813,-107.953002929688,-31.7314453125,235.055572509766,-162.030364990234,-22.55859375,185.606307983398,-160.463027954102,-10.765625,165.334930419922,-136.580108642578,-11.501953125,149.979827880859,-150.600250244141,-8.615234375,157.502624511719,-135.743469238281,-18.0458984375,165.607528686523,-159.397354125977,-3.953125,147.270538330078,-160.631805419922,-23.2548828125,203.005676269531,-174.741394042969,-7.48828125,163.636520385742,-175.822463989258,-18.0478515625,203.238098144531,-184.443542480469,-20.3984375,145.352340698242,-36.0578155517578,-20.0791015625,177.406707763672,-80.3667297363281,-9.1328125,133.196044921875,-101.755126953125,3.8076171875,104.695938110352,-89.8948822021484,3.3583984375,97.5018005371094,-109.412261962891,6.2490234375,97.4502716064453,-92.7596893310547,-3.8955078125,115.149169921875,-110.020751953125,10.8134765625,100.017517089844,-119.563537597656,-10.7080078125,155.171188354492,-106.411819458008,6.421875,121.382759094238,-125.506889343262,-5.69140625,160.050933837891,-114.916839599609,-27.35546875,-24.2319488525391,193.357894897461,
  1179. -25.7578125,21.7105255126953,163.732009887695,-16.583984375,-12.0637054443359,127.579849243164,-4.791015625,-43.3853302001953,128.079513549805,-5.5263671875,-42.9638214111328,107.290084838867,-2.640625,-49.1775360107422,122.741409301758,-12.0712890625,-26.0478363037109,113.244155883789,2.021484375,-37.2062225341797,98.6404571533203,-17.28125,10.1423797607422,131.252731323242,-1.5126953125,-14.9953765869141,100.934310913086,-12.0732421875,17.5916290283203,125.03205871582,-12.720703125,111.19010925293,-36.6048126220703,-14.9853515625,106.07405090332,-73.9650115966797,-12.7451171875,82.2799530029297,-69.1360626220703,-13.4541015625,57.2930450439453,-10.4022674560547,-7.3935546875,75.5377044677734,-1.83045959472656,-3.9296875,30.1917266845703,-3.89323425292969,-3.681640625,38.2913665771484,8.58921813964844,-7.291015625,-72.1888580322266,57.6783294677734,-0.037109375,-55.6662139892578,46.1638641357422,-7.0263671875,-52.6903533935547,15.4873809814453,-15.2685546875,-81.2807769775391,36.9594573974609,-8.923828125,-92.9013214111328,46.6162567138672,-19.359375,-80.7388458251953,-6.60896301269531,-17.7705078125,-94.8048858642578,13.2419891357422,-8.763671875,207.515808105469,134.290222167969,-11.029296875,236.122375488281,109.721969604492,-8.7890625,219.156066894531,92.3542938232422,-9.498046875,156.262145996094,103.233810424805,-3.4365234375,158.960845947266,123.210845947266,0.02734375,136.089691162109,84.0008239746094,0.275390625,129.999649047852,97.5767974853516,-3.333984375,28.8188018798828,31.4096221923828,3.919921875,47.4562072753906,39.0401916503906,-3.0693359375,74.8392181396484,24.8958587646484,-11.310546875,41.2901916503906,12.5294494628906,-4.9658203125,26.8726959228516,8.00843811035156,-15.40234375,78.1818237304688,-10.6550903320313,-13.8134765625,53.8738250732422,-11.6994171142578,-13.16796875,153.564392089844,-139.089904785156,-15.43359375,168.256408691406,-173.819763183594,-13.1923828125,145.335815429688,-181.826293945313,-13.90234375,93.8460235595703,-144.10612487793,-7.8408203125,105.149047851563,-127.415405273438,
  1180. -4.376953125,67.2238006591797,-152.35920715332,-4.12890625,67.8084106445313,-137.491394042969,-7.73828125,-52.2438201904297,-151.74479675293,-0.484375,-32.1572723388672,-153.200241088867,-7.4736328125,-13.9244537353516,-178.049453735352,-15.7158203125,-49.4721527099609,-174.200668334961,-9.3701171875,-64.3958282470703,-171.83821105957,-19.806640625,-26.7441558837891,-211.375991821289,-18.2177734375,-48.9792327880859,-201.497787475586,-16.697265625,105.828979492188,-89.3653564453125,-9.7109375,159.383163452148,-67.4068756103516,-11.021484375,140.898254394531,-108.742370605469,-4.7666015625,85.80126953125,-56.54443359375,-11.3623046875,114.631805419922,-141.214874267578,-14.15625,74.8441467285156,-76.8736267089844,-0.3642578125,43.5433044433594,-23.3268127441406,-5.275390625,61.6916656494141,-89.7350921630859,-5.5751953125,35.8148040771484,-52.1314849853516,-13.294921875,16.681396484375,-56.305908203125,-1.810546875,0.965957641601563,-35.3680267333984,-14.119140625,64.7175750732422,-92.1369171142578,-3.9296875,-9.26106262207031,-45.9700469970703,-19.890625,25.4957275390625,-90.2239990234375,-21.3291015625,52.9633483886719,-127.306182861328,-19.2880859375,30.3726959228516,-118.363632202148,-11.3408203125,36.0572967529297,39.5699920654297,-14.41796875,18.3425750732422,28.6248016357422,-3.0791015625,-1.36802673339844,45.9503326416016,-19.787109375,74.6313629150391,8.75636291503906,-1.6025390625,-7.87124633789063,32.6463317871094,-17.814453125,36.4514465332031,-1.90597534179688,-19.4931640625,73.7922821044922,-29.0084991455078,-14.25390625,50.0863494873047,-26.7534942626953,-13.9365234375,-8.75941467285156,-42.5387115478516,-2.7890625,39.8384857177734,-17.9867095947266,-7.3125,25.7109222412109,-58.5410308837891,-2.19921875,-31.0859222412109,-13.6161956787109,-10.9560546875,3.43675231933594,-91.3415679931641,-12.8486328125,-39.2881622314453,-33.2158966064453,1,-74.0771026611328,14.3955535888672,-5.90234375,-51.2478179931641,-46.9235992431641,-16.97265625,-10.8646087646484,70.1705474853516,-18.8369140625,23.2328491210938,117.425231933594,
  1181. -14.564453125,29.4472503662109,72.7577972412109,-3.888671875,-52.7420806884766,90.8819427490234,-8.966796875,24.4595489501953,31.6685333251953,-11.2861328125,-43.4738922119141,64.9889984130859,0.9990234375,-66.5379486083984,67.5333404541016,0.20703125,-47.1119232177734,48.4994049072266,-5.54296875,194.690948486328,40.3491516113281,2.021484375,176.663177490234,12.4795837402344,-8.0615234375,177.102813720703,35.4035949707031,-13.240234375,197.645477294922,83.4511413574219,3.3955078125,164.238494873047,16.1877136230469,-11.748046875,173.372650146484,70.0503845214844,-12.9140625,172.799591064453,105.317169189453,-8.1142578125,160.229278564453,88.7243957519531,-11.859375,135.609832763672,-144.394073486328,-4.294921875,104.104354858398,-154.838027954102,-14.3779296875,118.799728393555,-137.238357543945,-19.5556640625,164.900726318359,-112.635406494141,-2.9208984375,96.7376556396484,-144.166641235352,-18.0634765625,137.583801269531,-107.887878417969,-19.2294921875,159.217727661133,-80.0293426513672,-14.4306640625,139.027130126953,-85.0978698730469,-12.7412109375,248.926025390625,101.159408569336,-5.75390625,259.539428710938,158.059936523438,-7.0654296875,284.230865478516,120.104888916016,-0.8095703125,210.489807128906,102.144104003906,-7.40625,297.255493164063,80.4205322265625,-10.2001953125,221.621246337891,81.9102935791016,3.5927734375,159.658569335938,84.6712646484375,-1.3193359375,225.288146972656,63.8838500976563,-1.619140625,179.661056518555,62.5497283935547,-9.337890625,172.78532409668,44.2140350341797,2.146484375,146.671325683594,42.3724975585938,-10.1630859375,228.947174072266,65.1219787597656,0.02734375,150.027099609375,28.030029296875,-15.9345703125,206.058685302734,33.2139587402344,-17.3720703125,252.112426757813,36.1661224365234,-15.3310546875,232.342407226563,22.0426025390625,-7.3837890625,102.762878417969,112.510925292969,-10.4609375,102.345108032227,91.6917877197266,0.8779296875,77.0974273681641,84.5349273681641,-15.830078125,149.575622558594,128.193786621094,2.35546875,84.7439422607422,71.8533172607422,-13.857421875,137.816665649414,90.3371734619141,
  1182. -15.5361328125,180.843933105469,106.997253417969,-10.2978515625,166.087112426758,88.3087921142578,-9.9794921875,147.417938232422,30.3124694824219,1.16796875,153.161895751953,84.4568176269531,-3.35546875,179.562408447266,50.5858459472656,1.7578125,111.008407592773,27.2515716552734,-6.9990234375,195.029602050781,14.0784301757813,-8.8916015625,123.02131652832,9.72736358642578,4.95703125,64.1519012451172,6.33744812011719,-1.9453125,128.046905517578,-7.75582885742188,-13.015625,51.5988922119141,89.7004547119141,-14.8798828125,30.4068908691406,143.980133056641,-10.607421875,71.2985992431641,124.964614868164,0.068359375,11.4798126220703,65.7600860595703,-5.009765625,103.106887817383,98.4818878173828,-7.328125,38.2581634521484,59.4964447021484,4.95703125,23.6072845458984,41.5027923583984,4.1640625,50.1365509033203,47.4929962158203,3.625,81.8865814208984,-110.523574829102,12.107421875,59.0536956787109,-134.304702758789,1.8349609375,63.5836791992188,-111.915344238281,-4.51953125,92.9384613037109,-68.8418121337891,13.9375,47.6639556884766,-128.227645874023,-1.9736328125,66.5859069824219,-77.2109680175781,-3.3935546875,72.9035186767578,-42.5183563232422,2.0244140625,57.5212249755859,-56.3176422119141,-17.14453125,175.915023803711,-187.182632446289,-10.158203125,210.730575561523,-140.943252563477,-11.4697265625,215.961608886719,-185.920227050781,-5.2138671875,141.92887878418,-169.20295715332,-11.810546875,209.975143432617,-227.253372192383,-14.6044921875,142.897735595703,-192.277069091797,-0.8115234375,88.6309356689453,-162.242111206055,-5.72265625,138.163482666016,-210.053314208984,-6.0234375,96.7057342529297,-190.95246887207,-13.7421875,82.3912353515625,-204.316772460938,-2.2578125,58.1841583251953,-194.349044799805,-14.56640625,141.991607666016,-210.570892333984,-4.376953125,54.8097839355469,-208.686309814453,-20.337890625,107.298858642578,-228.967742919922,-21.7763671875,149.858505249023,-246.809463500977,-19.7353515625,125.869674682617,-250.665481567383,-11.7880859375,50.057373046875,-112.001220703125,-14.865234375,40.4224853515625,-130.461303710938,
  1183. -3.5263671875,14.6267700195313,-125.639831542969,-20.234375,98.9600982666016,-118.777206420898,-2.0498046875,15.8343353271484,-140.398086547852,-18.26171875,71.5891418457031,-147.451873779297,-19.9404296875,117.536148071289,-151.669906616211,-14.7021484375,96.0062408447266,-161.844345092773,-14.3837890625,53.4882659912109,-205.482437133789,-3.236328125,82.7171630859375,-159.543579101563,-7.759765625,91.2952423095703,-201.62370300293,-2.646484375,19.5176239013672,-192.027297973633,-11.4033203125,88.9086761474609,-241.200698852539,-13.2958984375,22.4815368652344,-213.066314697266,0.552734375,-31.7507781982422,-189.915817260742,-6.349609375,19.2053985595703,-230.96061706543,-17.419921875,-5.91275024414063,-109.671539306641,-19.2841796875,-0.747543334960938,-51.6303558349609,-15.01171875,27.4174957275391,-86.8500823974609,-4.3359375,-52.4930877685547,-113.266525268555,-9.4140625,44.1250915527344,-124.718658447266,-11.7333984375,-31.2959747314453,-130.788162231445,0.5517578125,-52.4215240478516,-140.386367797852,-0.240234375,-25.9969024658203,-146.82209777832,-5.8837890625,-57.1030731201172,100.575637817383,1.6806640625,-70.0177154541016,69.9998626708984,-8.40234375,-73.5653533935547,92.6514434814453,-13.5810546875,-61.6782379150391,143.536605834961,3.0546875,-82.8974456787109,71.4931793212891,-12.0888671875,-83.2552032470703,126.12370300293,-13.2548828125,-89.9435882568359,160.755630493164,-8.455078125,-99.4415740966797,142.23127746582,-0.63671875,4.25135803222656,57.2630767822266,-10.146484375,-16.7298126220703,100.36100769043,-0.63671875,25.924072265625,88.322509765625,-0.63671875,-30.0140533447266,49.6548919677734,-0.6376953125,13.3276519775391,134.774917602539,-0.63671875,-68.5798797607422,101.341995239258,-0.6376953125,-49.5636138916016,152.697128295898,-0.63671875,-39.8169708251953,62.0619354248047,-11.6826171875,15.7164306640625,66.0914306640625,-0.63671875,-15.6666717529297,25.2854766845703,-0.63671875,-33.2315216064453,102.299728393555,-0.63671875,39.8628234863281,18.8413391113281,-0.6376953125,39.1401824951172,121.589401245117,
  1184. -0.63671875,86.3296051025391,78.9370269775391,-0.63671875,46.7556304931641,62.3054351806641,-11.6826171875,50.7653961181641,6.76930236816406,-0.63671875,9.9696044921875,38.1678466796875,-0.63671875,86.9838409423828,55.7104034423828,-0.63671875,3.4979248046875,-17.3663330078125,-0.63671875,106.252319335938,-16.6793212890625,-0.63671875,63.5817108154297,-63.8382110595703,-2.248046875,59.4158477783203,-39.6154022216797,-10.0693359375,98.8227233886719,-40.7378234863281,-2.248046875,73.8063201904297,-67.2434844970703,-2.248046875,66.9161834716797,-11.7420196533203,-2.248046875,112.471572875977,-75.7413177490234,-2.248046875,119.285415649414,-3.30833435058594,-2.248046875,149.481048583984,-36.7279357910156,-0.63671875,15.4443054199219,-26.6269836425781,-12.5615234375,28.5587768554688,-85.2908325195313,-0.63671875,-20.0054168701172,-58.2495574951172,-0.63671875,59.4569549560547,-27.2715606689453,-0.6357421875,-18.0800933837891,-118.577163696289,-0.6357421875,91.5437164306641,-101.514877319336,-0.6357421875,53.4593505859375,-158.674438476563,-0.63671875,-48.6118011474609,3.68702697753906,-12.5625,-35.5043182373047,-54.9877166748047,-0.63671875,-84.0655975341797,-27.9415740966797,-0.63671875,-4.60252380371094,3.03614807128906,-0.63671875,-82.1495208740234,-88.2764739990234,-0.63671875,27.482421875,-71.205078125,-0.6357421875,-10.5936126708984,-128.357284545898,-0.63671875,-22.2704620361328,-32.1571807861328,-12.5625,-64.0246734619141,11.0983734130859,-0.63671875,-8.48719787597656,13.3067474365234,-0.63671875,-60.1736602783203,-54.5261993408203,-0.63671875,-41.5516510009766,63.8028411865234,-0.63671875,-126.237899780273,-7.86680603027344,-0.63671875,-123.50700378418,60.7586212158203,-0.6376953125,-74.4304351806641,126.629135131836,-11.6826171875,-61.7950286865234,72.4002838134766,-0.63671875,-106.984634399414,97.0446624755859,-0.6376953125,-33.6597442626953,126.402755737305,-0.63671875,-104.702072143555,41.1875762939453,-0.63671875,-3.31854248046875,57.9168090820313,-0.63671875,-38.0982208251953,4.66545104980469,-3.818359375,255.413635253906,50.9370574951172,
  1185. -9.16015625,220.506988525391,19.0694885253906,-1.6953125,220.476226806641,62.5445709228516,-3.8076171875,272.048614501953,21.1101379394531,2.3037109375,180.809234619141,37.9400939941406,1.091796875,234.770797729492,-29.1627960205078,4.91015625,181.718780517578,-25.6581726074219,1.154296875,212.792510986328,8.43508911132813,-8.1259765625,189.806396484375,49.035888671875,-1.6201171875,232.407470703125,39.5344085693359,3.982421875,179.915893554688,-0.4093017578125,-2.423828125,218.073303222656,84.1397094726563,4.91015625,140.171768188477,48.1727447509766,1.5751953125,156.273178100586,98.8776702880859,-3.771484375,252.914764404297,54.2711944580078,-11.4404296875,215.360809326172,82.4486999511719,-5.7080078125,258.327056884766,90.6952209472656,-0.8935546875,226.418121337891,32.9015197753906,-4.8642578125,227.294372558594,125.788513183594,2.083984375,170.559783935547,61.3742370605469,0.28125,164.883941650391,114.345855712891,-1.5986328125,228.130218505859,46.6341094970703,-13.470703125,271.468688964844,31.0077514648438,-0.5625,234.670867919922,10.3642272949219,-4.1708984375,246.346160888672,75.4301452636719,-2.6171875,275.267730712891,-12.9324645996094,-8.421875,308.324157714844,66.3729858398438,-8.0556640625,330.650451660156,17.9785766601563,-10.1337890625,189.587738037109,-174.156402587891,-15.4755859375,142.416625976563,-177.150756835938,-8.0107421875,169.612869262695,-143.231857299805,-10.123046875,183.883666992188,-207.829223632813,-4.0126953125,123.27806854248,-137.581298828125,-5.2236328125,123.340065002441,-223.689239501953,-1.4072265625,84.167724609375,-187.741455078125,-5.162109375,129.743041992188,-180.612426757813,-14.44140625,137.240844726563,-134.562866210938,-7.935546875,164.509124755859,-168.643218994141,-2.333984375,98.5709686279297,-166.92414855957,-8.7392578125,181.260147094727,-124.888290405273,-1.40625,97.9982604980469,-104.157989501953,-4.7412109375,142.299468994141,-74.7034606933594,-10.0869140625,189.726684570313,-169.992065429688,-17.755859375,178.085998535156,-124.508728027344,-12.0224609375,216.752105712891,-144.979339599609,
  1186. -7.208984375,155.686126708984,-170.065826416016,-11.1796875,214.526000976563,-98.1878662109375,-4.232421875,129.957946777344,-112.891662597656,-6.03515625,158.698364257813,-68.0330810546875,-7.9140625,165.618835449219,-160.430969238281,-19.7861328125,189.628540039063,-199.749389648438,-6.8779296875,148.010452270508,-192.806930541992,-10.486328125,197.852111816406,-149.382263183594,-8.9326171875,165.07958984375,-236.38916015625,-14.736328125,240.508544921875,-195.248291015625,-14.3701171875,227.617218017578,-246.961883544922,3.3203125,70.6441192626953,95.3921661376953,-6.1884765625,23.0568695068359,101.153549194336,3.3203125,56.312744140625,130.451416015625,3.3203125,58.4422149658203,62.4822540283203,3.3203125,10.4589233398438,145.074157714844,3.3203125,-5.89961242675781,58.1316375732422,3.3203125,-38.7202911376953,101.970138549805,3.3203125,42.7015838623047,60.9799041748047,-7.7255859375,69.4481811523438,109.814392089844,3.3203125,86.6979217529297,61.3112030029297,3.3203125,12.4752044677734,88.3433685302734,3.3203125,122.239776611328,104.460472106934,3.3203125,35.5394287109375,159.602905273438,3.3203125,96.9716796875,176.099609375,3.3203125,89.4703826904297,133.83268737793,-7.7255859375,138.295989990234,107.067474365234,3.3203125,89.7862548828125,89.8360595703125,3.3203125,116.836883544922,164.046844482422,3.3203125,132.923355102539,54.2671051025391,3.3203125,188.099670410156,140.954162597656,3.3203125,204.559967041016,79.5238342285156,1.708984375,181.952423095703,89.1672668457031,-6.1123046875,204.277679443359,121.659515380859,1.708984375,212.968231201172,86.2631530761719,1.708984375,162.609130859375,110.589599609375,1.708984375,241.085968017578,114.131866455078,1.708984375,183.939697265625,159.156494140625,1.7080078125,228.3955078125,166.387680053711,3.3203125,147.183837890625,59.278564453125,-8.60546875,203.577423095703,38.4641418457031,3.3203125,154.512176513672,12.3422546386719,3.3203125,171.606353759766,95.8983459472656,3.3203125,206.232360839844,-18.7734985351563,3.3203125,251.380279541016,82.5687561035156,
  1187. 3.3203125,278.730834960938,19.5628662109375,3.3203125,86.9643707275391,21.9194488525391,-8.60546875,143.362548828125,1.093017578125,3.3203125,94.2956085205078,-25.0237274169922,3.3203125,111.389999389648,58.5335540771484,3.3203125,146.016311645508,-56.1516571044922,3.3203125,191.161758422852,45.2017974853516,3.3203125,218.510208129883,-17.7925262451172,3.3203125,131.365661621094,24.5961303710938,-8.60546875,72.3759155273438,12.9931030273438,3.3203125,100.655227661133,60.8427276611328,3.3203125,129.590087890625,-19.378662109375,3.3203125,40.2975921630859,60.4675140380859,3.3203125,54.5510864257813,-49.5563354492188,3.3203125,-1.61305236816406,-10.0271148681641,3.3203125,-30.3154144287109,66.9375152587891,-7.7255859375,22.0924224853516,48.1275787353516,3.3203125,-23.1283111572266,23.5396575927734,3.3203125,-8.00343322753906,101.062973022461,3.3203125,25.0303802490234,-4.84950256347656,3.3203125,65.9869079589844,89.3892517089844,3.3203125,91.8473663330078,31.2799835205078,2.8896484375,143.52587890625,-112.07373046875,-0.83203125,102.855880737305,-136.460525512695,6.2861328125,111.661209106445,-93.8270721435547,2.4833984375,153.966491699219,-144.589172363281,12.02734375,68.1267242431641,-110.156478881836,9.232421875,107.767791748047,-186.556427001953,15.0947265625,56.6325225830078,-172.693649291992,9.8583984375,93.6211395263672,-145.372024536133,1.16796875,78.7042083740234,-101.044815063477,6.076171875,118.834732055664,-118.734603881836,14.041015625,59.7876739501953,-147.581466674805,5.4833984375,113.518783569336,-72.1804351806641,16.1416015625,30.4270782470703,-92.1354217529297,11.78125,56.0259399414063,-45.5853881835938,3.0078125,141.734268188477,-108.314559936523,-3.40625,110.169296264648,-73.3062896728516,0.5751953125,154.112335205078,-73.6640319824219,7.087890625,111.693344116211,-124.060562133789,2.357421875,130.634063720703,-33.1569519042969,12.025390625,62.6781921386719,-85.1655578613281,10.0302734375,67.4480133056641,-32.1105804443359,6.208984375,116.039215087891,-110.932464599609,-7.2265625,154.956390380859,-134.770172119141,
  1188. 7.2724609375,115.366104125977,-147.780380249023,2.7001953125,139.437957763672,-86.2768859863281,3.814453125,150.482696533203,-178.600311279297,-3.9013671875,198.210693359375,-107.339111328125,-4.029296875,210.595184326172,-159.176300048828,-1.083984375,13.6769714355469,-113.044708251953,-10.59375,-26.3806304931641,-86.7175445556641,-1.083984375,16.4359893798828,-75.2710418701172,-1.083984375,-11.8905181884766,-137.091690063477,-1.0849609375,-18.1270294189453,-41.7774200439453,-1.083984375,-71.4517364501953,-112.367752075195,-1.0849609375,-81.3463897705078,-58.5065460205078,-1.083984375,-26.6565704345703,-131.43684387207,-12.1298828125,19.0207824707031,-99.5964050292969,-1.083984375,12.8948974609375,-150.709594726563,-1.083984375,-41.5558013916016,-93.4835357666016,-1.083984375,63.9202880859375,-127.874633789063,-1.0849609375,10.7982330322266,-39.9214935302734,-1.0849609375,73.1561737060547,-52.4737091064453,-1.083984375,47.6369018554688,-86.9910278320313,-12.1298828125,79.4606170654297,-132.68098449707,-1.083984375,28.34912109375,-126.53564453125,-1.083984375,85.5865173339844,-72.1048889160156,-1.083984375,51.1621398925781,-177.580047607422,-1.083984375,139.138854980469,-124.485168457031,-1.083984375,126.555503845215,-186.826324462891,-2.6953125,110.597427368164,-168.133041381836,-10.5166015625,145.045547485352,-148.963241577148,-2.6953125,137.084594726563,-184.529663085938,-2.6953125,102.802780151367,-140.340774536133,-2.6953125,174.663528442383,-172.076705932617,-2.6962890625,143.510009765625,-106.332763671875,-2.6962890625,186.542282104492,-119.630569458008,-1.083984375,66.1628875732422,-179.436721801758,-13.0087890625,107.411514282227,-223.162704467773,-1.083984375,51.848388671875,-224.732666015625,-1.083984375,104.325729370117,-157.502395629883,-1.0830078125,84.3290710449219,-275.606475830078,-1.083984375,169.843231201172,-204.926300048828,-1.0830078125,166.313034057617,-273.520935058594,-1.083984375,-4.38902282714844,-186.109725952148,-13.0087890625,36.8587341308594,-229.847320556641,-1.083984375,-18.7039031982422,-231.412887573242,
  1189. -1.083984375,33.7739410400391,-164.181137084961,-1.0830078125,13.7721862792969,-282.298126220703,-1.083984375,99.2891845703125,-211.605346679688,-1.0830078125,95.7620391845703,-280.188171386719,-1.083984375,36.5690155029297,-203.46125793457,-13.009765625,-21.4249420166016,-187.613418579102,-1.083984375,25.1869201660156,-157.337493896484,-1.083984375,15.4174346923828,-242.057174682617,-1.083984375,-29.0374908447266,-130.826553344727,-1.083984375,-65.2124633789063,-235.705642700195,-1.083984375,-97.9307250976563,-175.319381713867,-1.083984375,-89.4018707275391,-93.6206207275391,-12.1298828125,-50.8314361572266,-133.779678344727,-1.083984375,-102.268966674805,-135.685958862305,-1.0849609375,-54.2396087646484,-72.9837493896484,-1.083984375,-71.7655487060547,-182.534103393555,-1.083984375,6.83540344238281,-116.350143432617,-1.083984375,4.14872741699219,-179.896194458008,-4.1591796875,0.858230590820313,121.54768371582,-9.5009765625,-27.9841461181641,84.1017913818359,-2.0361328125,-35.5639190673828,126.911666870117,-4.1484375,22.4199676513672,95.0625457763672,1.962890625,-70.3557586669922,95.7926788330078,0.751953125,-5.56159973144531,39.0790252685547,4.5693359375,-58.4162139892578,33.3181610107422,0.8134765625,-33.7347869873047,72.2886505126953,-8.466796875,-63.4221038818359,108.282974243164,-1.9609375,-19.8182220458984,106.322402954102,3.6416015625,-64.5763092041016,57.8709564208984,-2.7646484375,-41.6803131103516,147.762069702148,4.5693359375,-112.152786254883,98.8140106201172,1.234375,-105.100723266602,151.543807983398,-4.11328125,-2.18161010742188,124.397491455078,-11.78125,-44.0578155517578,145.624801635742,-6.048828125,-3.17648315429688,161.208282470703,-1.234375,-24.5647735595703,98.7496795654297,-5.205078125,-39.8313751220703,190.37760925293,1.7431640625,-84.5186920166016,117.090682983398,-0.0595703125,-99.3068084716797,168.27229309082,-1.939453125,-25.2632598876953,112.571701049805,-13.8115234375,20.130126953125,104.709228515625,-0.9033203125,-12.5238800048828,77.9878387451172,-4.51171875,-12.3244781494141,144.093490600586,
  1190. -2.9580078125,31.5015716552734,62.0953216552734,-8.7626953125,50.2845611572266,145.936904907227,-8.396484375,80.67529296875,102.15380859375
  1191. }
  1192. PolygonVertexIndex: *2199 {
  1193. a: 0,1,-3,3,1,-1,1,4,-3,3,5,-2,6,1,-6,5,7,-7,4,1,-9,6,8,-2,8,9,-5,10,4,-10,9,11,-11,11,9,-13,9,8,-13,12,13,-12,6,14,-9,12,8,-15,15,14,-7,15,6,-8,14,16,-13,14,15,-17,7,17,-16,16,15,-18,17,7,-19,18,19,-18,19,16,-18,19,18,-21,20,21,-20,22,16,-20,21,22,-20,21,23,-23,23,16,-23,23,21,-25,12,16,-26,23,25,-17,13,12,-26,24,26,-24,25,23,-27,25,26,-14,26,24,-28,27,13,-27,28,29,-31,31,29,-29,29,32,-31,31,33,-30,34,29,-34,33,35,-35,32,29,-37,34,36,-30,36,37,-33,38,32,-38,37,39,-39,39,37,-41,37,36,-41,40,41,-40,34,42,-37,40,36,-43,43,42,-35,43,34,-36,42,44,-41,42,43,-45,35,45,-44,44,43,-46,45,35,-47,46,47,-46,47,44,-46,47,46,-49,48,49,-48,50,44,-48,49,50,-48,49,51,-51,51,44,-51,51,49,-53,40,44,-54,51,53,-45,41,40,-54,52,54,-52,53,51,-55,53,54,-42,54,52,-56,55,41,-55,56,57,-59,59,57,-57,57,60,-59,59,61,-58,62,57,-62,61,63,-63,60,57,-65,62,64,-58,64,65,-61,66,60,-66,65,67,-67,67,65,-69,65,64,-69,68,69,-68,62,70,-65,68,64,-71,71,70,-63,71,62,-64,70,72,-69,70,71,-73,63,73,-72,72,71,-74,73,63,-75,74,75,-74,75,72,-74,75,74,-77,76,77,-76,78,72,-76,77,78,-76,77,79,-79,79,72,-79,79,77,-81,68,72,-82,79,81,-73,69,68,-82,80,82,-80,81,79,-83,81,82,-70,82,80,-84,83,69,-83,84,85,-87,87,85,-85,85,88,-87,87,89,-86,90,85,-90,89,91,-91,88,85,-93,90,92,-86,92,93,-89,94,88,-94,93,95,-95,95,93,-97,93,92,-97,96,97,-96,90,98,-93,96,92,-99,99,98,-91,99,90,-92,98,100,-97,98,99,-101,91,101,-100,100,99,-102,101,91,-103,102,103,-102,103,100,-102,103,102,-105,104,105,-104,106,100,-104,105,106,-104,105,107,-107,107,100,-107,107,105,-109,96,100,-110,107,109,-101,97,96,-110,108,110,-108,109,107,-111,109,110,-98,110,108,-112,111,97,-111,112,113,-115,115,112,-115,113,112,-117,117,113,-117,112,115,-119,119,118,-116,116,120,-118,121,117,-121,116,112,-123,120,116,-123,112,118,-123,121,120,-124,123,120,-123,124,121,-124,122,118,-126,118,119,-126,126,123,-123,124,123,-127,127,125,-120,119,128,-128,129,122,-126,125,127,-130,129,126,-123,128,130,-128,127,130,-130,131,130,-129,132,130,-132,133,124,-127,133,126,-130,124,133,-135,130,135,-130,135,133,-130,
  1194. 130,132,-136,135,134,-134,134,135,-133,136,137,-139,139,136,-139,137,136,-141,141,137,-141,136,139,-143,143,142,-140,140,144,-142,145,141,-145,140,136,-147,144,140,-147,136,142,-147,145,144,-148,147,144,-147,148,145,-148,146,142,-150,142,143,-150,150,147,-147,148,147,-151,151,149,-144,143,152,-152,153,146,-150,149,151,-154,153,150,-147,152,154,-152,151,154,-154,155,154,-153,156,154,-156,157,148,-151,157,150,-154,148,157,-159,154,159,-154,159,157,-154,154,156,-160,159,158,-158,158,159,-157,160,161,-163,163,160,-163,161,160,-165,165,161,-165,160,163,-167,167,166,-164,164,168,-166,169,165,-169,164,160,-171,168,164,-171,160,166,-171,169,168,-172,171,168,-171,172,169,-172,170,166,-174,166,167,-174,174,171,-171,172,171,-175,175,173,-168,167,176,-176,177,170,-174,173,175,-178,177,174,-171,176,178,-176,175,178,-178,179,178,-177,180,178,-180,181,172,-175,181,174,-178,172,181,-183,178,183,-178,183,181,-178,178,180,-184,183,182,-182,182,183,-181,184,185,-187,187,184,-187,187,188,-190,186,190,-188,188,187,-191,188,190,-192,186,192,-191,191,190,-194,190,192,-194,193,192,-195,195,196,-198,198,195,-198,198,199,-201,197,201,-199,199,198,-202,199,201,-203,197,203,-202,202,201,-205,201,203,-205,204,203,-206,206,207,-209,209,206,-209,209,210,-212,208,212,-210,210,209,-213,210,212,-214,208,214,-213,213,212,-216,212,214,-216,215,214,-217,217,218,-220,220,217,-220,220,221,-223,219,223,-221,221,220,-224,221,223,-225,219,225,-224,224,223,-227,223,225,-227,226,225,-228,228,229,-231,231,228,-231,232,228,-232,231,230,-234,232,231,-235,234,231,-234,235,236,-238,235,237,-239,239,235,-239,237,240,-239,239,238,-242,238,240,-242,242,243,-245,245,242,-245,246,242,-246,245,244,-248,246,245,-249,248,245,-248,249,250,-252,249,251,-253,253,249,-253,251,254,-253,253,252,-256,252,254,-256,256,257,-259,259,256,-259,260,256,-260,259,258,-262,260,259,-263,262,259,-262,263,264,-266,263,265,-267,267,263,-267,265,268,-267,267,266,-270,266,268,-270,270,271,-273,273,271,-271,274,270,-273,270,275,-274,274,275,-271,276,273,-276,277,275,-275,276,275,-278,278,279,
  1195. -281,278,281,-280,280,279,-283,279,281,-284,279,283,-283,281,284,-284,285,282,-284,283,284,-286,286,287,-289,286,289,-288,288,287,-291,287,289,-292,291,290,-288,289,292,-292,293,290,-292,291,292,-294,294,295,-297,297,295,-295,298,294,-297,294,299,-298,298,299,-295,300,297,-300,301,299,-299,300,299,-302,302,303,-305,305,303,-303,306,302,-305,302,307,-306,306,307,-303,308,305,-308,309,307,-307,308,307,-310,310,311,-313,310,312,-314,311,314,-313,312,315,-314,312,314,-316,313,315,-317,314,317,-316,315,317,-317,318,319,-321,318,320,-322,319,322,-321,320,323,-322,320,322,-324,321,323,-325,322,325,-324,323,325,-325,326,327,-329,329,327,-327,330,326,-329,326,331,-330,330,331,-327,332,329,-332,333,331,-331,332,331,-334,334,335,-337,334,337,-336,336,335,-339,335,337,-340,335,339,-339,337,340,-340,341,338,-340,339,340,-342,342,343,-345,342,345,-344,344,343,-347,343,345,-348,347,346,-344,345,348,-348,349,346,-348,347,348,-350,350,351,-353,353,351,-351,354,350,-353,350,355,-354,354,355,-351,356,353,-356,357,355,-355,356,355,-358,358,359,-361,361,359,-359,362,358,-361,358,363,-362,362,363,-359,364,361,-364,365,363,-363,364,363,-366,366,367,-369,366,368,-370,367,370,-369,368,371,-370,368,370,-372,369,371,-373,370,373,-372,371,373,-373,374,375,-377,377,375,-375,378,374,-377,374,379,-378,378,379,-375,380,377,-380,381,379,-379,380,379,-382,382,383,-385,382,385,-384,384,383,-387,383,385,-388,383,387,-387,385,388,-388,389,386,-388,387,388,-390,390,391,-393,390,393,-392,392,391,-395,391,393,-396,395,394,-392,393,396,-396,397,394,-396,395,396,-398,398,399,-401,401,399,-399,402,398,-401,398,403,-402,402,403,-399,404,401,-404,405,403,-403,404,403,-406,406,407,-409,409,407,-407,410,406,-409,406,411,-410,410,411,-407,412,409,-412,413,411,-411,412,411,-414,414,415,-417,414,416,-418,415,418,-417,416,419,-418,416,418,-420,417,419,-421,418,421,-420,419,421,-421,422,423,-425,422,425,-424,424,423,-427,423,425,-428,426,423,-429,428,423,-428,429,430,-432,429,432,-431,431,430,-434,430,432,-435,433,430,-436,435,430,-435,436,437,-439,436,439,-438,438,
  1196. 437,-441,437,439,-442,440,437,-443,442,437,-442,443,444,-446,443,446,-445,445,444,-448,444,446,-449,447,444,-450,449,444,-449,450,451,-453,450,453,-452,452,451,-455,451,453,-456,454,451,-457,456,451,-456,457,458,-460,457,460,-459,459,458,-462,458,460,-463,461,458,-464,463,458,-463,464,465,-467,464,467,-466,466,465,-469,465,467,-470,468,465,-471,470,465,-470,471,472,-474,471,474,-473,473,472,-476,472,474,-477,475,472,-478,477,472,-477,478,479,-481,478,481,-480,480,479,-483,479,481,-484,482,479,-485,484,479,-484,485,486,-488,485,488,-487,487,486,-490,486,488,-491,489,486,-492,491,486,-491,492,493,-495,492,495,-494,494,493,-497,493,495,-498,496,493,-499,498,493,-498,499,500,-502,499,502,-501,501,500,-504,500,502,-505,503,500,-506,505,500,-505,506,507,-509,506,509,-508,508,507,-511,507,509,-512,510,507,-513,512,507,-512,513,514,-516,513,516,-515,515,514,-518,514,516,-519,517,514,-520,519,514,-519,520,521,-523,520,523,-522,522,521,-525,521,523,-526,524,521,-527,526,521,-526,527,528,-530,527,530,-529,529,528,-532,528,530,-533,531,528,-534,533,528,-533,534,535,-537,534,537,-536,536,535,-539,535,537,-540,538,535,-541,540,535,-540,541,542,-544,541,544,-543,543,542,-546,542,544,-547,545,542,-548,547,542,-547,548,549,-551,548,551,-550,550,549,-553,549,551,-554,552,549,-555,554,549,-554,555,556,-558,555,558,-557,557,556,-560,556,558,-561,559,556,-562,561,556,-561,562,563,-565,562,565,-564,564,563,-567,563,565,-568,566,563,-569,568,563,-568,569,570,-572,569,572,-571,571,570,-574,570,572,-575,573,570,-576,575,570,-575,576,577,-579,576,579,-578,578,577,-581,577,579,-582,580,577,-583,582,577,-582,583,584,-586,583,586,-585,585,584,-588,584,586,-589,587,584,-590,589,584,-589,590,591,-593,590,593,-592,592,591,-595,591,593,-596,594,591,-597,596,591,-596,597,598,-600,597,600,-599,599,598,-602,598,600,-603,601,598,-604,603,598,-603,604,605,-607,604,607,-606,606,605,-609,605,607,-610,608,605,-611,610,605,-610,611,612,-614,611,614,-613,613,612,-616,612,614,-617,615,612,-618,617,612,-617,618,619,-621,618,621,-620,620,619,-623,619,621,-624,
  1197. 622,619,-625,624,619,-624,625,626,-628,625,628,-627,627,626,-630,626,628,-631,629,626,-632,631,626,-631,632,633,-635,632,635,-634,634,633,-637,633,635,-638,636,633,-639,638,633,-638,639,640,-642,639,642,-641,641,640,-644,640,642,-645,643,640,-646,645,640,-645,646,647,-649,646,649,-648,648,647,-651,647,649,-652,650,647,-653,652,647,-652,653,654,-656,653,656,-655,655,654,-658,654,656,-659,657,654,-660,659,654,-659,660,661,-663,660,663,-662,662,661,-665,661,663,-666,664,661,-667,666,661,-666,667,668,-670,667,670,-669,669,668,-672,668,670,-673,671,668,-674,673,668,-673,674,675,-677,674,677,-676,676,675,-679,675,677,-680,678,675,-681,680,675,-680,681,682,-684,681,684,-683,683,682,-686,682,684,-687,685,682,-688,687,682,-687,688,689,-691,688,691,-690,690,689,-693,689,691,-694,692,689,-695,694,689,-694,695,696,-698,695,698,-697,697,696,-700,696,698,-701,699,696,-702,701,696,-701
  1198. }
  1199. Edges: *1359 {
  1200. a: 0,1,2,3,5,6,7,9,10,12,14,15,16,19,20,21,24,25,27,29,30,31,34,35,37,39,40,42,43,47,48,50,53,54,55,58,60,61,65,67,68,69,70,72,76,77,78,79,81,83,84,87,88,90,94,95,97,98,99,104,105,106,110,112,115,116,117,120,121,122,123,125,126,127,129,130,132,134,135,136,139,140,141,144,145,147,149,150,151,154,155,157,159,160,162,163,167,168,170,173,174,175,178,180,181,185,187,188,189,190,192,196,197,198,199,201,203,204,207,208,210,214,215,217,218,219,224,225,226,230,232,235,236,237,240,241,242,243,245,246,247,249,250,252,254,255,256,259,260,261,264,265,267,269,270,271,274,275,277,279,280,282,283,287,288,290,293,294,295,298,300,301,305,307,308,309,310,312,316,317,318,319,321,323,324,327,328,330,334,335,337,338,339,344,345,346,350,352,355,356,357,360,361,362,363,365,366,367,369,370,372,374,375,376,379,380,381,384,385,387,389,390,391,394,395,397,399,400,402,403,407,408,410,413,414,415,418,420,421,425,427,428,429,430,432,436,437,438,439,441,443,444,447,448,450,454,455,457,458,459,464,465,466,470,472,475,476,477,480,481,482,483,485,487,488,489,491,493,494,495,497,498,499,501,503,505,506,509,511,514,515,518,519,521,523,524,526,528,530,533,534,536,537,538,540,542,544,546,549,550,553,555,557,558,560,561,563,566,568,569,570,571,573,577,579,584,585,586,587,588,590,592,593,594,596,598,599,600,602,603,604,606,608,610,611,614,616,619,620,623,624,626,628,629,631,633,635,638,639,641,642,643,645,647,649,651,654,655,658,660,662,663,665,666,668,671,673,674,675,676,678,682,684,689,690,691,692,693,695,697,698,699,701,703,704,705,707,708,709,711,713,715,716,719,721,724,725,728,729,731,733,734,736,738,740,743,744,746,747,748,750,752,754,756,759,760,763,765,767,768,770,771,773,776,778,779,780,781,783,787,789,794,795,796,797,798,800,801,802,803,804,805,809,811,812,813,814,817,818,820,823,824,825,826,827,828,830,831,832,833,834,835,839,841,842,843,844,847,848,850,853,854,855,856,857,858,860,861,862,863,864,865,869,871,872,873,874,877,878,880,883,884,885,886,887,888,890,891,892,893,894,895,899,901,902,903,904,907,908,910,913,914,915,916,917,
  1201. 918,920,921,923,925,926,928,929,932,933,934,935,937,938,939,941,942,943,946,947,949,951,952,953,954,956,957,959,961,962,964,965,968,969,970,971,973,974,975,977,978,979,982,983,985,987,988,989,990,992,993,995,997,998,1000,1001,1004,1005,1006,1007,1009,1010,1011,1013,1014,1015,1018,1019,1021,1023,1024,1025,1026,1028,1029,1031,1032,1033,1035,1038,1040,1041,1043,1046,1047,1048,1049,1050,1051,1054,1055,1057,1058,1060,1062,1063,1065,1067,1069,1071,1072,1073,1074,1075,1078,1079,1081,1082,1083,1086,1087,1089,1091,1093,1095,1096,1097,1098,1100,1101,1103,1104,1105,1107,1110,1112,1113,1115,1118,1119,1120,1121,1122,1124,1125,1127,1128,1129,1131,1134,1136,1137,1139,1142,1143,1144,1145,1147,1148,1149,1150,1152,1153,1156,1159,1160,1161,1162,1165,1167,1168,1169,1171,1172,1173,1174,1176,1177,1180,1183,1184,1185,1186,1189,1191,1192,1193,1194,1196,1197,1199,1200,1201,1203,1206,1208,1209,1211,1214,1215,1216,1217,1218,1219,1222,1223,1225,1226,1228,1230,1231,1233,1235,1237,1239,1240,1241,1242,1243,1246,1247,1249,1250,1251,1254,1255,1257,1259,1261,1263,1264,1265,1266,1268,1269,1271,1272,1273,1275,1278,1280,1281,1283,1286,1287,1288,1289,1290,1292,1293,1295,1296,1297,1299,1302,1304,1305,1307,1310,1311,1312,1313,1315,1316,1317,1318,1320,1321,1324,1327,1328,1329,1330,1333,1335,1336,1337,1338,1340,1341,1343,1344,1345,1347,1350,1352,1353,1355,1358,1359,1360,1361,1362,1363,1366,1367,1369,1370,1372,1374,1375,1377,1379,1381,1383,1384,1385,1386,1387,1390,1391,1393,1394,1395,1398,1399,1401,1403,1405,1407,1408,1409,1410,1412,1413,1415,1416,1417,1419,1422,1424,1425,1427,1430,1431,1432,1433,1434,1436,1437,1439,1440,1441,1443,1446,1448,1449,1451,1454,1455,1456,1457,1459,1460,1461,1462,1464,1465,1468,1471,1472,1473,1474,1477,1479,1480,1481,1482,1483,1486,1487,1489,1490,1492,1493,1496,1497,1498,1499,1500,1501,1504,1505,1507,1508,1510,1511,1514,1515,1516,1517,1518,1519,1522,1523,1525,1526,1528,1529,1532,1533,1534,1535,1536,1537,1540,1541,1543,1544,1546,1547,1550,1551,1552,1553,1554,1555,1558,1559,1561,1562,1564,1565,1568,1569,1570,1571,1572,1573,1576,1577,
  1202. 1579,1580,1582,1583,1586,1587,1588,1589,1590,1591,1594,1595,1597,1598,1600,1601,1604,1605,1606,1607,1608,1609,1612,1613,1615,1616,1618,1619,1622,1623,1624,1625,1626,1627,1630,1631,1633,1634,1636,1637,1640,1641,1642,1643,1644,1645,1648,1649,1651,1652,1654,1655,1658,1659,1660,1661,1662,1663,1666,1667,1669,1670,1672,1673,1676,1677,1678,1679,1680,1681,1684,1685,1687,1688,1690,1691,1694,1695,1696,1697,1698,1699,1702,1703,1705,1706,1708,1709,1712,1713,1714,1715,1716,1717,1720,1721,1723,1724,1726,1727,1730,1731,1732,1733,1734,1735,1738,1739,1741,1742,1744,1745,1748,1749,1750,1751,1752,1753,1756,1757,1759,1760,1762,1763,1766,1767,1768,1769,1770,1771,1774,1775,1777,1778,1780,1781,1784,1785,1786,1787,1788,1789,1792,1793,1795,1796,1798,1799,1802,1803,1804,1805,1806,1807,1810,1811,1813,1814,1816,1817,1820,1821,1822,1823,1824,1825,1828,1829,1831,1832,1834,1835,1838,1839,1840,1841,1842,1843,1846,1847,1849,1850,1852,1853,1856,1857,1858,1859,1860,1861,1864,1865,1867,1868,1870,1871,1874,1875,1876,1877,1878,1879,1882,1883,1885,1886,1888,1889,1892,1893,1894,1895,1896,1897,1900,1901,1903,1904,1906,1907,1910,1911,1912,1913,1914,1915,1918,1919,1921,1922,1924,1925,1928,1929,1930,1931,1932,1933,1936,1937,1939,1940,1942,1943,1946,1947,1948,1949,1950,1951,1954,1955,1957,1958,1960,1961,1964,1965,1966,1967,1968,1969,1972,1973,1975,1976,1978,1979,1982,1983,1984,1985,1986,1987,1990,1991,1993,1994,1996,1997,2000,2001,2002,2003,2004,2005,2008,2009,2011,2012,2014,2015,2018,2019,2020,2021,2022,2023,2026,2027,2029,2030,2032,2033,2036,2037,2038,2039,2040,2041,2044,2045,2047,2048,2050,2051,2054,2055,2056,2057,2058,2059,2062,2063,2065,2066,2068,2069,2072,2073,2074,2075,2076,2077,2080,2081,2083,2084,2086,2087,2090,2091,2092,2093,2094,2095,2098,2099,2101,2102,2104,2105,2108,2109,2110,2111,2112,2113,2116,2117,2119,2120,2122,2123,2126,2127,2128,2129,2130,2131,2134,2135,2137,2138,2140,2141,2144,2145,2146,2147,2148,2149,2152,2153,2155,2156,2158,2159,2162,2163,2164,2165,2166,2167,2170,2171,2173,2174,2176,2177,2180,2181,2182,2183,2184,2185,2188,2189,2191,2192,
  1203. 2194,2195,2198
  1204. }
  1205. GeometryVersion: 124
  1206. LayerElementNormal: 0 {
  1207. Version: 102
  1208. Name: ""
  1209. MappingInformationType: "ByPolygonVertex"
  1210. ReferenceInformationType: "Direct"
  1211. Normals: *6597 {
  1212. a: -0.965813159942627,-0.212007775902748,-0.149190649390221,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.928903520107269,-0.0157441273331642,-0.369987010955811,-0.942518174648285,-0.306318402290344,0.133523404598236,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.965813159942627,-0.212007775902748,-0.149190649390221,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.928903520107269,-0.0157441273331642,-0.369987010955811,-0.942518174648285,-0.306318402290344,0.133523404598236,-0.941357553005219,-0.27456259727478,0.196116149425507,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.941357553005219,-0.27456259727478,0.196116149425507,-0.941357553005219,-0.27456259727478,0.196116149425507,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.950724482536316,-0.0471433624625206,-0.306431859731674,-0.931533813476563,-0.165781438350677,-0.323668509721756,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.915459871292114,0.173621714115143,-0.363027185201645,-0.950724482536316,-0.0471433624625206,-0.306431859731674,-0.915459871292114,0.173621714115143,-0.363027185201645,-0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,
  1213. -0.96751469373703,-0.0235979184508324,-0.251711130142212,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.915459871292114,0.173621714115143,-0.363027185201645,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.987625539302826,-0.102713048458099,-0.118515066802502,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.97541081905365,-0.180922970175743,0.125859454274178,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.983033776283264,-0.157285392284393,0.0943712368607521,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.942809045314789,-0.235702261328697,0.235702261328697,-0.956918001174927,-0.142351418733597,0.253069221973419,-0.956918001174927,-0.142351418733597,0.253069221973419,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.984954476356506,-0.118194542825222,0.126074180006981,
  1214. -0.987409830093384,0.00789927877485752,0.15798556804657,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.984954476356506,-0.118194542825222,0.126074180006981,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.956918001174927,-0.142351418733597,0.253069221973419,-0.97324526309967,0.0313950069248676,0.227613806724548,-0.97324526309967,0.0313950069248676,0.227613806724548,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.987409830093384,0.00789927877485752,0.15798556804657,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.991480767726898,0.118033424019814,0.0550822615623474,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.975048899650574,0.204445719718933,0.0864962786436081,-0.972582757472992,0.189772248268127,-0.13442200422287,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.986179888248444,3.6787954462067e-017,-0.165678218007088,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.972582757472992,0.189772248268127,-0.13442200422287,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.993111670017242,0.0867002233862877,-0.0788183808326721,
  1215. -0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.993111670017242,0.0867002233862877,-0.0788183808326721,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.987286627292633,-0.0710846334695816,-0.142169266939163,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.972582757472992,0.189772248268127,-0.13442200422287,-0.946261584758759,0.00788551289588213,-0.323306024074554,-0.946261584758759,0.00788551289588213,-0.323306024074554,-0.912255346775055,0.0235928110778332,-0.408942043781281,-0.960957646369934,0.0236301068216562,-0.27568456530571,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.929681599140167,-0.244238391518593,-0.275753021240234,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.929681599140167,-0.244238391518593,-0.275753021240234,-0.942663609981537,-0.149255067110062,0.298510134220123,-0.942750871181488,-0.0864188298583031,0.322106540203094,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.942750871181488,-0.0864188298583031,0.322106540203094,-0.942750871181488,-0.0864188298583031,0.322106540203094,-0.943129301071167,-0.0392970517277718,0.330095231533051,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.980888664722443,-0.174028635025024,0.0870143175125122,-0.986948072910309,-0.157911688089371,-0.0315823368728161,
  1216. -0.966767251491547,-0.180777609348297,-0.180777609348297,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.951900541782379,-0.228141441941261,-0.204540595412254,-0.931446731090546,-0.331531882286072,-0.149978712201118,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.914861798286438,-0.086754135787487,-0.394336968660355,-0.951900541782379,-0.228141441941261,-0.204540595412254,-0.914861798286438,-0.086754135787487,-0.394336968660355,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.966767251491547,-0.180777609348297,-0.180777609348297,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.914861798286438,-0.086754135787487,-0.394336968660355,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.975169599056244,-0.0629141703248024,0.21233531832695,-0.943129301071167,-0.0392970517277718,0.330095231533051,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.943129301071167,-0.0392970517277718,0.330095231533051,
  1217. -0.984740495681763,-0.0157558489590883,0.173314332962036,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.943129301071167,-0.0392970517277718,0.330095231533051,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.987625539302826,0.102713048458099,0.118515066802502,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.987625539302826,0.102713048458099,0.118515066802502,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.984740495681763,-0.0157558489590883,0.173314332962036,-0.987625539302826,0.102713048458099,0.118515066802502,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.972496688365936,0.164697006344795,0.164697006344795,-0.972496688365936,0.164697006344795,0.164697006344795,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.987625539302826,0.102713048458099,0.118515066802502,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.987625539302826,0.102713048458099,0.118515066802502,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.987625539302826,0.102713048458099,0.118515066802502,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.991542160511017,0.125910118222237,-0.0314775295555592,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.975169599056244,0.21233531832695,-0.0629141703248024,-0.971368849277496,0.0631784573197365,-0.229021921753883,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.993760168552399,-0.110417798161507,0.0157739706337452,
  1218. -0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.986671388149261,-0.10261382162571,-0.126293942332268,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.971368849277496,0.0631784573197365,-0.229021921753883,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.992864966392517,0.0157597605139017,-0.118198208510876,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.986671268939972,-0.149974033236504,-0.0631469637155533,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.971368849277496,0.0631784573197365,-0.229021921753883,-0.945321559906006,-0.196941986680031,-0.259963423013687,-0.945321559906006,-0.196941986680031,-0.259963423013687,-0.911241471767426,-0.235665902495384,-0.33778777718544,-0.961913108825684,-0.149806141853333,-0.228651478886604,-0.955544471740723,-0.276397138834,-0.102661795914173,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.926952540874481,-0.125688478350639,-0.353498846292496,-0.93226033449173,-0.30811995267868,0.18961226940155,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.955544471740723,-0.276397138834,-0.102661795914173,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.926952540874481,-0.125688478350639,-0.353498846292496,-0.93226033449173,-0.30811995267868,0.18961226940155,-0.92985475063324,-0.267924249172211,0.252164006233215,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.92985475063324,-0.267924249172211,0.252164006233215,
  1219. -0.92985475063324,-0.267924249172211,0.252164006233215,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.945938169956207,-0.141890704631805,-0.291664272546768,-0.922834634780884,-0.260286688804626,-0.283949106931686,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.917738795280457,0.0627513751387596,-0.39219605922699,-0.945938169956207,-0.141890704631805,-0.291664272546768,-0.917738795280457,0.0627513751387596,-0.39219605922699,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.96239185333252,-0.118326872587204,-0.244542196393013,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.917738795280457,0.0627513751387596,-0.39219605922699,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.981033563613892,-0.164813637733459,-0.102027483284473,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.967754244804382,-0.196698009967804,0.157358407974243,-0.976771771907806,-0.173298224806786,0.126035064458847,
  1220. -0.967754244804382,-0.196698009967804,0.157358407974243,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.976771771907806,-0.173298224806786,0.126035064458847,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.935819208621979,-0.220192760229111,0.275240927934647,-0.952962756156921,-0.126011595129967,0.275650352239609,-0.952962756156921,-0.126011595129967,0.275650352239609,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.952962756156921,-0.126011595129967,0.275650352239609,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.974958479404449,0.0314502716064453,0.220151916146278,-0.982729911804199,0.180822312831879,0.0393091961741447,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.982729911804199,0.180822312831879,0.0393091961741447,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.982729911804199,0.180822312831879,0.0393091961741447,
  1221. -0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.99571305513382,0.0869273319840431,0.0316099375486374,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.982729911804199,0.180822312831879,0.0393091961741447,-0.977712452411652,0.118271671235561,-0.173465117812157,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.984954476356506,-0.0709167197346687,-0.157592713832855,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.977712452411652,0.118271671235561,-0.173465117812157,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.981941223144531,-0.141399532556534,-0.125688478350639,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.977712452411652,0.118271671235561,-0.173465117812157,-0.942082524299622,-0.0942082554101944,-0.321878165006638,-0.942082524299622,-0.0942082554101944,-0.321878165006638,-0.907087981700897,-0.0946526676416397,-0.410161525011063,-0.95881849527359,-0.0707325041294098,-0.275070875883102,-0.963972449302673,-0.188092187047005,-0.188092187047005,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.93066418170929,0.0473219081759453,-0.362801313400269,-0.943362414836884,-0.322315484285355,0.0786135345697403,
  1222. -0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.963972449302673,-0.188092187047005,-0.188092187047005,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.93066418170929,0.0473219081759453,-0.362801313400269,-0.943362414836884,-0.322315484285355,0.0786135345697403,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.942663609981537,-0.298510134220123,0.149255067110062,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.980735242366791,-0.181910574436188,-0.0711823925375938,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.932027637958527,-0.102681010961533,-0.347535759210587,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.916002094745636,0.236897110939026,-0.323759347200394,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.916002094745636,0.236897110939026,-0.323759347200394,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.967664361000061,0.0157343801110983,-0.251750081777573,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.986948072910309,0.0315823368728161,-0.157911688089371,
  1223. -0.911353945732117,0.0942779928445816,-0.400681465864182,-0.916002094745636,0.236897110939026,-0.323759347200394,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.974356293678284,-0.204300507903099,0.0942925438284874,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.982396006584167,-0.172901704907417,0.0707325115799904,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.942779958248138,-0.274977475404739,0.188555985689163,-0.956260323524475,-0.181768491864204,0.229186356067657,-0.956260323524475,-0.181768491864204,0.229186356067657,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.984587788581848,-0.141780629754066,0.102397121489048,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.956260323524475,-0.181768491864204,0.229186356067657,
  1224. -0.973605275154114,-0.0157033111900091,0.227698013186455,-0.973605275154114,-0.0157033111900091,0.227698013186455,-0.974928438663483,0.188695833086967,0.117934897542,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.974928438663483,0.188695833086967,0.117934897542,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.988520741462708,-0.015816330909729,0.150255158543587,-0.974928438663483,0.188695833086967,0.117934897542,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.992218255996704,0.102371722459793,0.0708727315068245,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.974928438663483,0.188695833086967,0.117934897542,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.911353945732117,0.0942779928445816,-0.400681465864182,-0.986948072910309,0.0315823368728161,-0.157911688089371,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.992741703987122,0.10242572426796,-0.0630312189459801,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.911353945732117,0.0942779928445816,-0.400681465864182,
  1225. -0.960868239402771,0.070883721113205,-0.267782926559448,-0.971580982208252,0.213273867964745,-0.102687411010265,-0.944413602352142,0.0629609003663063,-0.322674632072449,-0.944413602352142,0.0629609003663063,-0.322674632072449,-0.911353945732117,0.0942779928445816,-0.400681465864182,-0.960868239402771,0.070883721113205,-0.267782926559448,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.973005533218384,0.188323646783829,-0.133395910263062,-0.980550527572632,-0.0078444043174386,-0.196110099554062,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.980550527572632,-0.0078444043174386,-0.196110099554062,-0.973005533218384,0.188323646783829,-0.133395910263062,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.949348151683807,0.313834100961685,0.0156917050480843,-0.973005533218384,0.188323646783829,-0.133395910263062,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.969406008720398,-0.181271031498909,-0.165508329868317,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.949348151683807,0.313834100961685,0.0156917050480843,-0.951900541782379,0.228141441941261,0.204540595412254,-0.949348151683807,0.313834100961685,0.0156917050480843,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.984954476356506,0.157592713832855,-0.0709167197346687,-0.999938011169434,-0.0078735277056694,0.0078735277056694,
  1226. -0.993389487266541,-0.0315361730754375,-0.110376611351967,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.951900541782379,0.228141441941261,0.204540595412254,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.983764171600342,0.110181584954262,0.141662031412125,-0.983764171600342,0.110181584954262,0.141662031412125,-0.989674627780914,0.141382083296776,0.0235636811703444,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.954978823661804,0.142062962055206,0.260448753833771,-0.951900541782379,0.228141441941261,0.204540595412254,-0.983764171600342,0.110181584954262,0.141662031412125,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990806221961975,-0.110089585185051,-0.0786354094743729,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.983764171600342,0.110181584954262,0.141662031412125,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.954978823661804,0.142062962055206,0.260448753833771,-0.983764171600342,0.110181584954262,0.141662031412125,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.944794058799744,-0.267691612243652,-0.188958793878555,-0.939809024333954,-0.284311980009079,-0.189541324973106,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.999938011169434,0.0078735277056694,-0.0078735277056694,
  1227. -0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.939809024333954,-0.284311980009079,-0.189541324973106,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.974898219108582,-0.16510371863842,-0.149379566311836,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.939809024333954,-0.284311980009079,-0.189541324973106,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.987687170505524,-0.110620968043804,0.110620968043804,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.954978823661804,0.142062962055206,0.260448753833771,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.997898638248444,0.0157149396836758,0.0628597587347031,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.954978823661804,0.142062962055206,0.260448753833771,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.974356293678284,0.0942925438284874,0.204300507903099,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.974356293678284,0.0942925438284874,0.204300507903099,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.974356293678284,0.0942925438284874,0.204300507903099,
  1228. -0.989918947219849,-0.00785649940371513,0.141416981816292,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.973455131053925,0.211962014436722,0.0863548964262009,-0.981456816196442,0.157033085823059,-0.109923161566257,-0.968924522399902,0.0393871739506722,-0.244200497865677,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.981456816196442,0.157033085823059,-0.109923161566257,-0.973455131053925,0.211962014436722,0.0863548964262009,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.951900541782379,0.14947198331356,0.267476171255112,-0.973455131053925,0.211962014436722,0.0863548964262009,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.968924522399902,0.0393871739506722,-0.244200497865677,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.968924522399902,0.0393871739506722,-0.244200497865677,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.951900541782379,0.14947198331356,0.267476171255112,-0.950724482536316,-0.0471433624625206,0.306431859731674,-0.951900541782379,0.14947198331356,0.267476171255112,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.985352337360382,0.141890734434128,0.0945938304066658,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.950724482536316,-0.0471433624625206,0.306431859731674,
  1229. -0.989522039890289,0.0549734458327293,0.133506938815117,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.989522039890289,0.0549734458327293,0.133506938815117,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.950724482536316,-0.0471433624625206,0.306431859731674,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.991020619869232,2.96893915388799e-017,-0.133709132671356,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.982912182807922,-0.062906377017498,0.172992557287216,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.94382917881012,0.00786524266004562,-0.330340176820755,-0.937909722328186,0.00788159482181072,-0.346790164709091,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.996179699897766,-0.00790618825703859,-0.0869680717587471,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,
  1230. -0.937909722328186,0.00788159482181072,-0.346790164709091,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.974687337875366,0.039301909506321,-0.220090687274933,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.937909722328186,0.00788159482181072,-0.346790164709091,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.986948072910309,-0.157911688089371,-0.0315823368728161,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.998114347457886,-0.0392958410084248,0.0471550077199936,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.974928438663483,-0.117934897542,0.188695833086967,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991757214069366,-0.0944530740380287,-0.0865819826722145,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.974928438663483,-0.117934897542,0.188695833086967,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.974928438663483,-0.117934897542,0.188695833086967,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.978077471256256,-0.189305320382118,0.0867649391293526,
  1231. -0.993605554103851,0.0236572753638029,-0.11040061712265,-0.973455131053925,0.227662891149521,-0.0235513336956501,-0.980490148067474,0.0941270589828491,-0.172566279768944,-0.969074904918671,-0.0709079131484032,-0.236359730362892,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.980490148067474,0.0941270589828491,-0.172566279768944,-0.973455131053925,0.227662891149521,-0.0235513336956501,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.950255274772644,0.25916051864624,0.172773689031601,-0.973455131053925,0.227662891149521,-0.0235513336956501,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.969074904918671,-0.0709079131484032,-0.236359730362892,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.969074904918671,-0.0709079131484032,-0.236359730362892,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.950255274772644,0.25916051864624,0.172773689031601,-0.9520183801651,0.094415046274662,0.291113048791885,-0.950255274772644,0.25916051864624,0.172773689031601,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.985903739929199,0.165631830692291,0.0236616898328066,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.993605554103851,0.0236572753638029,-0.11040061712265,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.9520183801651,0.094415046274662,0.291113048791885,-0.989461004734039,0.109940111637115,0.0942343771457672,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.983216226100922,0.0235971882939339,0.180911779403687,
  1232. -0.989461004734039,0.109940111637115,0.0942343771457672,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.9520183801651,0.094415046274662,0.291113048791885,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.990530550479889,-0.0550294741988182,-0.125781655311584,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.983216226100922,0.0235971882939339,0.180911779403687,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.944764852523804,-0.133841678500175,-0.299175530672073,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.995744228363037,-0.0474163927137852,-0.0790273174643517,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.975169599056244,-0.0629141703248024,-0.21233531832695,-0.975169599056244,-0.0629141703248024,-0.21233531832695,
  1233. -0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.954028487205505,-0.00788453221321106,0.299612253904343,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.973455131053925,-0.0235513336956501,0.227662891149521,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.991542160511017,-0.125910118222237,-0.0314775295555592,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.973455131053925,-0.0235513336956501,0.227662891149521,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.973455131053925,-0.0235513336956501,0.227662891149521,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.967754244804382,-0.196698009967804,-0.157358407974243,-0.981456816196442,-0.109923161566257,-0.157033085823059,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.926695227622986,-0.36910742521286,-0.0706801414489746,
  1234. -0.967754244804382,-0.196698009967804,-0.157358407974243,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.926695227622986,-0.36910742521286,-0.0706801414489746,-0.896859645843506,-0.275351643562317,-0.346156388521194,-0.928213536739349,-0.361845970153809,0.0865283831954002,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.926695227622986,-0.36910742521286,-0.0706801414489746,-0.896859645843506,-0.275351643562317,-0.346156388521194,-0.926695227622986,-0.36910742521286,-0.0706801414489746,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.896859645843506,-0.275351643562317,-0.346156388521194,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.73571252822876,-0.166128635406494,-0.656603634357452,-0.956529200077057,-0.245061203837395,-0.158104002475739,-0.827464580535889,0.0472836866974831,-0.559523582458496,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.73571252822876,-0.166128635406494,-0.656603634357452,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.903023898601532,-0.133490487933159,-0.408323854207993,-0.827464580535889,0.0472836866974831,-0.559523582458496,-0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.827464580535889,0.0472836866974831,-0.559523582458496,-0.821268796920776,0.0473808944225311,-0.568570673465729,-0.96778416633606,-0.25178125500679,-5.59066692955113e-017,-0.980580687522888,-0.18827149271965,-0.054912518709898,-0.955812692642212,-0.292273312807083,0.0315971150994301,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.96778416633606,-0.25178125500679,-5.59066692955113e-017,-0.955812692642212,-0.292273312807083,0.0315971150994301,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.928989887237549,-0.228311076760292,0.291293442249298,-0.955812692642212,-0.292273312807083,0.0315971150994301,
  1235. -0.904027700424194,-0.361611098051071,-0.227972209453583,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.924190640449524,-0.336781322956085,0.180138856172562,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.896637678146362,-0.432588368654251,-0.0943829193711281,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.735758602619171,-0.537973999977112,-0.411391884088516,-0.955812692642212,-0.292273312807083,0.0315971150994301,-0.827361881732941,-0.315185457468033,-0.464898556470871,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.735758602619171,-0.537973999977112,-0.411391884088516,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.804572522640228,-0.378622382879257,-0.457502037286758,-0.904027700424194,-0.361611098051071,-0.227972209453583,-0.827361881732941,-0.315185457468033,-0.464898556470871,-0.804572522640228,-0.378622382879257,-0.457502037286758,-0.804572522640228,-0.378622382879257,-0.457502037286758,-0.827361881732941,-0.315185457468033,-0.464898556470871,-0.821781396865845,-0.316069781780243,-0.474104672670364,-0.958581686019897,-0.259288489818573,-0.117858409881592,-0.974416494369507,-0.180738538503647,-0.133589342236519,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.958581686019897,-0.259288489818573,-0.117858409881592,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.884085118770599,-0.370999991893768,-0.284170210361481,-0.915203392505646,-0.370815187692642,0.157793685793877,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.884085118770599,-0.370999991893768,-0.284170210361481,-0.909559190273285,-0.415574461221695,-9.2276067058904e-017,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.884085118770599,-0.370999991893768,-0.284170210361481,
  1236. -0.894868075847626,-0.251191049814224,-0.368936836719513,-0.722174167633057,-0.321838468313217,-0.61227810382843,-0.94602632522583,-0.30745854973793,-0.102486178278923,-0.821524977684021,-0.102690622210503,-0.560848772525787,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.722174167633057,-0.321838468313217,-0.61227810382843,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.799416244029999,-0.156748279929161,-0.579968690872192,-0.894868075847626,-0.251191049814224,-0.368936836719513,-0.821524977684021,-0.102690622210503,-0.560848772525787,-0.799416244029999,-0.156748279929161,-0.579968690872192,-0.799416244029999,-0.156748279929161,-0.579968690872192,-0.821524977684021,-0.102690622210503,-0.560848772525787,-0.81851714849472,-0.0944442898035049,-0.566665709018707,-0.967994034290314,-0.165267258882523,-0.188876897096634,-0.981820046901703,-0.0785456076264381,-0.172800332307816,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.967994034290314,-0.165267258882523,-0.188876897096634,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.897721290588379,-0.212618201971054,-0.385862648487091,-0.928759634494781,-0.369929701089859,0.0236125346273184,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.897721290588379,-0.212618201971054,-0.385862648487091,-0.926010131835938,-0.353139460086823,-0.133408233523369,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.897721290588379,-0.212618201971054,-0.385862648487091,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.733375549316406,-0.0473145507276058,-0.678175210952759,-0.956738471984863,-0.213487103581429,-0.197673231363297,-0.827259063720703,0.141815826296806,-0.543627381324768,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.733375549316406,-0.0473145507276058,-0.678175210952759,
  1237. -0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.805776655673981,0.0947972610592842,-0.584583103656769,-0.903385937213898,-0.0628442391753197,-0.424198627471924,-0.827259063720703,0.141815826296806,-0.543627381324768,-0.805776655673981,0.0947972610592842,-0.584583103656769,-0.805776655673981,0.0947972610592842,-0.584583103656769,-0.827259063720703,0.141815826296806,-0.543627381324768,-0.82022088766098,0.149848058819771,-0.552071750164032,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.994347870349884,-0.078916497528553,0.0710248425602913,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.927553713321686,0.141491234302521,0.345867514610291,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.939428150653839,-0.339457213878632,-0.047366127371788,-0.927553713321686,0.141491234302521,0.345867514610291,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.934894561767578,-0.16498139500618,0.314250290393829,-0.934894561767578,-0.16498139500618,0.314250290393829,-0.987872242927551,-0.150156587362289,0.0395148880779743,-0.939428150653839,-0.339457213878632,-0.047366127371788,-0.909531235694885,0.337153792381287,0.243064388632774,-0.816975116729736,0.526320517063141,0.235665902495384,-0.92054671049118,0.369792282581329,0.125886723399162,-0.909531235694885,0.337153792381287,0.243064388632774,-0.92054671049118,0.369792282581329,0.125886723399162,-0.966707527637482,0.172907039523125,0.188625857234001,-0.913612425327301,-0.212651178240776,0.346542656421661,-0.909531235694885,0.337153792381287,0.243064388632774,-0.966707527637482,0.172907039523125,0.188625857234001,-0.92054671049118,0.369792282581329,0.125886723399162,-0.95899623632431,0.267261236906052,0.0943274945020676,
  1238. -0.966707527637482,0.172907039523125,0.188625857234001,-0.913612425327301,-0.212651178240776,0.346542656421661,-0.966707527637482,0.172907039523125,0.188625857234001,-0.992710888385773,-0.0236359722912312,0.118179865181446,-0.966707527637482,0.172907039523125,0.188625857234001,-0.95899623632431,0.267261236906052,0.0943274945020676,-0.992710888385773,-0.0236359722912312,0.118179865181446,-0.999225914478302,-0.0236037615686655,0.0314716808497906,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.999225914478302,-0.0236037615686655,0.0314716808497906,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.927840530872345,-0.212302505970001,0.306659162044525,-0.999225914478302,-0.0236037615686655,0.0314716808497906,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.998607933521271,-0.023589164018631,-0.047178328037262,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.927840530872345,-0.212302505970001,0.306659162044525,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.934894561767578,-0.3535315990448,0.0314250290393829,-0.934894561767578,-0.3535315990448,0.0314250290393829,-0.987625539302826,-0.118515066802502,-0.102713048458099,-0.937211275100708,-0.149638786911964,-0.315028995275497,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.819100916385651,0.0866356790065765,0.567069828510284,-0.920318841934204,0.102257646620274,0.377566695213318,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.920318841934204,0.102257646620274,0.377566695213318,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.915402948856354,-0.402461647987366,0.00789140537381172,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.920318841934204,0.102257646620274,0.377566695213318,-0.959322392940521,0.0629063844680786,0.275215417146683,-0.965872645378113,-0.0628209784626961,0.251283913850784,
  1239. -0.915402948856354,-0.402461647987366,0.00789140537381172,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.993111670017242,-0.110345736145973,0.0394091904163361,-0.965872645378113,-0.0628209784626961,0.251283913850784,-0.959322392940521,0.0629063844680786,0.275215417146683,-0.993111670017242,-0.110345736145973,0.0394091904163361,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.994595766067505,-0.102617025375366,0.0157872345298529,-0.998731434345245,-0.039320133626461,-0.031456109136343,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.998731434345245,-0.039320133626461,-0.031456109136343,-0.92761105298996,-0.0550277754664421,0.369472205638886,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.998731434345245,-0.039320133626461,-0.031456109136343,-0.939428150653839,-0.26840803027153,-0.213147565722466,-0.92761105298996,-0.0550277754664421,0.369472205638886,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.935501039028168,-0.298731446266174,0.188672482967377,-0.935501039028168,-0.298731446266174,0.188672482967377,-0.987872242927551,-0.150156587362289,-0.0395148880779743,-0.939428150653839,-0.26840803027153,-0.213147565722466,-0.911353945732117,0.164986491203308,0.377111971378326,-0.817606031894684,0.330187052488327,0.471695810556412,-0.918615281581879,0.259096622467041,0.29835370182991,-0.911353945732117,0.164986491203308,0.377111971378326,-0.918615281581879,0.259096622467041,0.29835370182991,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.91284841299057,-0.361991614103317,0.188865199685097,-0.911353945732117,0.164986491203308,0.377111971378326,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.918615281581879,0.259096622467041,0.29835370182991,-0.958611309528351,0.180721804499626,0.22000914812088,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.91284841299057,-0.361991614103317,0.188865199685097,
  1240. -0.966319620609283,0.0549937970936298,0.251400232315063,-0.992464482784271,-0.0866437256336212,0.0866437256336212,-0.966319620609283,0.0549937970936298,0.251400232315063,-0.958611309528351,0.180721804499626,0.22000914812088,-0.992464482784271,-0.0866437256336212,0.0866437256336212,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.986671268939972,0.0631469637155533,0.149974033236504,-0.989522039890289,0.133506938815117,-0.0549734458327293,-0.935038864612579,0.0785746946930885,0.345728695392609,-0.986671268939972,0.0631469637155533,0.149974033236504,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.991757094860077,-0.0236132647842169,-0.125937417149544,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.989522039890289,0.133506938815117,-0.0549734458327293,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.935038864612579,0.0785746946930885,0.345728695392609,-0.991757094860077,-0.0236132647842169,-0.125937417149544,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.995464503765106,-0.00790051184594631,0.0948061496019363,-0.976771771907806,-0.126035064458847,0.173298224806786,-0.935038864612579,0.0785746946930885,0.345728695392609,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.991757094860077,-0.0236132647842169,-0.125937417149544,-0.976771771907806,-0.126035064458847,0.173298224806786,-0.975320279598236,-0.220233619213104,0.0157309714704752,-0.889075100421906,-0.416999846696854,-0.188830122351646,-0.866786956787109,0.260036081075668,0.425513625144959,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.891839742660522,-0.0473543219268322,0.449866056442261,-0.866786956787109,0.260036081075668,0.425513625144959,-0.966528534889221,0.165017053484917,0.196448892354965,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.891839742660522,-0.0473543219268322,0.449866056442261,-0.967994034290314,-0.165267258882523,0.188876897096634,
  1241. -0.926067173480988,-0.361009240150452,0.109872378408909,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.966528534889221,0.165017053484917,0.196448892354965,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.967994034290314,-0.165267258882523,0.188876897096634,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.966528534889221,0.165017053484917,0.196448892354965,-0.98869913816452,0.102008640766144,0.109855458140373,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.926067173480988,-0.361009240150452,0.109872378408909,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.979510545730591,-0.181683406233788,0.0868920683860779,-0.98869913816452,0.102008640766144,0.109855458140373,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.951517939567566,-0.0235913544893265,0.306687593460083,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.919551074504852,-0.314376443624496,0.235782340168953,-0.951517939567566,-0.0235913544893265,0.306687593460083,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.919551074504852,-0.314376443624496,0.235782340168953,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.843959987163544,-0.504798471927643,-0.181411951780319,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.843959987163544,-0.504798471927643,-0.181411951780319,-0.93293023109436,-0.355778485536575,-0.0553433187305927,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.926695227622986,-0.337694019079208,-0.164920330047607,-0.894895553588867,-0.345398306846619,-0.282598584890366,-0.843959987163544,-0.504798471927643,-0.181411951780319,-0.926695227622986,-0.337694019079208,-0.164920330047607,
  1242. -0.926695227622986,-0.337694019079208,-0.164920330047607,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.894895553588867,-0.345398306846619,-0.282598584890366,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.970763623714447,0.110493414103985,0.213094443082809,-0.980459988117218,0.196091994643211,0.0156873594969511,-0.905624091625214,0.110249891877174,0.40949958562851,-0.970763623714447,0.110493414103985,0.213094443082809,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.980459988117218,0.196091994643211,0.0156873594969511,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.905624091625214,0.110249891877174,0.40949958562851,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.987132668495178,0.0552794300019741,0.150044173002243,-0.971368849277496,-0.0868703871965408,0.221124619245529,-0.905624091625214,0.110249891877174,0.40949958562851,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.923064351081848,-0.347135335206985,-0.165678218007088,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.971368849277496,-0.0868703871965408,0.221124619245529,-0.984679400920868,-0.165426135063171,0.0551420450210571,-0.923064351081848,-0.347135335206985,-0.165678218007088,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.99422413110733,-0.102578677237034,0.0315626710653305,-0.991910755634308,0.0629784613847733,-0.110212303698063,-0.952992379665375,-0.267782956361771,0.141767457127571,-0.99422413110733,-0.102578677237034,0.0315626710653305,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.967305243015289,-0.0314570814371109,-0.251656651496887,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.991910755634308,0.0629784613847733,-0.110212303698063,-0.990928769111633,-0.125832229852676,-0.0471870861947536,
  1243. -0.937822282314301,-0.267949223518372,-0.220664069056511,-0.952992379665375,-0.267782956361771,0.141767457127571,-0.967305243015289,-0.0314570814371109,-0.251656651496887,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.990928769111633,-0.125832229852676,-0.0471870861947536,-0.875074446201324,-0.47301322221756,-0.102486193180084,-0.952992379665375,-0.267782956361771,0.141767457127571,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.815441787242889,-0.274427503347397,-0.509651124477386,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.967305243015289,-0.0314570814371109,-0.251656651496887,-0.875074446201324,-0.47301322221756,-0.102486193180084,-0.937822282314301,-0.267949223518372,-0.220664069056511,-0.815441787242889,-0.274427503347397,-0.509651124477386,-0.951900541782379,0.204540595412254,-0.228141441941261,-0.914037883281708,-0.0551574602723122,-0.401861488819122,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.951900541782379,0.204540595412254,-0.228141441941261,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.996914327144623,1.74298783747682e-017,-0.0784971937537193,-0.914037883281708,-0.0551574602723122,-0.401861488819122,-0.884498476982117,-0.386968076229095,-0.260611146688461,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.996914327144623,1.74298783747682e-017,-0.0784971937537193,-0.960153818130493,-0.149532154202461,-0.236103400588036,-0.884498476982117,-0.386968076229095,-0.260611146688461,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.996914327144623,1.74298783747682e-017,-0.0784971937537193,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.991265952587128,-0.125875040888786,-0.0393359512090683,-0.884498476982117,-0.386968076229095,-0.260611146688461,-0.921031475067139,-0.377859055995941,-0.0944647639989853,-0.96239185333252,-0.244542196393013,-0.118326872587204,-0.96239185333252,-0.244542196393013,-0.118326872587204,
  1244. -0.921031475067139,-0.377859055995941,-0.0944647639989853,-0.991265952587128,-0.125875040888786,-0.0393359512090683,-0.9539395570755,0.0157675947993994,-0.299584299325943,-0.91563093662262,-0.292054712772369,-0.276267945766449,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.9539395570755,0.0157675947993994,-0.299584299325943,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.996914327144623,-0.0470983162522316,-0.0627977550029755,-0.91563093662262,-0.292054712772369,-0.276267945766449,-0.884305477142334,-0.465839475393295,0.0315823368728161,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.996914327144623,-0.0470983162522316,-0.0627977550029755,-0.960987448692322,-0.259939223527908,-0.0945233553647995,-0.884305477142334,-0.465839475393295,0.0315823368728161,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.996914327144623,-0.0470983162522316,-0.0627977550029755,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.990928769111633,-0.125832229852676,0.0471870861947536,-0.884305477142334,-0.465839475393295,0.0315823368728161,-0.920518219470978,-0.354045480489731,0.165221214294434,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.961823344230652,-0.268049120903015,0.0551865845918655,-0.920518219470978,-0.354045480489731,0.165221214294434,-0.990928769111633,-0.125832229852676,0.0471870861947536,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.986425518989563,-0.0946968495845795,0.134153857827187,-0.989918947219849,0.117847494781017,0.0785649940371513,-0.936514437198639,-0.243965968489647,0.251835823059082,-0.986425518989563,-0.0946968495845795,0.134153857827187,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.992464482784271,0.0866437256336212,-0.0866437256336212,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.989918947219849,0.117847494781017,0.0785649940371513,-0.995744228363037,-0.0790273174643517,0.0474163927137852,
  1245. -0.974416494369507,-0.133589342236519,-0.180738538503647,-0.936514437198639,-0.243965968489647,0.251835823059082,-0.992464482784271,0.0866437256336212,-0.0866437256336212,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.995744228363037,-0.0790273174643517,0.0474163927137852,-0.977074861526489,-0.212750166654587,-0.00787963625043631,-0.936514437198639,-0.243965968489647,0.251835823059082,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.887428462505341,-0.0706801414489746,-0.455494254827499,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.992464482784271,0.0866437256336212,-0.0866437256336212,-0.977074861526489,-0.212750166654587,-0.00787963625043631,-0.974416494369507,-0.133589342236519,-0.180738538503647,-0.887428462505341,-0.0706801414489746,-0.455494254827499,-0.86603444814682,-0.220445141196251,0.448763310909271,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.892062127590179,-0.402612119913101,0.205253228545189,-0.86603444814682,-0.220445141196251,0.448763310909271,-0.965366780757904,-0.070636585354805,0.251152336597443,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.892062127590179,-0.402612119913101,0.205253228545189,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.965366780757904,-0.070636585354805,0.251152336597443,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.967305243015289,-0.251656651496887,-0.0314570814371109,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.965366780757904,-0.070636585354805,0.251152336597443,-0.989186525344849,-0.0392534323036671,0.141312345862389,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.975894033908844,-0.0944413542747498,-0.196752816438675,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.978595018386841,-0.173621699213982,-0.110486537218094,-0.978595018386841,-0.173621699213982,-0.110486537218094,
  1246. -0.989186525344849,-0.0392534323036671,0.141312345862389,-0.975894033908844,-0.0944413542747498,-0.196752816438675,-0.951900541782379,-0.267476171255112,0.14947198331356,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.918615281581879,-0.369016408920288,-0.141325429081917,-0.951900541782379,-0.267476171255112,0.14947198331356,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.918615281581879,-0.369016408920288,-0.141325429081917,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.845117330551147,-0.118474394083023,-0.521287322044373,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.845117330551147,-0.118474394083023,-0.521287322044373,-0.931446731090546,-0.149978712201118,-0.331531882286072,-0.99737536907196,-0.0706801414489746,-0.0157066993415356,-0.994688630104065,0.00789435394108295,-0.102626599371433,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.896554529666901,0.0471870787441731,-0.440412759780884,-0.845117330551147,-0.118474394083023,-0.521287322044373,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.925269663333893,-0.0470476113259792,-0.376380890607834,-0.994688630104065,0.00789435394108295,-0.102626599371433,-0.896554529666901,0.0471870787441731,-0.440412759780884,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.969888091087341,-0.118279039859772,0.212902277708054,-0.980490148067474,0.0941270589828491,0.172566279768944,-0.905736565589905,-0.283534914255142,0.315038800239563,-0.969888091087341,-0.118279039859772,0.212902277708054,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.980490148067474,0.0941270589828491,0.172566279768944,-0.987440645694733,-0.0947943031787872,0.126392394304276,
  1247. -0.983764171600342,-0.141662031412125,-0.110181584954262,-0.905736565589905,-0.283534914255142,0.315038800239563,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.987440645694733,-0.0947943031787872,0.126392394304276,-0.970431208610535,-0.236690536141396,0.047338105738163,-0.905736565589905,-0.283534914255142,0.315038800239563,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.924129128456116,-0.0473912358283997,-0.379129886627197,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.970431208610535,-0.236690536141396,0.047338105738163,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.924129128456116,-0.0473912358283997,-0.379129886627197,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.992002964019775,0.125968635082245,-0.0078730396926403,-0.951900541782379,-0.267476171255112,-0.14947198331356,-0.994224011898041,-0.0867973417043686,-0.0631253346800804,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.966528534889221,0.196448892354965,-0.165017053484917,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.992002964019775,0.125968635082245,-0.0078730396926403,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.951900541782379,-0.267476171255112,-0.14947198331356,-0.966528534889221,0.196448892354965,-0.165017053484917,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.990530550479889,-0.0314454138278961,-0.133643001317978,-0.872933983802795,-0.173013955354691,-0.456127643585205,-0.951900541782379,-0.267476171255112,-0.14947198331356,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.818694710731506,0.275522261857986,-0.5038121342659,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.966528534889221,0.196448892354965,-0.165017053484917,-0.872933983802795,-0.173013955354691,-0.456127643585205,
  1248. -0.937211275100708,0.0393786244094372,-0.346531927585602,-0.818694710731506,0.275522261857986,-0.5038121342659,-0.958581686019897,0.117858409881592,-0.259288489818573,-0.906045615673065,-0.173330470919609,-0.386054217815399,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.958581686019897,0.117858409881592,-0.259288489818573,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.995340168476105,-0.0552966743707657,-0.0789952501654625,-0.906045615673065,-0.173330470919609,-0.386054217815399,-0.866652369499207,-0.464840799570084,-0.18120913207531,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.995340168476105,-0.0552966743707657,-0.0789952501654625,-0.953406453132629,-0.228502362966537,-0.196984797716141,-0.866652369499207,-0.464840799570084,-0.18120913207531,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.995340168476105,-0.0552966743707657,-0.0789952501654625,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.984740495681763,-0.173314332962036,-0.0157558489590883,-0.866652369499207,-0.464840799570084,-0.18120913207531,-0.905063033103943,-0.424986124038696,-0.0157402269542217,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.905063033103943,-0.424986124038696,-0.0157402269542217,-0.984740495681763,-0.173314332962036,-0.0157558489590883,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.989827394485474,0.141403913497925,0.0157115459442139,-0.995340168476105,-0.0552966743707657,0.0789952501654625,
  1249. -0.975139439105988,-0.196600690484047,-0.102232359349728,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.995340168476105,-0.0552966743707657,0.0789952501654625,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.888855040073395,-0.259577125310898,-0.377566754817963,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.992218255996704,0.0393737405538559,-0.118121221661568,-0.976589918136597,-0.196893110871315,0.0866329744458199,-0.975139439105988,-0.196600690484047,-0.102232359349728,-0.888855040073395,-0.259577125310898,-0.377566754817963,-0.867757260799408,-1.10353563333213e-016,0.496988266706467,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.892201066017151,-0.268449872732162,0.36319687962532,-0.867757260799408,-1.10353563333213e-016,0.496988266706467,-0.964772641658783,0.0470620803534985,0.258841425180435,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.892201066017151,-0.268449872732162,0.36319687962532,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.928213536739349,-0.361845970153809,-0.0865283831954002,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.964772641658783,0.0470620803534985,0.258841425180435,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.968503952026367,-0.236220479011536,0.078740157186985,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.928213536739349,-0.361845970153809,-0.0865283831954002,-0.964772641658783,0.0470620803534985,0.258841425180435,-0.988334119319916,0.0313756838440895,0.149034515023232,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.975773274898529,-0.173121064901352,-0.133775368332863,-0.928213536739349,-0.361845970153809,-0.0865283831954002,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.988334119319916,0.0313756838440895,0.149034515023232,
  1250. -0.975773274898529,-0.173121064901352,-0.133775368332863,-0.950841903686523,-0.180738538503647,0.251462310552597,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.918841898441315,-0.392667472362518,0.0392667464911938,-0.950841903686523,-0.180738538503647,0.251462310552597,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.918841898441315,-0.392667472362518,0.0392667464911938,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.843094885349274,-0.338813811540604,-0.417607754468918,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.843094885349274,-0.338813811540604,-0.417607754468918,-0.931098699569702,-0.284063994884491,-0.228829339146614,-0.99737536907196,-0.0706801414489746,0.0157066993415356,-0.994719624519348,-0.0394730009138584,-0.0947351977229118,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.896609961986542,-0.149434998631477,-0.416844993829727,-0.843094885349274,-0.338813811540604,-0.417607754468918,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.927095651626587,-0.204275324940681,-0.314269721508026,-0.994719624519348,-0.0394730009138584,-0.0947351977229118,-0.896609961986542,-0.149434998631477,-0.416844993829727,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.971490025520325,-0.007898292504251,0.236948788166046,-0.981456816196442,0.157033085823059,0.109923161566257,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.971490025520325,-0.007898292504251,0.236948788166046,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.981456816196442,0.157033085823059,0.109923161566257,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.905624091625214,-0.110249891877174,0.40949958562851,
  1251. -0.997006475925446,0.07065399736166,-0.0314017795026302,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.970400989055634,-0.18934653699398,0.149899333715439,-0.905624091625214,-0.110249891877174,0.40949958562851,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.997006475925446,0.07065399736166,-0.0314017795026302,-0.970400989055634,-0.18934653699398,0.149899333715439,-0.984099447727203,-0.173201501369476,-0.0393639765679836,-0.923639535903931,-0.205253228545189,-0.323668539524078,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.991910755634308,0.110212303698063,-0.0629784613847733,-0.951664984226227,-0.306734979152679,-0.0157299991697073,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.991910755634308,0.110212303698063,-0.0629784613847733,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.951664984226227,-0.306734979152679,-0.0157299991697073,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.990163564682007,-0.0864428505301476,-0.110018171370029,-0.874531090259552,-0.354539632797241,-0.330903649330139,-0.951664984226227,-0.306734979152679,-0.0157299991697073,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.818263709545136,0.0236037615686655,-0.574358224868774,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.874531090259552,-0.354539632797241,-0.330903649330139,-0.938814103603363,-0.118337921798229,-0.323456972837448,-0.818263709545136,0.0236037615686655,-0.574358224868774,
  1252. -0.95311051607132,0.236308395862579,-0.189046710729599,-0.915317356586456,0.0157813336700201,-0.40242400765419,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.95311051607132,0.236308395862579,-0.189046710729599,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.996791481971741,0.0156975034624338,-0.0784875229001045,-0.915317356586456,0.0157813336700201,-0.40242400765419,-0.885742247104645,-0.332153350114822,-0.324244946241379,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.996791481971741,0.0156975034624338,-0.0784875229001045,-0.962182223796844,-0.102527603507042,-0.252375662326813,-0.885742247104645,-0.332153350114822,-0.324244946241379,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.996791481971741,0.0156975034624338,-0.0784875229001045,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.991020619869232,-0.117978647351265,-0.062921941280365,-0.885742247104645,-0.332153350114822,-0.324244946241379,-0.919097006320953,-0.361354380846024,-0.157110601663589,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.962451756000519,-0.220890566706657,-0.157778963446617,-0.919097006320953,-0.361354380846024,-0.157110601663589,-0.991020619869232,-0.117978647351265,-0.062921941280365,-0.981033563613892,0.102027483284473,-0.164813637733459,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976347684860229,0.212591841816902,-0.0393688566982746,-0.981033563613892,0.102027483284473,-0.164813637733459,-0.983733773231506,-0.08656857162714,-0.157397404313087,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.976347684860229,0.212591841816902,-0.0393688566982746,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.978320896625519,0.134124636650085,0.157793685793877,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983733773231506,-0.08656857162714,-0.157397404313087,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.978320896625519,0.134124636650085,0.157793685793877,
  1253. -0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.98777973651886,-0.0790223777294159,0.134338036179543,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.979510545730591,-0.197481960058212,-0.0394963920116425,-0.982881903648376,-0.117945834994316,0.141534984111786,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.977226555347443,-0.110332027077675,-0.181259766221046,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.979418873786926,0.102681003510952,-0.173767864704132,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.982881903648376,-0.117945834994316,0.141534984111786,-0.982396006584167,0.0471550077199936,0.180760860443115,-0.979418873786926,0.102681003510952,-0.173767864704132,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.98869913816452,0.149089559912682,0.015693636611104,-0.98869913816452,0.149089559912682,0.015693636611104,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.982396006584167,0.0471550077199936,0.180760860443115,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.181259766221046,0.110332027077675,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.982881903648376,0.141534984111786,0.117945834994316,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.181259766221046,0.110332027077675,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.979418873786926,-0.173767864704132,-0.102681003510952,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.982881903648376,0.141534984111786,0.117945834994316,-0.982396006584167,0.180760860443115,-0.0471550077199936,-0.979418873786926,-0.173767864704132,-0.102681003510952,
  1254. -0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.98869913816452,0.015693636611104,-0.149089559912682,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.982396006584167,0.180760860443115,-0.0471550077199936,-0.980459988117218,-0.196091994643211,-0.0156873594969511,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.978077471256256,-0.126203551888466,-0.165642142295837,-0.980459988117218,-0.196091994643211,-0.0156873594969511,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.978077471256256,-0.126203551888466,-0.165642142295837,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.978716969490051,0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.978716969490051,0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.983703315258026,0.0708266347646713,0.165262147784233,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.983947098255157,0.118073657155037,0.133816793560982,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.978077471256256,-0.165642142295837,-0.126203551888466,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983947098255157,0.118073657155037,0.133816793560982,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.978077471256256,-0.165642142295837,-0.126203551888466,
  1255. -0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.982001841068268,-0.054992102086544,0.180688336491585,-0.983947098255157,0.118073657155037,0.133816793560982,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.978077471256256,-0.165642142295837,-0.126203551888466,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983947098255157,0.118073657155037,0.133816793560982,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.978077471256256,-0.165642142295837,-0.126203551888466,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.987872242927551,0.0395148880779743,-0.150156587362289,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983216226100922,0.180911779403687,-0.0235971882939339,-0.979327261447906,0.157956004142761,-0.126364797353745,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.979327261447906,0.157956004142761,-0.126364797353745,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.97795569896698,0.205055221915245,0.0394336953759193,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.979296684265137,0.0710779801011086,0.189541295170784,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983003377914429,-0.0314561054110527,-0.180872619152069,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.979296684265137,0.0710779801011086,0.189541295170784,
  1256. -0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.98869913816452,-0.109855458140373,0.102008640766144,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.983124971389771,-0.165164992213249,-0.0786499977111816,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.981033563613892,-0.0706344097852707,0.180510178208351,-0.983947098255157,0.118073657155037,0.133816793560982,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.977226555347443,-0.197021469473839,0.0788085907697678,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.978320896625519,-0.157793685793877,-0.134124636650085,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983947098255157,0.118073657155037,0.133816793560982,-0.983368337154388,0.18093977868557,-0.0157338920980692,-0.978320896625519,-0.157793685793877,-0.134124636650085,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.989186525344849,0.0392534323036671,-0.141312345862389,-0.989186525344849,0.0392534323036671,-0.141312345862389,-0.999845147132874,0.00787279661744833,-0.0157455932348967,-0.983368337154388,0.18093977868557,-0.0157338920980692,-0.993204295635223,0.0551780164241791,0.102473460137844,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.979736983776093,-0.10189263522625,0.172433704137802,-0.993204295635223,0.0551780164241791,0.102473460137844,-0.991634249687195,0.102311469614506,-0.0787011310458183,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.979736983776093,-0.10189263522625,0.172433704137802,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.991634249687195,0.102311469614506,-0.0787011310458183,-0.978716969490051,4.55668454641494e-017,-0.205214828252792,-0.962811231613159,-0.268324434757233,0.0315675809979439,
  1257. -0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.971823513507843,-0.181723102927208,-0.150119081139565,-0.971823513507843,-0.181723102927208,-0.150119081139565,-0.994688630104065,-0.0868378952145576,-0.0552604794502258,-0.978716969490051,4.55668454641494e-017,-0.205214828252792,-0.979785799980164,0.0316059924662113,-0.197537466883659,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.989064633846283,0.133445218205452,-0.0627977550029755,-0.979785799980164,0.0316059924662113,-0.197537466883659,-0.967394948005676,-0.149434998631477,-0.204489976167679,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.989064633846283,0.133445218205452,-0.0627977550029755,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.990928769111633,0.0471870861947536,0.125832229852676,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.967394948005676,-0.149434998631477,-0.204489976167679,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.990928769111633,0.0471870861947536,0.125832229852676,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.984924018383026,-0.149708449840546,0.0866733118891716,-0.984924018383026,-0.149708449840546,0.0866733118891716,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.985352337360382,0.0945938304066658,-0.141890734434128,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.985352337360382,0.0945938304066658,-0.141890734434128,-0.972005605697632,-0.0790248438715935,-0.221269562840462,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.987163484096527,-0.0236919224262238,0.157946154475212,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.972005605697632,-0.0790248438715935,-0.221269562840462,-0.963021218776703,-0.228914856910706,-0.142085090279579,-0.987163484096527,-0.0236919224262238,0.157946154475212,
  1258. -0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.979174554347992,-0.197414219379425,0.0473794117569923,-0.979174554347992,-0.197414219379425,0.0473794117569923,-0.99571305513382,-0.0869273319840431,-0.0316099375486374,-0.963021218776703,-0.228914856910706,-0.142085090279579,-0.965842843055725,-0.259128570556641,-5.75381010740374e-017,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.955306172370911,-0.24474786221981,-0.165796935558319,-0.965842843055725,-0.259128570556641,-5.75381010740374e-017,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.955306172370911,-0.24474786221981,-0.165796935558319,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.993945598602295,0.0394422858953476,0.102549932897091,-0.968594014644623,-0.0472484864294529,-0.244117185473442,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.993698358535767,0.0709784477949142,-0.0867514461278915,-0.99771386384964,-0.054992102086544,-0.0392800718545914,-0.993945598602295,0.0394422858953476,0.102549932897091,-0.99277251958847,0.110308051109314,0.0472748801112175,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.980098307132721,0.0313631445169449,0.196019649505615,-0.99277251958847,0.110308051109314,0.0472748801112175,-0.991542160511017,0.0314775295555592,-0.125910118222237,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.980098307132721,0.0313631445169449,0.196019649505615,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.963411450386047,-0.189523562788963,0.189523562788963,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.991542160511017,0.0314775295555592,-0.125910118222237,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.963411450386047,-0.189523562788963,0.189523562788963,
  1259. -0.994688630104065,-0.102626599371433,0.00789435394108295,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.971520364284515,-0.236956179141998,-5.261484118213e-017,-0.994688630104065,-0.102626599371433,0.00789435394108295,-0.978320896625519,-0.134124636650085,-0.157793685793877,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.989064633846283,0.0627977550029755,-0.133445218205452,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.989064633846283,0.0627977550029755,-0.133445218205452,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.990500032901764,0.11791667342186,0.0707499980926514,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.967245399951935,-0.24377728998661,-0.0707740485668182,-0.966438949108124,-0.235716819763184,0.102143943309784,-0.990500032901764,0.11791667342186,0.0707499980926514,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.984221458435059,-0.0629901736974716,0.165349200367928,-0.984221458435059,-0.0629901736974716,0.165349200367928,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.966438949108124,-0.235716819763184,0.102143943309784,-0.984740495681763,-0.0157558489590883,-0.173314332962036,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.984740495681763,-0.0157558489590883,-0.173314332962036,-0.972096621990204,-0.197580605745316,-0.126451596617699,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.986702144145966,0.0789361670613289,0.14208510518074,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.972096621990204,-0.197580605745316,-0.126451596617699,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.986702144145966,0.0789361670613289,0.14208510518074,
  1260. -0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.99571305513382,-0.0869273319840431,0.0316099375486374,-0.962811231613159,-0.268324434757233,0.0315675809979439,-0.965010166168213,-0.203985884785652,0.164757832884789,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.956021547317505,-0.292337149381638,0.0237030126154423,-0.965010166168213,-0.203985884785652,0.164757832884789,-0.983368337154388,-0.0157338920980692,0.18093977868557,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.956021547317505,-0.292337149381638,0.0237030126154423,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.983368337154388,-0.0157338920980692,0.18093977868557,-0.993976533412933,0.0946644321084023,0.0552209168672562,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.993883728981018,2.45207237028402e-017,-0.110431522130966,-0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.993976533412933,0.0946644321084023,0.0552209168672562,-0.982062458992004,0.188555985689163,4.18678393486001e-017,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977257013320923,0.141859874129295,0.157622098922729,-0.982062458992004,0.188555985689163,4.18678393486001e-017,-0.983733773231506,0.08656857162714,-0.157397404313087,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977257013320923,0.141859874129295,0.157622098922729,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.978320896625519,-0.0631174743175507,0.197242110967636,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983733773231506,0.08656857162714,-0.157397404313087,-0.984374046325684,-0.0787499248981476,-0.157499849796295,-0.978320896625519,-0.0631174743175507,0.197242110967636,
  1261. -0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.987409830093384,-0.15798556804657,0.00789927877485752,-0.987409830093384,-0.15798556804657,0.00789927877485752,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.984374046325684,-0.0787499248981476,-0.157499849796295,-0.98015296459198,-0.0790445879101753,-0.181802555918694,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.98015296459198,-0.0790445879101753,-0.181802555918694,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977378308773041,0.0945850014686584,-0.189170002937317,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983216226100922,-0.180911779403687,-0.0235971882939339,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.988546967506409,0.0706104934215546,0.133375376462936,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983003377914429,-0.125824421644211,0.133688449859619,-0.98015296459198,-0.181802555918694,0.0790445879101753,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.977378308773041,-0.189170002937317,-0.0945850014686584,-0.98015296459198,-0.181802555918694,0.0790445879101753,-0.983216226100922,-0.0235971882939339,0.180911779403687,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.977378308773041,-0.189170002937317,-0.0945850014686584,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978686571121216,-0.00789263378828764,-0.205208465456963,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983216226100922,-0.0235971882939339,0.180911779403687,-0.983003377914429,0.133688449859619,0.125824421644211,-0.978686571121216,-0.00789263378828764,-0.205208465456963,
  1262. -0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.988546967506409,0.133375376462936,-0.0706104934215546,-0.988546967506409,0.133375376462936,-0.0706104934215546,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.133688449859619,0.125824421644211,-0.980490148067474,-0.0941270589828491,-0.172566279768944,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.980490148067474,-0.0941270589828491,-0.172566279768944,-0.98345959186554,-0.180956572294235,-0.00786767713725567,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.977803647518158,0.0709696188569069,-0.197137832641602,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.98345959186554,-0.180956572294235,-0.00786767713725567,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.988973200321198,0.0784899368882179,0.125583902001381,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983459711074829,-0.102279812097549,0.149485886096954,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.983947098255157,0.118073657155037,0.133816793560982,-0.978595018386841,0.0157837904989719,-0.205189272761345,
  1263. -0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983947098255157,0.118073657155037,0.133816793560982,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.980973124504089,-0.188346847891808,0.0470867119729519,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.983947098255157,0.118073657155037,0.133816793560982,-0.978595018386841,0.0157837904989719,-0.205189272761345,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.987533092498779,0.150105029344559,-0.0474015884101391,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983947098255157,0.118073657155037,0.133816793560982,-0.979816317558289,0.189641863107681,0.0632139518857002,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.0788085907697678,0.197021469473839,-0.979816317558289,0.189641863107681,0.0632139518857002,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.977226555347443,0.0788085907697678,0.197021469473839,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.980275452136993,-0.118581712245941,0.158108934760094,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.980275452136993,-0.118581712245941,0.158108934760094,
  1264. -0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.983216226100922,-0.0235971882939339,-0.180911779403687,-0.981305718421936,-0.188410699367523,0.0392522290349007,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.981305718421936,-0.188410699367523,0.0392522290349007,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976771771907806,-0.173298224806786,-0.126035064458847,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978442788124084,0.0236720032989979,-0.205157354474068,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.982881903648376,0.117945834994316,0.141534984111786,-0.978442788124084,0.0236720032989979,-0.205157354474068,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.982881903648376,0.117945834994316,0.141534984111786,-0.994998693466187,0.0315872617065907,0.0947617813944817,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.994998693466187,0.0315872617065907,0.0947617813944817,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.976620197296143,-0.102387592196465,0.18902325630188,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.952696859836578,-0.291320532560349,0.0866088047623634,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.994378924369812,0.0473513789474964,-0.0947027578949928,-0.975048899650574,-0.0864962786436081,-0.204445719718933,-0.952696859836578,-0.291320532560349,0.0866088047623634,
  1265. -0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.963261306285858,-0.244763121008873,-0.110538177192211,-0.990255177021027,-0.133605852723122,-0.0392958410084248,-0.975048899650574,-0.0864962786436081,-0.204445719718933,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.992402911186218,0.0787621363997459,-0.0945145636796951,-0.97762131690979,-0.0473042577505112,-0.204985097050667,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.992402911186218,0.0787621363997459,-0.0945145636796951,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.992495357990265,0.0315077900886536,0.118154212832451,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.958256363868713,-0.227782249450684,-0.172800332307816,-0.956021547317505,-0.292337149381638,-0.0237030126154423,-0.992495357990265,0.0315077900886536,0.118154212832451,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.977712452411652,-0.173465117812157,0.118271671235561,-0.977712452411652,-0.173465117812157,0.118271671235561,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.956021547317505,-0.292337149381638,-0.0237030126154423,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.995495498180389,0.0948090925812721,2.10518475055093e-017,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.966230273246765,-0.157110601663589,-0.204243794083595,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.995495498180389,0.0948090925812721,2.10518475055093e-017,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.986948072910309,-0.0315823368728161,0.157911688089371,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.966230273246765,-0.157110601663589,-0.204243794083595,-0.95201849937439,-0.291113078594208,-0.0944150611758232,-0.986948072910309,-0.0315823368728161,0.157911688089371,
  1266. -0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.972005605697632,-0.221269562840462,0.0790248438715935,-0.972005605697632,-0.221269562840462,0.0790248438715935,-0.990898132324219,-0.133692607283592,-0.0157285425812006,-0.95201849937439,-0.291113078594208,-0.0944150611758232,-0.954830169677734,-0.29197284579277,0.0552381053566933,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.945233583450317,-0.307200908660889,-0.110277250409126,-0.954830169677734,-0.29197284579277,0.0552381053566933,-0.977257013320923,-0.141859874129295,0.157622098922729,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.945233583450317,-0.307200908660889,-0.110277250409126,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.977257013320923,-0.141859874129295,0.157622098922729,-0.996086359024048,0.0158108938485384,0.0869599208235741,-0.964073002338409,-0.134338036179543,-0.229164883494377,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.995371222496033,0.015799542888999,-0.0947972610592842,-0.995371222496033,0.015799542888999,-0.0947972610592842,-0.99422413110733,-0.102578677237034,-0.0315626710653305,-0.996086359024048,0.0158108938485384,0.0869599208235741,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.977226555347443,0.197021469473839,0.0788085907697678,-0.981184661388397,0.172688513994217,-0.0863442569971085,-0.98345959186554,0.00786767713725567,-0.180956572294235,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.977226555347443,0.197021469473839,0.0788085907697678,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.978229522705078,0.0315557904541492,0.205112636089325,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.98345959186554,0.00786767713725567,-0.180956572294235,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.978229522705078,0.0315557904541492,0.205112636089325,
  1267. -0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.98777973651886,-0.134338036179543,0.0790223777294159,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.983764171600342,-0.141662031412125,-0.110181584954262,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.979510545730591,-0.150086298584938,-0.134287729859352,-0.982912182807922,-0.172992557287216,0.062906377017498,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978808522224426,0.181553184986115,-0.0947234109044075,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.982912182807922,-0.172992557287216,0.062906377017498,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.978808522224426,0.181553184986115,-0.0947234109044075,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.989278018474579,0.117771193385124,0.0863655433058739,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983764111995697,-0.0472206771373749,0.173142492771149,-0.979510545730591,-0.134287729859352,0.150086298584938,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.979510545730591,-0.134287729859352,0.150086298584938,-0.982912182807922,0.062906377017498,0.172992557287216,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.97710520029068,-0.212756782770157,-4.72414957753202e-017,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978808522224426,-0.0947234109044075,-0.181553184986115,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.982912182807922,0.062906377017498,0.172992557287216,-0.983764111995697,0.173142492771149,0.0472206771373749,-0.978808522224426,-0.0947234109044075,-0.181553184986115,
  1268. -0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.989278018474579,0.0863655433058739,-0.117771193385124,-0.989278018474579,0.0863655433058739,-0.117771193385124,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983764111995697,0.173142492771149,0.0472206771373749,-0.981456816196442,-0.157033085823059,-0.109923161566257,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.981456816196442,-0.157033085823059,-0.109923161566257,-0.983124971389771,-0.165164992213249,0.0786499977111816,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.978442788124084,-0.0236720032989979,-0.205157354474068,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.979021966457367,0.165802091360092,-0.118430078029633,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983124971389771,-0.165164992213249,0.0786499977111816,-0.983216226100922,-0.0235971882939339,0.180911779403687,-0.979021966457367,0.165802091360092,-0.118430078029633,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.988973200321198,0.125583902001381,0.0784899368882179,-0.988973200321198,0.125583902001381,0.0784899368882179,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.983216226100922,-0.0235971882939339,0.180911779403687,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.978716969490051,-0.0789287835359573,-0.189429089426994,
  1269. -0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.981941223144531,-0.141399532556534,0.125688478350639,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.978716969490051,-0.0789287835359573,-0.189429089426994,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.987687170505524,0.110620968043804,-0.110620968043804,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983703315258026,0.165262147784233,0.0708266347646713,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.978320896625519,0.157793685793877,0.134124636650085,-0.979785799980164,0.197537466883659,-0.0316059924662113,-0.982396006584167,0.0707325115799904,-0.172901704907417,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.978320896625519,0.157793685793877,0.134124636650085,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.979510545730591,-0.0394963920116425,0.197481960058212,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.982396006584167,0.0707325115799904,-0.172901704907417,-0.983459711074829,-0.102279812097549,-0.149485886096954,-0.979510545730591,-0.0394963920116425,0.197481960058212,
  1270. -0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.988334119319916,-0.149034515023232,0.0313756838440895,-0.988334119319916,-0.149034515023232,0.0313756838440895,-0.999845147132874,-0.0157455932348967,0.00787279661744833,-0.983459711074829,-0.102279812097549,-0.149485886096954,-0.979646801948547,-0.156743481755257,0.12539479136467,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.979646801948547,-0.156743481755257,0.12539479136467,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.976620197296143,-0.212651163339615,-0.0315038748085499,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983003377914429,0.0314561054110527,0.180872619152069,-0.983124971389771,0.165164992213249,0.0786499977111816,-0.977803647518158,-0.0709696188569069,-0.197137832641602,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.98869913816452,0.109855458140373,-0.102008640766144,-0.98869913816452,0.109855458140373,-0.102008640766144,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.983124971389771,0.165164992213249,0.0786499977111816,-0.993389487266541,0.0315361730754375,0.110376611351967,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.993389487266541,0.0315361730754375,0.110376611351967,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.980822145938873,-0.125545233488083,0.149084970355034,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.963171243667603,-0.26842474937439,-0.0157896913588047,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.991020619869232,0.117978647351265,-0.062921941280365,-0.978229522705078,0.0315557904541492,-0.205112636089325,-0.963171243667603,-0.26842474937439,-0.0157896913588047,
  1271. -0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.972005605697632,-0.158049687743187,-0.173854663968086,-0.972005605697632,-0.158049687743187,-0.173854663968086,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.978229522705078,0.0315557904541492,-0.205112636089325,-0.979296684265137,0.0710779801011086,-0.189541295170784,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.979296684265137,0.0710779801011086,-0.189541295170784,-0.967395067214966,-0.110110007226467,-0.22808501124382,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.989186525344849,0.141312345862389,-0.0392534323036671,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990744948387146,0.0235891658812761,0.133671939373016,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.967395067214966,-0.110110007226467,-0.22808501124382,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.990744948387146,0.0235891658812761,0.133671939373016,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.984221458435059,-0.165349200367928,0.0629901736974716,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.967394948005676,-0.228084981441498,-0.110109992325306,-0.984954476356506,0.118194542825222,-0.126074180006981,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990928769111633,0.125832229852676,0.0471870861947536,-0.984954476356506,0.118194542825222,-0.126074180006981,-0.972552359104156,-0.0395346470177174,-0.229300960898399,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.990928769111633,0.125832229852676,0.0471870861947536,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.987132668495178,-0.0552794300019741,0.150044173002243,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.972552359104156,-0.0395346470177174,-0.229300960898399,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.987132668495178,-0.0552794300019741,0.150044173002243,
  1272. -0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.980244815349579,-0.197630003094673,0.00790520012378693,-0.980244815349579,-0.197630003094673,0.00790520012378693,-0.995744228363037,-0.0790273174643517,-0.0474163927137852,-0.964705765247345,-0.197685599327087,-0.173963338136673,-0.964772641658783,-0.258841425180435,-0.0470620803534985,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.964772641658783,-0.258841425180435,-0.0470620803534985,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.955216884613037,-0.213147565722466,-0.205253198742867,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.982638835906982,-0.149361103773117,0.110055543482304,-0.994440853595734,0.0236771646887064,0.102601043879986,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.993698358535767,0.0867514461278915,-0.0709784477949142,-0.993698358535767,0.0867514461278915,-0.0709784477949142,-0.99737536907196,-0.0471200942993164,-0.0549734458327293,-0.994440853595734,0.0236771646887064,0.102601043879986
  1273. }
  1274. NormalsW: *2199 {
  1275. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1276. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1277. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1278. }
  1279. }
  1280. LayerElementBinormal: 0 {
  1281. Version: 102
  1282. Name: "UVmap_0"
  1283. MappingInformationType: "ByPolygonVertex"
  1284. ReferenceInformationType: "Direct"
  1285. Binormals: *6597 {
  1286. a: 0.187854617834091,-0.968943417072296,0.16080816090107,0.188804611563683,-0.968701481819153,0.161152794957161,-0.0167082417756319,-0.996296584606171,0.0843439474701881,0.208939403295517,-0.852078676223755,-0.479902565479279,0.192032501101494,-0.856752812862396,-0.478641986846924,0.258261412382126,-0.836812615394592,-0.482747972011566,0.168026268482208,-0.909470856189728,0.380302459001541,0.0450644344091415,-0.935807704925537,0.349618554115295,-0.105232611298561,-0.946686148643494,0.304485529661179,0.209927126765251,-0.853682518005371,-0.476609647274017,0.156355530023575,-0.870033800601959,-0.467540681362152,0.192364528775215,-0.859369397163391,-0.473793387413025,0.112841315567493,-0.900503277778625,-0.419953256845474,0.194612875580788,-0.877695262432098,-0.437923431396484,0.168266415596008,-0.885813236236572,-0.432459712028503,0.173603847622871,-0.89252769947052,-0.416240274906158,0.125623151659966,-0.90621554851532,-0.403722941875458,0.116728439927101,-0.908480405807495,-0.401295155286789,0.167816415429115,-0.985576689243317,0.0218237116932869,0.196156397461891,-0.97994601726532,0.0350511260330677,0.104341171681881,-0.994512557983398,-0.0075989281758666,0.125668153166771,-0.925701856613159,-0.356768250465393,0.138826817274094,-0.92412257194519,-0.355984002351761,0.198620319366455,-0.91483610868454,-0.351603329181671,0.129904940724373,-0.959160506725311,-0.251268833875656,0.0908800885081291,-0.961545050144196,-0.259175509214401,0.245988935232162,-0.942776381969452,-0.225082725286484,0.189763054251671,-0.870094180107117,-0.454891413450241,0.301905542612076,-0.848726153373718,-0.434185445308685,0.141503691673279,-0.87561571598053,-0.46181583404541,0.116810262203217,-0.924713969230652,-0.362297534942627,-0.00947241485118866,-0.911181807518005,-0.41189569234848,0.15704770386219,-0.925415992736816,-0.344878882169724,0.0316237695515156,-0.868304371833801,-0.495022922754288,0.137828126549721,-0.883896887302399,-0.446911543607712,0.0796553492546082,-0.876839339733124,-0.474138975143433,0.121638752520084,-0.916268706321716,-0.381648808717728,
  1287. 0.140717208385468,-0.914012610912323,-0.3804991543293,0.0645514354109764,-0.920976042747498,-0.384234726428986,0.0782106593251228,-0.881564497947693,-0.465539664030075,0.169634014368057,-0.886950612068176,-0.429584562778473,0.0260103642940521,-0.874717533588409,-0.483934611082077,0.123949006199837,-0.922516703605652,-0.365512847900391,0.0728865340352058,-0.926774740219116,-0.368478387594223,0.139485791325569,-0.920731067657471,-0.364414751529694,0.0602701492607594,-0.931485593318939,-0.358750909566879,0.139529094099998,-0.920503377914429,-0.364972919225693,0.0727611184120178,-0.930156052112579,-0.35988262295723,0.110705293715,-0.918977797031403,-0.378449559211731,0.0731141120195389,-0.919923901557922,-0.385220170021057,0.121795907616615,-0.918440937995911,-0.376340568065643,0.109000198543072,-0.914718747138977,-0.38911247253418,0.118748962879181,-0.912512600421906,-0.391432464122772,0.129057064652443,-0.910072147846222,-0.39384388923645,0.0727672874927521,-0.92999541759491,-0.360296338796616,0.108318194746971,-0.925226449966431,-0.363625079393387,0.0603157430887222,-0.93137800693512,-0.359022289514542,0.073109544813633,-0.920071840286255,-0.384867399930954,0.110780216753483,-0.91916298866272,-0.377977669239044,0.108570091426373,-0.919253766536713,-0.378398060798645,0.129070609807968,-0.910087168216705,-0.393804728984833,0.062599740922451,-0.924013137817383,-0.377201855182648,0.109020993113518,-0.914771258831024,-0.388983368873596,0.108645558357239,-0.91727477312088,-0.383149027824402,0.10999258607626,-0.917208135128021,-0.38292407989502,0.0602086298167706,-0.918529331684113,-0.390741348266602,0.0639007836580276,-0.926924526691437,-0.369766891002655,0.131179839372635,-0.912408411502838,-0.387689024209976,0.042268380522728,-0.930585265159607,-0.36362686753273,0.0419858247041702,-0.930253088474274,-0.364508420228958,-0.0612908937036991,-0.939838409423828,-0.33607617020607,0.0638592839241028,-0.926832437515259,-0.370004802942276,-0.0739870667457581,-0.905831396579742,-0.41712760925293,0.108689434826374,-0.916076421737671,-0.385993182659149,
  1288. 0.059309009462595,-0.916422128677368,-0.395794093608856,-0.062170073390007,-0.937759637832642,-0.341674983501434,0.0406352952122688,-0.928653717041016,-0.368715465068817,-0.107112675905228,-0.938387513160706,-0.328566282987595,-0.11540836840868,-0.923388957977295,-0.366106271743774,-0.221886277198792,-0.909489572048187,-0.351561039686203,-0.066812664270401,-0.926116764545441,-0.371273308992386,-0.13017438352108,-0.912644684314728,-0.387471824884415,0.108560852706432,-0.919489443302155,-0.377827644348145,-0.069293387234211,-0.919425010681152,-0.387112438678741,-0.221798688173294,-0.913395881652832,-0.341340452432632,-0.12993711233139,-0.925733387470245,-0.355153530836105,-0.0655015707015991,-0.929519653320313,-0.362908840179443,-0.221912920475006,-0.887393176555634,-0.404089152812958,-0.0487475953996181,-0.917414367198944,-0.394936144351959,-0.13022643327713,-0.906878769397736,-0.400764286518097,-0.0512180998921394,-0.926218330860138,-0.373492151498795,0.108510941267014,-0.920738339424133,-0.374788403511047,-0.130060061812401,-0.920160710811615,-0.369308233261108,-0.0466477610170841,-0.909618139266968,-0.412818223237991,-0.221796676516533,-0.880937993526459,-0.418036490678787,-0.118312552571297,-0.901391863822937,-0.416527152061462,0.0610971637070179,-0.929520666599274,-0.363673597574234,0.108367830514908,-0.924117565155029,-0.366419434547424,0.119263768196106,-0.922569334506989,-0.366935938596725,-0.0534901022911072,-0.933952271938324,-0.353372246026993,0.119311854243279,-0.922395586967468,-0.367356866598129,0.108374424278736,-0.923967778682709,-0.366794943809509,0.19668373465538,-0.850496411323547,-0.487823128700256,0.0916844829916954,-0.832923054695129,-0.545741021633148,0.135841190814972,-0.84177827835083,-0.522452473640442,-0.1092419475317,-0.883087515830994,-0.456314235925674,0.0947268381714821,-0.908044159412384,-0.408023059368134,-0.043047733604908,-0.895604491233826,-0.44276350736618,0.122990682721138,-0.908231377601624,-0.399986356496811,-0.0459693372249603,-0.907039165496826,-0.41852942109108,0.0935505330562592,-0.90992546081543,-0.404084056615829,
  1289. 0.13251668214798,-0.862020373344421,-0.489244610071182,0.120658971369267,-0.860837340354919,-0.4943687915802,0.186043739318848,-0.865564942359924,-0.46495708823204,0.105334669351578,-0.890083432197571,-0.443459421396255,-0.0986232310533524,-0.860039532184601,-0.500605344772339,0.14002189040184,-0.89115297794342,-0.431555658578873,0.137109741568565,-0.895629525184631,-0.423141419887543,0.16321237385273,-0.894733667373657,-0.415708392858505,0.102074809372425,-0.895795702934265,-0.43258610367775,0.187609404325485,-0.65490448474884,0.732053816318512,0.181520938873291,-0.657476425170898,0.731283128261566,-0.0146479457616806,-0.723484575748444,0.690185129642487,0.203735440969467,-0.965782999992371,0.16048364341259,0.186438411474228,-0.968603610992432,0.164462223649025,0.258532494306564,-0.954685866832733,0.147430866956711,0.160838648676872,-0.473572880029678,0.865944385528564,0.0437166951596737,-0.511140108108521,0.858384907245636,-0.102726809680462,-0.546989560127258,0.830812633037567,0.204864740371704,-0.964866638183594,0.164507955312729,0.151176780462265,-0.971648514270782,0.181782424449921,0.186772257089615,-0.967510044574738,0.170412600040436,0.113664865493774,-0.965065121650696,0.236071169376373,0.188832461833954,-0.959264814853668,0.210127145051956,0.163077116012573,-0.961951613426209,0.219214305281639,0.168446823954582,-0.956976711750031,0.236265197396278,0.128056600689888,-0.95930290222168,0.251673310995102,0.117562040686607,-0.959612131118774,0.255585014820099,0.166774526238441,-0.755285799503326,0.633821487426758,0.188962683081627,-0.745460212230682,0.639204323291779,0.105051688849926,-0.779962301254272,0.616946458816528,0.126594230532646,-0.945064008235931,0.301376700401306,0.141268730163574,-0.94311910867691,0.300947666168213,0.192349746823311,-0.934689283370972,0.298927694559097,0.131821289658546,-0.904846370220184,0.404816299676895,0.0955115556716919,-0.91129732131958,0.400518089532852,0.245133653283119,-0.876314640045166,0.414707601070404,0.190007835626602,-0.963206708431244,0.19007870554924,0.301327645778656,-0.93381941318512,0.192829102277756,
  1290. 0.146375387907028,-0.971133828163147,0.188343673944473,0.121310658752918,-0.946807503700256,0.298059195280075,-0.0147052276879549,-0.968837559223175,0.24726040661335,0.157861888408661,-0.937284827232361,0.310768067836761,0.02665064483881,-0.987489223480225,0.155418157577515,0.142311826348305,-0.967956900596619,0.206898003816605,0.0790710374712944,-0.980658710002899,0.179042652249336,0.12655970454216,-0.952795743942261,0.27597638964653,0.143273785710335,-0.950562417507172,0.275506317615509,0.0642455220222473,-0.958709955215454,0.277033686637878,0.0776479095220566,-0.97894674539566,0.188769906759262,0.167193040251732,-0.961168169975281,0.219550088047981,0.0208355057984591,-0.985486745834351,0.168468728661537,0.124870270490646,-0.948055148124695,0.292573034763336,0.0698827132582664,-0.953573882579803,0.292939215898514,0.141965299844742,-0.945738255977631,0.292275577783585,0.0600505731999874,-0.950939416885376,0.303493171930313,0.142040342092514,-0.946018397808075,0.291331112384796,0.0697517022490501,-0.950699925422668,0.302166283130646,0.11035643517971,-0.953554153442383,0.280278235673904,0.07011479139328,-0.958815217018127,0.275240808725357,0.122740365564823,-0.951608240604401,0.281738460063934,0.108652159571648,-0.95688396692276,0.269384026527405,0.119591265916824,-0.956580817699432,0.265802592039108,0.13148920238018,-0.95610636472702,0.26186129450798,0.0697573125362396,-0.950821816921234,0.301781266927719,0.110132910311222,-0.94898909330368,0.295449793338776,0.0600944645702839,-0.951024174690247,0.303219109773636,0.0701103284955025,-0.958712518215179,0.275599092245102,0.110431618988514,-0.95340371131897,0.280760109424591,0.110390856862068,-0.953409850597382,0.28075510263443,0.13149781525135,-0.956098139286041,0.261886864900589,0.0652130544185638,-0.956736743450165,0.283552646636963,0.108672730624676,-0.956844747066498,0.269515156745911,0.110472746193409,-0.954863727092743,0.275737106800079,0.109634131193161,-0.954984486103058,0.27565410733223,0.0630192682147026,-0.960588216781616,0.270737826824188,0.0665143132209778,-0.954358696937561,0.291162341833115,
  1291. 0.133591771125793,-0.954080998897552,0.268109738826752,0.0440147705376148,-0.953380882740021,0.298542529344559,0.043743908405304,-0.953656375408173,0.297701388597488,-0.0590368285775185,-0.943591713905334,0.325805872678757,0.0664868727326393,-0.954409539699554,0.291001796722412,-0.0715387314558029,-0.967540562152863,0.242378935217857,0.110518239438534,-0.955683708190918,0.272863179445267,0.0621420443058014,-0.962073385715485,0.265618562698364,-0.0599097013473511,-0.945468068122864,0.320158064365387,0.0423728600144386,-0.955037534236908,0.29344168305397,-0.102943070232868,-0.938221752643585,0.33036744594574,-0.111312173306942,-0.949766635894775,0.292494714260101,-0.221419483423233,-0.929394125938416,0.295296639204025,-0.0644721463322639,-0.954787373542786,0.290214508771896,-0.129727348685265,-0.954269528388977,0.26933354139328,0.110384598374367,-0.953299880027771,0.281130850315094,-0.066900797188282,-0.959406077861786,0.273978590965271,-0.221359759569168,-0.92602813243866,0.305731385946274,-0.129513904452324,-0.944253981113434,0.302672237157822,-0.0631663054227829,-0.952204763889313,0.298858135938644,-0.221301630139351,-0.945059239864349,0.240600436925888,-0.0470236837863922,-0.962646722793579,0.266646087169647,-0.129769876599312,-0.958098828792572,0.255355477333069,-0.0495410971343517,-0.956149458885193,0.288658648729324,0.110333994030952,-0.952415645122528,0.284131944179535,-0.129626527428627,-0.948772728443146,0.288144707679749,-0.0448625758290291,-0.9677694439888,0.2478097230196,-0.221147060394287,-0.94876354932785,0.225702539086342,-0.119134910404682,-0.963562846183777,0.239485919475555,0.0608591176569462,-0.952487885951996,0.298434495925903,0.110184043645859,-0.949848294258118,0.292656540870667,0.125573202967644,-0.948538839817047,0.290698498487473,-0.0518686212599278,-0.949620425701141,0.309080362319946,0.125624388456345,-0.948676645755768,0.290226131677628,0.110191330313683,-0.949971497058868,0.292253345251083,0.194665431976318,-0.969173491001129,0.151023626327515,0.0908693969249725,-0.991273939609528,0.0954929515719414,
  1292. 0.141462922096252,-0.982316970825195,0.122644618153572,-0.109798677265644,-0.974247872829437,0.196939826011658,0.0908497422933578,-0.964112877845764,0.249464705586433,-0.041199017316103,-0.975523352622986,0.216001957654953,0.129110977053642,-0.957700133323669,0.257178902626038,-0.0441661179065704,-0.969332695007324,0.241751044988632,0.0895180627703667,-0.96296888589859,0.254317462444305,0.138278305530548,-0.977302670478821,0.160495430231094,0.116746470332146,-0.981477379798889,0.151896581053734,0.18382316827774,-0.966618061065674,0.178489655256271,0.101429924368858,-0.97234982252121,0.210351556539536,-0.0989020019769669,-0.984025835990906,0.148025527596474,0.140145495533943,-0.965043485164642,0.221473574638367,0.137205392122269,-0.963273167610168,0.230823710560799,0.160586073994637,-0.95851069688797,0.235519453883171,0.0981170535087585,-0.969935476779938,0.222706690430641,0.22569528222084,-0.909716844558716,0.348535418510437,0.222193524241447,-0.910993456840515,0.347449243068695,0.023652870208025,-0.959918022155762,0.279281079769135,0.243025973439217,-0.921582698822021,-0.302694201469421,0.226005494594574,-0.92662250995636,-0.300486594438553,0.294752568006516,-0.904281675815582,-0.308861702680588,0.197708413004875,-0.810604512691498,0.551209330558777,0.076911598443985,-0.846820175647736,0.526289105415344,-0.067071370780468,-0.871520817279816,0.485750108957291,0.24411216378212,-0.922533750534058,-0.298899322748184,0.192522987723351,-0.938360452651978,-0.287079393863678,0.226416185498238,-0.928306400775909,-0.294928669929504,0.156506314873695,-0.959006905555725,-0.236244797706604,0.229057967662811,-0.939137697219849,-0.256033271551132,0.205002635717392,-0.946399748325348,-0.249602422118187,0.210587501525879,-0.949557781219482,-0.232363760471344,0.162575736641884,-0.962486267089844,-0.217231526970863,0.160512983798981,-0.962980985641479,-0.216571390628815,0.203612118959427,-0.955373167991638,0.214019328355789,0.230849042534828,-0.946481108665466,0.225571155548096,0.143654897809029,-0.971573889255524,0.188168540596962,
  1293. 0.170099020004272,-0.971051633358002,-0.167705550789833,0.180243149399757,-0.969282686710358,-0.167342871427536,0.233703464269638,-0.958184242248535,-0.165123149752617,0.171215862035751,-0.983555018901825,-0.0574867911636829,0.137732446193695,-0.98841392993927,-0.0637789815664291,0.281525731086731,-0.958878636360168,-0.0359866246581078,0.225079849362373,-0.934638500213623,-0.275299787521362,0.335274428129196,-0.905701100826263,-0.259415805339813,0.186894908547401,-0.941668629646301,-0.279875725507736,0.162814408540726,-0.971809327602386,-0.170523151755333,0.0294732414186001,-0.973958969116211,-0.224800854921341,0.193733364343643,-0.968373954296112,-0.157223641872406,0.0697165802121162,-0.946659982204437,-0.31460240483284,0.182856529951096,-0.94786661863327,-0.260983735322952,0.115307547152042,-0.948932290077209,-0.29365262389183,0.168087035417557,-0.966528415679932,-0.193828701972961,0.182072341442108,-0.964096009731293,-0.193309724330902,0.101547718048096,-0.975381672382355,-0.195751518011093,0.11399507522583,-0.952003598213196,-0.284067630767822,0.209934234619141,-0.946287035942078,-0.245903715491295,0.064244456589222,-0.950985193252563,-0.302489697933197,0.168346345424652,-0.969735682010651,-0.176839560270309,0.105190269649029,-0.978135704994202,-0.179403230547905,0.180883318185806,-0.967584729194641,-0.176241174340248,0.0975808277726173,-0.980861008167267,-0.168492749333382,0.180952981114388,-0.967392802238464,-0.177221044898033,0.105136148631573,-0.979935526847839,-0.169330582022667,0.147566616535187,-0.970479965209961,-0.190768748521805,0.105261467397213,-0.97453111410141,-0.19801327586174,0.166291147470474,-0.968099236488342,-0.187433332204819,0.14588275551796,-0.968614935874939,-0.201254293322563,0.16264209151268,-0.964953422546387,-0.205942898988724,0.166017904877663,-0.964177548885345,-0.206881165504456,0.105138249695301,-0.979873776435852,-0.169686421751976,0.146035239100456,-0.973755061626434,-0.17457027733326,0.0976198613643646,-0.980811357498169,-0.168759003281593,0.105260454118252,-0.974603176116943,-0.197658598423004,
  1294. 0.147645220160484,-0.970564723014832,-0.190276175737381,0.146236136555672,-0.970728635787964,-0.190528109669685,0.1660325974226,-0.964184522628784,-0.206836879253387,0.0967375785112381,-0.977618455886841,-0.186826154589653,0.145905569195747,-0.968640804290771,-0.201113060116768,0.146291941404343,-0.969712436199188,-0.195592656731606,0.146807298064232,-0.969650626182556,-0.195513159036636,0.0938353091478348,-0.974594414234161,-0.203373476862907,0.0981244817376137,-0.978972494602203,-0.178842067718506,0.16819041967392,-0.965189337730408,-0.200304076075554,0.0797449052333832,-0.98167484998703,-0.173076093196869,0.0794398114085197,-0.981525182723999,-0.174062430858612,-0.0218347199261189,-0.989220201969147,-0.144798666238785,0.0980527848005295,-0.978903949260712,-0.179256051778793,-0.0348201766610146,-0.972351253032684,-0.230912759900093,0.146323904395103,-0.969083309173584,-0.198663115501404,0.0928428173065186,-0.973502099514008,-0.208983272314072,-0.0227267947047949,-0.988316118717194,-0.150714531540871,0.07805485278368,-0.980832815170288,-0.178533986210823,-0.0632743835449219,-0.98826402425766,-0.139034584164619,-0.0718367695808411,-0.981417238712311,-0.177931815385818,-0.184868380427361,-0.968678176403046,-0.165789932012558,-0.0274506118148565,-0.982907831668854,-0.182040885090828,-0.0915205627679825,-0.975399374961853,-0.200549528002739,0.146228119730949,-0.970866799354553,-0.189828872680664,-0.029985761269927,-0.97957056760788,-0.198852941393852,-0.184768289327621,-0.970489144325256,-0.154956996440887,-0.0909972563385963,-0.981874525547028,-0.16625851392746,-0.0261099394410849,-0.984549343585968,-0.173150107264519,-0.185028940439224,-0.957351744174957,-0.221905469894409,-0.0113297002390027,-0.978249669075012,-0.2071213722229,-0.0917055979371071,-0.972352683544159,-0.214756473898888,-0.0136633552610874,-0.982805669307709,-0.184136658906937,0.146189451217651,-0.971510708332062,-0.186535835266113,-0.0912395268678665,-0.979192733764648,-0.181264892220497,-0.00938649848103523,-0.974052846431732,-0.226126044988632,-0.18496909737587,-0.953790307044983,-0.236792057752609,
  1295. -0.0763429030776024,-0.969946622848511,-0.231030911207199,0.0983469411730766,-0.979870915412903,-0.173726469278336,0.146075621247292,-0.973210513591766,-0.177548184990883,0.16261550784111,-0.970357358455658,-0.178781569004059,-0.0158193968236446,-0.986541628837585,-0.16274356842041,0.162662342190742,-0.970262169837952,-0.179254755377769,0.146080926060677,-0.97313666343689,-0.177947863936424,0.236137360334396,-0.92105370759964,-0.309676021337509,0.125848188996315,-0.919313728809357,-0.372860014438629,0.176862716674805,-0.921964824199677,-0.344529628753662,-0.0676288083195686,-0.959606528282166,-0.273096650838852,0.13472044467926,-0.965871572494507,-0.221230030059814,-0.00604707840830088,-0.965991675853729,-0.258502900600433,0.165928408503532,-0.962830662727356,-0.213131159543991,-0.00875600520521402,-0.972612917423248,-0.232266247272491,0.133646249771118,-0.966931819915771,-0.217213064432144,0.174146175384521,-0.935160100460052,-0.308461904525757,0.159395173192024,-0.935603737831116,-0.315022259950638,0.225916773080826,-0.931636810302734,-0.284630507230759,0.144867956638336,-0.954831957817078,-0.259440094232559,-0.0574355199933052,-0.945385754108429,-0.320853739976883,0.179752930998802,-0.952080965042114,-0.247448310256004,0.176957592368126,-0.954898595809937,-0.238442167639732,0.203765049576759,-0.951355338096619,-0.231090724468231,0.141777247190475,-0.958393812179565,-0.24775093793869,0.192976087331772,-0.981172263622284,-0.0078302389010787,0.18318572640419,-0.983007967472076,-0.0117607228457928,-0.015721557661891,-0.995856881141663,-0.0895651653409004,0.206732049584389,-0.756423652172089,-0.62055230140686,0.186367303133011,-0.762161195278168,-0.61998188495636,0.265086024999619,-0.737928926944733,-0.620637059211731,0.162975490093231,-0.962869167327881,0.215225726366043,0.0409267768263817,-0.982707142829895,0.180587098002434,-0.103169560432434,-0.98530375957489,0.136134475469589,0.207768589258194,-0.75869482755661,-0.617425620555878,0.149574413895607,-0.777657985687256,-0.61063539981842,0.186718970537186,-0.765916705131531,-0.615229785442352,
  1296. 0.115312933921814,-0.813222169876099,-0.570414423942566,0.188895225524902,-0.790320634841919,-0.582848131656647,0.161541357636452,-0.799440085887909,-0.578619003295898,0.166950583457947,-0.80900764465332,-0.563590466976166,0.128484755754471,-0.821482062339783,-0.555570840835571,0.119261890649796,-0.82425594329834,-0.553515076637268,0.163902923464775,-0.974764466285706,-0.151559233665466,0.190326452255249,-0.971896290779114,-0.138540580868721,0.102847918868065,-0.978114068508148,-0.180873453617096,0.128558799624443,-0.849380731582642,-0.511883974075317,0.137393981218338,-0.848421990871429,-0.511178135871887,0.192676454782486,-0.840851306915283,-0.505811095237732,0.128428384661675,-0.901029467582703,-0.414309024810791,0.0949575081467628,-0.901907384395599,-0.421362161636353,0.242133438587189,-0.889976799488068,-0.386410117149353,0.186828106641769,-0.778187274932861,-0.599599719047546,0.298565357923508,-0.76110702753067,-0.575825393199921,0.145034655928612,-0.781864762306213,-0.606343507766724,0.120429776608944,-0.848135113716125,-0.515910387039185,-0.0135416965931654,-0.824828863143921,-0.565220296382904,0.154585421085358,-0.851271152496338,-0.501438677310944,0.0275093615055084,-0.768039464950562,-0.639811515808105,0.141129225492477,-0.793443560600281,-0.592055678367615,0.0744532942771912,-0.780001044273376,-0.621333360671997,0.125503748655319,-0.83571058511734,-0.534636914730072,0.139298230409622,-0.834233939647675,-0.533525884151459,0.0592654198408127,-0.840529263019562,-0.538514733314514,0.0729629471898079,-0.786464095115662,-0.613311231136322,0.170830190181732,-0.799000263214111,-0.576555013656616,0.021759582683444,-0.776503503322601,-0.629737079143524,0.126810342073441,-0.8447505235672,-0.519919097423553,0.0715338364243507,-0.848769962787628,-0.523901224136353,0.138060063123703,-0.8436079621315,-0.51890766620636,0.0549690946936607,-0.855618178844452,-0.514680504798889,0.138089701533318,-0.843390047550201,-0.519253730773926,0.0714253112673759,-0.853682219982147,-0.515873193740845,0.109376400709152,-0.839311718940735,-0.532534182071686,
  1297. 0.0717263519763947,-0.839022994041443,-0.539347648620605,0.124690532684326,-0.839076638221741,-0.529530584812164,0.107704788446426,-0.83359432220459,-0.541775226593018,0.121341913938522,-0.829983115196228,-0.544430196285248,0.131940126419067,-0.827053666114807,-0.546419262886047,0.0714303851127625,-0.853460133075714,-0.516239762306213,0.104392677545547,-0.848646342754364,-0.518557190895081,0.0550036057829857,-0.855500280857086,-0.514872610569,0.0717225968837738,-0.839228212833405,-0.539028704166412,0.109453596174717,-0.839574337005615,-0.532104134559631,0.104707673192024,-0.839598774909973,-0.53301990032196,0.131949499249458,-0.827068686485291,-0.546394288539886,0.0660926699638367,-0.843712568283081,-0.532710909843445,0.107727266848087,-0.833671569824219,-0.541651725769043,0.104795232415199,-0.836868643760681,-0.537279188632965,0.10864046216011,-0.836801469326019,-0.536619484424591,0.0639469027519226,-0.836796402931213,-0.543767035007477,0.0673938393592834,-0.847852528095245,-0.525931835174561,0.134041666984558,-0.830404043197632,-0.540797591209412,0.0380729660391808,-0.85417377948761,-0.518592000007629,0.0377462133765221,-0.85362434387207,-0.519519627094269,-0.0612376779317856,-0.867208957672119,-0.494164615869522,0.0673708766698837,-0.847779750823975,-0.526051998138428,-0.0732221230864525,-0.819754958152771,-0.568014442920685,0.104850262403488,-0.835096478462219,-0.540018737316132,0.0630713701248169,-0.833942890167236,-0.548234760761261,-0.0620719976723194,-0.864182591438293,-0.499334961175919,0.0363648273050785,-0.851290822029114,-0.523432612419128,-0.100272729992867,-0.866766631603241,-0.4885293841362,-0.108378037810326,-0.846176028251648,-0.521766543388367,-0.222494423389435,-0.834535300731659,-0.504030764102936,-0.0664635896682739,-0.847585678100586,-0.52648001909256,-0.124456256628037,-0.832267820835114,-0.540223062038422,0.104689106345177,-0.840164184570313,-0.532131969928741,-0.0688013955950737,-0.838280558586121,-0.540880799293518,-0.222444757819176,-0.84015828371048,-0.494623392820358,-0.124258369207382,-0.85036164522171,-0.511317014694214,
  1298. -0.0652226880192757,-0.852390646934509,-0.518821954727173,-0.222320720553398,-0.803626596927643,-0.552048683166504,-0.0512898936867714,-0.83461731672287,-0.548437178134918,-0.124495849013329,-0.824487090110779,-0.552016139030457,-0.0538513287901878,-0.847198843955994,-0.528539657592773,0.104625776410103,-0.842061221599579,-0.529137313365936,-0.124362260103226,-0.842607140541077,-0.523972511291504,-0.049154594540596,-0.823882818222046,-0.564624667167664,-0.222150579094887,-0.794879138469696,-0.564638137817383,-0.119060486555099,-0.815256237983704,-0.566729128360748,0.0557941943407059,-0.852786421775818,-0.519271016120911,0.104452416300774,-0.847014486789703,-0.521206617355347,0.12397862970829,-0.844114422798157,-0.521632075309753,-0.0561940670013428,-0.858415246009827,-0.509868204593658,0.124031767249107,-0.843852818012238,-0.522042751312256,0.10445997864008,-0.846804976463318,-0.521545231342316,0.197932064533234,-0.753119111061096,-0.62740296125412,0.0863652899861336,-0.723832249641418,-0.684549510478973,0.140807941555977,-0.739579319953918,-0.658175945281982,-0.109765991568565,-0.790291368961334,-0.602819263935089,0.0951541066169739,-0.823418796062469,-0.559399127960205,-0.0454300083220005,-0.804641664028168,-0.592020153999329,0.127731293439865,-0.824739575386047,-0.550898730754852,-0.0484562665224075,-0.820324718952179,-0.569841504096985,0.0939981639385223,-0.825910031795502,-0.555910885334015,0.137426808476448,-0.764759123325348,-0.629489839076996,0.121089771389961,-0.761966228485107,-0.636195600032806,0.187311589717865,-0.771805644035339,-0.607643365859985,0.105752751231194,-0.799614727497101,-0.591128468513489,-0.0989302843809128,-0.759975612163544,-0.642378330230713,0.144062593579292,-0.802984654903412,-0.57832658290863,0.141206309199333,-0.808662295341492,-0.571074545383453,0.16444505751133,-0.808971583843231,-0.564378142356873,0.102499820291996,-0.807107090950012,-0.581439554691315,-0.0573161654174328,-0.696832299232483,0.714940369129181,-0.227261036634445,-0.681302726268768,0.695829749107361,-0.13620762526989,-0.692209661006927,0.708726525306702,
  1299. 0.00835860427469015,-0.698256134986877,0.71579921245575,-0.0558082759380341,-0.707569062709808,0.704437077045441,-0.131679266691208,-0.714644074440002,0.686982214450836,-0.229123547673225,-0.71912282705307,0.656021952629089,-0.0556422136723995,-0.708736121654511,0.703275978565216,-0.163584187626839,-0.717913687229156,0.676638960838318,-0.20004041492939,-0.642124235630035,0.740040838718414,-0.224141150712967,-0.633486986160278,0.740577518939972,-0.158102080225945,-0.656051278114319,0.737970471382141,-0.0556402429938316,-0.708749949932098,0.703262209892273,0.00864773243665695,-0.699071884155273,0.714999198913574,0.0205470863729715,-0.696945190429688,0.71683007478714,0.0510472506284714,-0.689891815185547,0.722110450267792,0.020513528957963,-0.696767270565033,0.71700394153595,0.0087063005194068,-0.699237048625946,0.714836955070496,-0.159333914518356,-0.669246852397919,0.725755751132965,-0.0807953700423241,-0.686073005199432,0.723032414913177,-0.205291301012039,-0.657264292240143,0.725161492824554,-0.0131723284721375,-0.69739705324173,0.716563940048218,-0.200718089938164,-0.644079983234406,0.738155245780945,-0.0800368338823318,-0.681496441364288,0.727431654930115,-0.160889655351639,-0.686433434486389,0.709171116352081,-0.0573893040418625,-0.696304976940155,0.715448081493378,0.0111340768635273,-0.698683083057404,0.715344727039337,-0.0825977027416229,-0.696914255619049,0.712382018566132,-0.161509662866592,-0.693466603755951,0.702152907848358,0.0111333336681128,-0.695297360420227,0.718636035919189,-0.0575232096016407,-0.695338189601898,0.716376960277557,0.0210326183587313,-0.699514329433441,0.714309096336365,0.0111341737210751,-0.699226438999176,0.714813590049744,-0.0119709651917219,-0.694725632667542,0.719175219535828,-0.0787762776017189,-0.67387318611145,0.734635412693024,0.0232924669981003,-0.704287648200989,0.709532499313354,0.0256542637944222,-0.694909274578094,0.718639731407166,-0.0828971937298775,-0.698711216449738,0.710584759712219,0.0111334836110473,-0.695896804332733,0.718055546283722,0.0803524851799011,-0.721227169036865,0.688022434711456,
  1300. -0.0107075283303857,-0.691905081272125,0.721909165382385,0.0234317108988762,-0.703738629817963,0.71007251739502,0.0111341718584299,-0.699214100837708,0.714825689792633,0.0210358444601297,-0.699531316757202,0.714292287826538,0.021506791934371,-0.699544727802277,0.71426522731781,0.0209511127322912,-0.699083507061005,0.714732944965363,0.051896408200264,-0.691654443740845,0.720361649990082,0.0214346926659346,-0.698973178863525,0.714826643466949,0.0341219715774059,-0.697263658046722,0.71600216627121,0.024935781955719,-0.697777152061462,0.715880811214447,0.0111340312287211,-0.698437511920929,0.715584516525269,0.0873077213764191,-0.704443216323853,0.704370021820068,0.0253070555627346,-0.696296811103821,0.717307686805725,0.034094326198101,-0.697623193264008,0.71565318107605,0.00952944159507751,-0.701239585876465,0.712862074375153,0.0213352385908365,-0.698184192180634,0.715600252151489,0.0510962456464767,-0.689993679523468,0.722009658813477,0.0487746149301529,-0.685154795646667,0.726762712001801,0.0588649436831474,-0.681117415428162,0.729804158210754,0.00917516648769379,-0.70013415813446,0.713952362537384,-0.0111335683614016,-0.696252584457397,0.717710554599762,0.0111339185386896,-0.697858512401581,0.716149091720581,0.0213724877685308,-0.698479771614075,0.71531069278717,0.0215258356183767,-0.699695646762848,0.714116752147675,0.00879441946744919,-0.698944211006165,0.715122103691101,-0.0111338524147868,-0.697538614273071,0.716460704803467,-0.0111299660056829,-0.685813069343567,0.727692663669586,0.0354576036334038,-0.679545640945435,0.732775866985321,0.0111286165192723,-0.683009624481201,0.730324685573578,0.0614405497908592,-0.686263918876648,0.724753022193909,0.108519017696381,-0.671283900737762,0.733213245868683,0.00938051100820303,-0.70077508687973,0.71332061290741,0.00916479621082544,-0.700101792812347,0.713984310626984,0.111359253525734,-0.700801312923431,0.704611003398895,-0.0111341495066881,-0.69908607006073,0.714950919151306,0.156183823943138,-0.656666159629822,0.737832129001617,0.108666688203812,-0.672800064086914,0.731800317764282,
  1301. 0.0617881342768669,-0.686955869197845,0.724067628383636,0.163182958960533,-0.727591216564178,0.666320085525513,0.114002645015717,-0.729044377803802,0.67490565776825,0.156299501657486,-0.727904856204987,0.66762638092041,0.0412983410060406,-0.698979496955872,0.713948249816895,0.0863245576620102,-0.706848978996277,0.702077329158783,0.0340977907180786,-0.697578132152557,0.715696930885315,0.0485765933990479,-0.666020512580872,0.744350075721741,0.0362932309508324,-0.668105065822601,0.743181347846985,-0.0111239971593022,-0.675162971019745,0.737584710121155,0.0900421217083931,-0.697694003582001,0.710714876651764,0.0429220832884312,-0.6917844414711,0.720827281475067,0.0819773748517036,-0.696797490119934,0.712567925453186,0.109572365880013,-0.682141363620758,0.722964107990265,0.108702942728996,-0.68222177028656,0.723019421100616,-0.011131027713418,-0.688294351100922,0.725346148014069,0.111638955771923,-0.657733261585236,0.744931995868683,0.0484272763133049,-0.666715204715729,0.743737697601318,-0.0111222798004746,-0.672675311565399,0.739854216575623,0.111895233392715,-0.706462681293488,0.698849022388458,0.16747485101223,-0.70371425151825,0.690462529659271,0.10555986315012,-0.706633329391479,0.699661672115326,0.107886604964733,-0.688732802867889,0.716943323612213,0.084692157804966,-0.687503337860107,0.721225678920746,0.0445502959191799,-0.684479117393494,0.727669954299927,0.0819299668073654,-0.696958363056183,0.712416052818298,0.106633804738522,-0.698488771915436,0.707631766796112,0.168048843741417,-0.700371325016022,0.693714380264282,-0.0526863411068916,-0.978901922702789,-0.197421550750732,-0.225149497389793,-0.954647302627563,-0.194823563098907,-0.133348777890205,-0.971300959587097,-0.19695870578289,0.0100016938522458,-0.980195462703705,-0.197780176997185,-0.0512854158878326,-0.976101458072662,-0.211177304387093,-0.129021778702736,-0.965304434299469,-0.227026119828224,-0.22705540060997,-0.941849231719971,-0.24772173166275,-0.0511258319020271,-0.975771427154541,-0.212735176086426,-0.160621896386147,-0.95855575799942,-0.235311239957809,
  1302. -0.19196230173111,-0.971312284469604,-0.140367731451988,-0.222004160284996,-0.966206192970276,-0.130995199084282,-0.1551244109869,-0.976195752620697,-0.151585683226585,-0.0511203967034817,-0.975760221481323,-0.212788224220276,0.0102935070171952,-0.979965627193451,-0.198900938034058,0.0263288095593452,-0.980421364307404,-0.195142939686775,0.0569426640868187,-0.98088926076889,-0.186047852039337,0.0262652393430471,-0.980516731739044,-0.194671779870987,0.01033715903759,-0.979931116104126,-0.19906859099865,-0.15635447204113,-0.973137855529785,-0.168985560536385,-0.0792879685759544,-0.97967255115509,-0.184269204735756,-0.196952998638153,-0.967198252677917,-0.16042785346508,-0.0147370211780071,-0.980382919311523,-0.19655068218708,-0.192642346024513,-0.970781028270721,-0.143084824085236,-0.078532449901104,-0.980858862400055,-0.178181022405624,-0.157910719513893,-0.968609511852264,-0.191989049315453,-0.0527421273291111,-0.979009747505188,-0.196870863437653,0.00771681359037757,-0.980035305023193,-0.198674201965332,-0.0810861960053444,-0.976673305034637,-0.198832184076309,-0.158528789877892,-0.9665806889534,-0.201470568776131,0.0077236401848495,-0.980902314186096,-0.194347783923149,-0.0528613850474358,-0.979239523410797,-0.195692718029022,0.0270267836749554,-0.979358553886414,-0.200316160917282,0.00771578773856163,-0.979905009269714,-0.199315294623375,-0.0134959444403648,-0.981141924858093,-0.192816942930222,-0.0772748813033104,-0.98273891210556,-0.168086022138596,0.0260309129953384,-0.977850675582886,-0.207679152488709,0.028697956353426,-0.98067045211792,-0.193550825119019,-0.0813861191272736,-0.976148664951324,-0.201271206140518,0.00772229814901948,-0.980731844902039,-0.195206165313721,0.0807026028633118,-0.969185471534729,-0.232737079262733,-0.0121775642037392,-0.98193085193634,-0.188847959041595,0.0261218026280403,-0.977950036525726,-0.207198828458786,0.0077158366329968,-0.979911208152771,-0.199284985661507,0.0270332973450422,-0.979348421096802,-0.20036444067955,0.0252568814903498,-0.979415535926819,-0.200268313288689,0.0266813151538372,-0.979888260364532,-0.197755634784698,
  1303. 0.05776297301054,-0.980396091938019,-0.188379853963852,0.0250824335962534,-0.979834139347076,-0.198232024908066,0.0292486436665058,-0.979873538017273,-0.197464987635612,0.0279472284018993,-0.979897320270538,-0.197535201907158,0.00771695887669921,-0.980053782463074,-0.198583051562309,0.0876953974366188,-0.973839104175568,-0.209635213017464,0.0281714983284473,-0.980130016803741,-0.196345537900925,0.0292961224913597,-0.980045437812805,-0.196603283286095,0.00643760338425636,-0.979085803031921,-0.203346148133278,0.0249753370881081,-0.980088949203491,-0.196982160210609,0.0568718835711479,-0.980931520462036,-0.185846626758575,0.0542717166244984,-0.982450485229492,-0.178453728556633,0.0571870803833008,-0.982548832893372,-0.17699570953846,0.0061683738604188,-0.979325592517853,-0.202196672558784,-0.00772141385823488,-0.980619549751282,-0.195769444108009,0.00771901058033109,-0.980314314365387,-0.197292298078537,0.0251442883163691,-0.979686200618744,-0.19895401597023,0.0252865944057703,-0.979343712329865,-0.20061519742012,0.00536729814484715,-0.980030596256256,-0.198774933815002,-0.00771864550188184,-0.980267941951752,-0.197522699832916,-0.00774421403184533,-0.983515202999115,-0.180659562349319,0.0305263809859753,-0.984259247779846,-0.174074277281761,0.00774799380451441,-0.983995199203491,-0.178026393055916,0.0597260370850563,-0.981141746044159,-0.183830454945564,0.107865415513515,-0.980160713195801,-0.166283026337624,0.00628208741545677,-0.979224443435669,-0.202682182192802,0.00576325180009007,-0.979683697223663,-0.200466513633728,0.110604546964169,-0.972210943698883,-0.206330880522728,-0.00771540915593505,-0.979856908321381,-0.199551746249199,0.160878255963326,-0.975575566291809,-0.149567902088165,0.108008213341236,-0.979798316955566,-0.168314009904861,0.0600683726370335,-0.980947732925415,-0.184751898050308,0.162618398666382,-0.954596221446991,-0.24960270524025,0.113164938986301,-0.962605893611908,-0.246137320995331,0.160773813724518,-0.954939544200897,-0.24948425590992,0.0401802137494087,-0.979087054729462,-0.199434518814087,
  1304. 0.0867053270339966,-0.973213911056519,-0.212924435734749,0.0293172001838684,-0.980121433734894,-0.196220502257347,0.0473554059863091,-0.986651003360748,-0.15581226348877,0.0313424877822399,-0.986794948577881,-0.158913195133209,-0.00776412850245833,-0.98604428768158,-0.166302070021629,0.090429998934269,-0.97550755739212,-0.200518399477005,0.0417897887527943,-0.980947375297546,-0.189726412296295,0.079812616109848,-0.976906418800354,-0.198201388120651,0.108872227370739,-0.977488279342651,-0.180730924010277,0.111192531883717,-0.977245628833771,-0.180630162358284,-0.00773859210312366,-0.982801198959351,-0.184504419565201,0.114176049828529,-0.982377111911774,-0.147983551025391,0.0472158193588257,-0.98652184009552,-0.156669393181801,-0.00776814669370651,-0.986554622650146,-0.163247153162956,0.111123099923134,-0.970450282096863,-0.214191541075706,0.166974484920502,-0.961908638477325,-0.216451942920685,0.107991836965084,-0.970835983753204,-0.214045017957687,0.110320642590523,-0.975587785243988,-0.189889311790466,0.0824678614735603,-0.979109466075897,-0.185859501361847,0.0433996096253395,-0.982713878154755,-0.179972276091576,0.0797343924641609,-0.976839244365692,-0.198563531041145,0.109050109982491,-0.973052144050598,-0.203168913722038,0.167560115456581,-0.962828934192657,-0.211858406662941,-0.051704365760088,-0.964588642120361,0.258641690015793,-0.22622275352478,-0.941427409648895,0.250075727701187,-0.136844545602798,-0.95708030462265,0.255481988191605,0.00766958203166723,-0.966018259525299,0.258360147476196,-0.0503038540482521,-0.968147695064545,0.245274484157562,-0.132303729653358,-0.965286552906036,0.225205764174461,-0.227782234549522,-0.953596711158752,0.196897700428963,-0.0501447543501854,-0.968538761138916,0.243758752942085,-0.156680434942245,-0.96358048915863,0.21671199798584,-0.197910577058792,-0.930716931819916,0.307567119598389,-0.223470062017441,-0.923173904418945,0.312747746706009,-0.151220709085464,-0.942637801170349,0.297601222991943,-0.0501384437084198,-0.968554139137268,0.243698671460152,0.00796231254935265,-0.9663125872612,0.257248252630234,
  1305. 0.0206060074269772,-0.965368211269379,0.260076284408569,0.0513255931437016,-0.96197384595871,0.268275886774063,0.0205717999488115,-0.965303897857666,0.260317504405975,0.00802846252918243,-0.96637886762619,0.256996929645538,-0.152439370751381,-0.947521209716797,0.281008511781693,-0.0807717144489288,-0.959196090698242,0.270959079265594,-0.203066691756248,-0.936081409454346,0.287255138158798,-0.016105905175209,-0.96536123752594,0.260419458150864,-0.198578476905823,-0.931430816650391,0.304964601993561,-0.0800008997321129,-0.957509279251099,0.277084678411484,-0.153977781534195,-0.9535311460495,0.258977144956589,-0.0517581254243851,-0.964447796344757,0.259155750274658,0.00760718388482928,-0.966112375259399,0.258009821176529,-0.0826045200228691,-0.963076651096344,0.256241947412491,-0.154585838317871,-0.955853223800659,0.249895691871643,0.00759818451479077,-0.964969396591187,0.262252479791641,-0.0518751665949821,-0.964140057563782,0.260275065898895,0.0211002826690674,-0.966290712356567,0.256587415933609,0.00760852079838514,-0.966282188892365,0.257373005151749,-0.0148363206535578,-0.964342653751373,0.264241009950638,-0.0787286311388016,-0.954655587673187,0.287114202976227,0.0228059031069279,-0.967926502227783,0.250196397304535,0.0251736808568239,-0.96456903219223,0.262626856565475,-0.082907035946846,-0.963699221611023,0.253791868686676,0.00760000664740801,-0.965200841426849,0.261399239301682,0.0783337950706482,-0.971466779708862,0.223866388201714,-0.0134935025125742,-0.963247358798981,0.268277138471603,0.0229546930640936,-0.967720627784729,0.250978201627731,0.00760845560580492,-0.966273903846741,0.257404178380966,0.0211035311222076,-0.96629673242569,0.256564497947693,0.0256737489253283,-0.966264426708221,0.256269425153732,0.0210172049701214,-0.966136515140533,0.257174223661423,0.0521766096353531,-0.962596654891968,0.265867084264755,0.0254747364670038,-0.965692937374115,0.25843408703804,0.0315229073166847,-0.965338230133057,0.259091556072235,0.0244454480707645,-0.965619921684265,0.258806139230728,0.00760704698041081,-0.966094970703125,0.258075058460236,
  1306. 0.0852520763874054,-0.965500056743622,0.246052667498589,0.02484848536551,-0.965040326118469,0.260920941829681,0.0315366499125957,-0.965275049209595,0.259325563907623,0.00717293005436659,-0.967267990112305,0.253655582666397,0.0253598615527153,-0.965361058712006,0.259682357311249,0.0513733923435211,-0.962009072303772,0.268140643835068,0.049035906791687,-0.960266590118408,0.274742692708969,0.0590965524315834,-0.958352863788605,0.279405415058136,0.00688953977078199,-0.966952443122864,0.254863619804382,-0.00760119175538421,-0.965351343154907,0.260843008756638,0.00760432379320264,-0.965749144554138,0.259366154670715,0.025556568056345,-0.965928435325623,0.257544308900833,0.0257069282233715,-0.966359257698059,0.255908221006393,0.00619428884238005,-0.966171681880951,0.257825255393982,-0.00760484207421541,-0.96581494808197,0.259121000766754,-0.00756857311353087,-0.961208760738373,0.275718003511429,0.0328805297613144,-0.958766460418701,0.282286763191223,0.00756287202239037,-0.960484743118286,0.278229951858521,0.0617347061634064,-0.960192918777466,0.272430926561356,0.111616611480713,-0.951036214828491,0.288221895694733,0.00702295638620853,-0.967101216316223,0.254294961690903,0.00657909270375967,-0.966605007648468,0.25618639588356,0.114329010248184,-0.962168037891388,0.247308537364006,-0.00760902790352702,-0.966346502304077,0.257131665945053,0.155083134770393,-0.941758692264557,0.298395305871964,0.111758701503277,-0.951640844345093,0.286163955926895,0.0620926022529602,-0.960438251495361,0.271482706069946,0.157288253307343,-0.966710686683655,0.201818734407425,0.116758324205875,-0.971290409564972,0.207274183630943,0.155069798231125,-0.967004656791687,0.202127158641815,0.0430128425359726,-0.965711772441864,0.256028831005096,0.0842966586351395,-0.966359674930573,0.242987781763077,0.0315504260361195,-0.965211451053619,0.259560137987137,0.0503731742501259,-0.952658593654633,0.299840331077576,0.0337387733161449,-0.95427018404007,0.297035455703735,-0.00753608904778957,-0.957083284854889,0.289714932441711,0.0880256369709969,-0.962938845157623,0.254951655864716,
  1307. 0.044643122702837,-0.963012516498566,0.265732884407043,0.0832113996148109,-0.963042140007019,0.256175398826599,0.112658701837063,-0.955417394638062,0.272920548915863,0.108359977602959,-0.955904960632324,0.272953867912292,-0.0075770472176373,-0.962285041809082,0.271937668323517,0.111301369965076,-0.946080029010773,0.304211497306824,0.0501977056264877,-0.952995955944061,0.298795878887177,-0.00752904592081904,-0.956188857555389,0.292653828859329,0.114821068942547,-0.964086949825287,0.239483952522278,0.161529242992401,-0.95857185125351,0.234623894095421,0.105204358696938,-0.964952230453491,0.24041511118412,0.10754083096981,-0.958394885063171,0.264413058757782,0.085988350212574,-0.959456503391266,0.268420219421387,0.0462750419974327,-0.960201978683472,0.275446683168411,0.0831725522875786,-0.963091015815735,0.256004273891449,0.106282405555248,-0.962024211883545,0.251422733068466,0.162173181772232,-0.957203567028046,0.239710956811905,-0.247368022799492,0.860022306442261,0.446285486221313,-0.171195045113564,0.871185600757599,0.460139244794846,-0.29034024477005,0.851253509521484,0.437115550041199,-0.36257016658783,0.828597187995911,0.426579028367996,-0.246979951858521,0.863759100437164,0.439227879047394,-0.290283143520355,0.852206110954285,0.435293555259705,-0.361453235149384,0.823886513710022,0.436534941196442,-0.414224028587341,0.797310829162598,0.438992202281952,-0.292529284954071,0.85351550579071,0.431205242872238,-0.289934515953064,0.857562184333801,0.424882411956787,-0.318440407514572,0.845986723899841,0.42767059803009,-0.362059324979782,0.826432049274445,0.431187987327576,-0.413550764322281,0.799620926380157,0.43541032075882,-0.361861109733582,0.825596809387207,0.432950884103775,-0.319239020347595,0.844551503658295,0.429905951023102,-0.399458765983582,0.840278685092926,0.366557747125626,-0.318736612796783,0.845455706119537,0.428499281406403,-0.464743316173553,0.829038739204407,0.310979723930359,-0.289589315652847,0.862249612808228,0.415528327226639,-0.243466421961784,0.867700099945068,0.43338280916214,-0.310930132865906,0.858965218067169,0.406818360090256,
  1308. -0.461979866027832,0.83201277256012,0.307130873203278,-0.317105501890183,0.848361492156982,0.423942029476166,-0.319015920162201,0.848339557647705,0.422550439834595,-0.317140579223633,0.848299443721771,0.424039900302887,-0.264468610286713,0.846188426017761,0.462624490261078,-0.319045603275299,0.848308086395264,0.422591209411621,-0.317789345979691,0.849636733531952,0.420864999294281,-0.262003481388092,0.84881603717804,0.459200918674469,-0.266746997833252,0.849035143852234,0.456054151058197,-0.247172236442566,0.950068235397339,-0.190463304519653,-0.175130575895309,0.966645896434784,-0.186882749199867,-0.292771905660629,0.936663329601288,-0.19221442937851,-0.36815556883812,0.91107451915741,-0.185484811663628,-0.246779710054398,0.948559522628784,-0.198329612612724,-0.29272586107254,0.93633097410202,-0.193896800279617,-0.366879552602768,0.913925290107727,-0.173608690500259,-0.415786415338516,0.89592319726944,-0.156344041228294,-0.292116910219193,0.935596346855164,-0.198310732841492,-0.292406469583511,0.934108436107636,-0.204792216420174,-0.321423679590225,0.926603496074677,-0.195173799991608,-0.36749479174614,0.912583529949188,-0.179273709654808,-0.415132790803909,0.895484030246735,-0.160540506243706,-0.367296010255814,0.913023352622986,-0.177431628108025,-0.32219073176384,0.926881313323975,-0.192572668194771,-0.400988459587097,0.88376259803772,-0.241188555955887,-0.321016281843185,0.926453471183777,-0.196551501750946,-0.462354838848114,0.842870891094208,-0.275311946868896,-0.292026102542877,0.931611776351929,-0.216380372643471,-0.245291948318481,0.947365283966064,-0.205745041370392,-0.313604891300201,0.923439383506775,-0.221160307526588,-0.459610849618912,0.842789709568024,-0.280113190412521,-0.319428533315659,0.92585301399231,-0.201895147562027,-0.320379704236984,0.925407826900482,-0.20242840051651,-0.319441080093384,0.925857901573181,-0.201853007078171,-0.265968471765518,0.948878169059753,-0.169973507523537,-0.320386707782745,0.925408124923706,-0.202416330575943,-0.319173842668533,0.925365924835205,-0.204514384269714,
  1309. -0.263553738594055,0.948784112930298,-0.174207136034966,-0.264141917228699,0.948561489582062,-0.174528375267982,-0.282161116600037,0.920907139778137,0.268914729356766,-0.212014064192772,0.936445236206055,0.279500365257263,-0.323841840028763,0.909160256385803,0.261828422546387,-0.401818573474884,0.879451990127563,0.255158752202988,-0.28182926774025,0.923291325569153,0.260970294475555,-0.32380935549736,0.909854590892792,0.259445786476135,-0.400528341531754,0.876628041267395,0.266646355390549,-0.445590913295746,0.852501451969147,0.273294895887375,-0.325177878141403,0.910803198814392,0.254355847835541,-0.323617607355118,0.913235604763031,0.247532546520233,-0.356882244348526,0.899102807044983,0.253474146127701,-0.401172488927841,0.878037869930267,0.260979235172272,-0.444984674453735,0.854067802429199,0.269363731145859,-0.400963217020035,0.877579867839813,0.262834966182709,-0.357614070177078,0.898118913173676,0.255919009447098,-0.432376086711884,0.880100011825562,0.196150630712509,-0.356645673513412,0.899418711662292,0.252685159444809,-0.500280559062958,0.854302883148193,0.141017898917198,-0.323452115058899,0.915540874004364,0.239089235663414,-0.287555664777756,0.924010813236237,0.252023220062256,-0.349546581506729,0.908416330814362,0.229340136051178,-0.497645616531372,0.856534838676453,0.136736825108528,-0.355141788721085,0.901401877403259,0.247687190771103,-0.355974316596985,0.901237487792969,0.247089564800262,-0.355158537626266,0.901380002498627,0.247742742300034,-0.30687016248703,0.908664464950562,0.28312474489212,-0.355991005897522,0.901223540306091,0.247116357088089,-0.354791730642319,0.902221083641052,0.245193719863892,-0.304606080055237,0.91055828332901,0.279461652040482,-0.300489097833633,0.911083817481995,0.282192468643188,-0.24633976817131,0.769608199596405,0.589084088802338,-0.16871689260006,0.778245449066162,0.604870736598969,-0.289671450853348,0.762538373470306,0.578468322753906,-0.363972783088684,0.741466164588928,0.563694775104523,-0.245940655469894,0.774605453014374,0.582666039466858,-0.289612025022507,0.763853788375854,0.576760113239288,
  1310. -0.362815022468567,0.734955728054047,0.572892129421234,-0.413366347551346,0.709462642669678,0.570781111717224,-0.290711641311646,0.766431748867035,0.572773337364197,-0.289261698722839,0.771013855934143,0.567331671714783,-0.319521754980087,0.758392035961151,0.56810861825943,-0.363420099020004,0.738337457180023,0.568140506744385,-0.412715494632721,0.71230936050415,0.567698240280151,-0.363222271203995,0.737226843833923,0.569707095623016,-0.320303857326508,0.756612539291382,0.570037722587585,-0.398962080478668,0.76385885477066,0.507295727729797,-0.319558143615723,0.758309543132782,0.568198323249817,-0.465155988931656,0.76242196559906,0.449825286865234,-0.288933008909225,0.77699875831604,0.559277057647705,-0.245449930429459,0.77916032075882,0.576769948005676,-0.31191274523735,0.775142073631287,0.549422740936279,-0.462370425462723,0.766026496887207,0.446561545133591,-0.317933917045593,0.761971056461334,0.564196944236755,-0.319068044424057,0.762101054191589,0.563380479812622,-0.317960560321808,0.761911332607269,0.564262449741364,-0.266070276498795,0.753333449363709,0.601411283016205,-0.319095611572266,0.762065708637238,0.563412666320801,-0.31785860657692,0.763650238513947,0.561964571475983,-0.263661503791809,0.756446480751038,0.598557889461517,-0.264356434345245,0.756558418273926,0.598109662532806,-0.0150519944727421,0.747002124786377,-0.664651334285736,-0.106169566512108,0.742894291877747,-0.660935819149017,-0.030048068612814,0.746754288673401,-0.664420902729034,-0.138794347643852,0.739898264408112,-0.658245146274567,-0.0150521844625473,0.746997654438019,-0.664656221866608,-0.0300478637218475,0.746750593185425,-0.664425134658813,-0.129346698522568,0.746771514415741,-0.652381658554077,-0.0159745179116726,0.725094199180603,-0.688464462757111,-0.139672309160233,0.748216032981873,-0.648586511611938,-0.137954965233803,0.73203045129776,-0.667158007621765,-0.031156525015831,0.766411960124969,-0.641593396663666,-0.218338489532471,0.699226438999176,-0.680742800235748,-0.128586113452911,0.748178958892822,-0.650917708873749,-0.139906957745552,0.750455439090729,-0.645943224430084,
  1311. -0.321031838655472,0.770661175251007,-0.550472617149353,-0.335526674985886,0.699524819850922,-0.630941271781921,-0.138871341943741,0.740624010562897,-0.657412230968475,-0.229496687650681,0.725632607936859,-0.648682177066803,-0.219769418239594,0.106254458427429,-0.969748139381409,-0.21410208940506,0.102620363235474,-0.971405982971191,-0.118871547281742,0.0417978800833225,-0.9920294880867,-0.219353258609772,0.107357434928417,-0.969720840454102,-0.111359186470509,0.0604680143296719,-0.991938889026642,-0.175516381859779,0.0883451849222183,-0.980504512786865,-0.370879262685776,0.0865942761301994,-0.924635171890259,-0.218941867351532,0.108446858823299,-0.969692647457123,-0.170446112751961,0.114690825343132,-0.978669583797455,-0.108625814318657,0.0672274753451347,-0.991806983947754,-0.0818320289254189,0.057538203895092,-0.994983911514282,-0.174987867474556,0.0911256223917007,-0.980344593524933,-0.366583347320557,0.0621543638408184,-0.928306818008423,-0.16890387237072,0.122563757002354,-0.977982401847839,-0.120308548212051,0.136244669556618,-0.983342945575714,-0.17200779914856,0.106652915477753,-0.97930520772934,-0.0683499425649643,0.104907959699631,-0.99213033914566,-0.120034195482731,0.105919808149338,-0.987103223800659,-0.0143579440191388,0.963629186153412,0.266857117414474,-0.107282213866711,0.958153545856476,0.265390843153,-0.0353522822260857,0.963123261928558,0.266728341579437,-0.141955867409706,0.95395040512085,0.264248251914978,-0.0143581917509437,0.963630974292755,0.266850650310516,-0.0353520773351192,0.963124573230743,0.266723304986954,-0.127979904413223,0.953494608402252,0.272890418767929,-0.0155417192727327,0.971778213977814,0.235384061932564,-0.142872542142868,0.950011432170868,0.277607440948486,-0.141066044569016,0.957495093345642,0.251602232456207,-0.0364373177289963,0.955219328403473,0.293646901845932,-0.224144995212555,0.950462162494659,0.215361803770065,-0.127261698246002,0.953054130077362,0.274758547544479,-0.143115803599358,0.948913633823395,0.281213104724884,-0.321218699216843,0.880445897579193,0.348760336637497,
  1312. -0.335684388875961,0.909496009349823,0.245220556855202,-0.14201982319355,0.953685402870178,0.265168935060501,-0.235985025763512,0.937186002731323,0.256892055273056,-0.213014543056488,0.871525049209595,-0.441666126251221,-0.213399142026901,0.87156617641449,-0.441399157047272,-0.112962834537029,0.854625642299652,-0.506808042526245,-0.212124466896057,0.872769296169281,-0.439632743597031,-0.10496049374342,0.865274846553802,-0.490186452865601,-0.175751954317093,0.871589660644531,-0.457649230957031,-0.36659699678421,0.825410604476929,-0.429306358098984,-0.210128501057625,0.875532269477844,-0.435073882341385,-0.170603707432747,0.884273290634155,-0.434689730405808,-0.102048769593239,0.869037091732025,-0.484108090400696,-0.0839220136404037,0.867246150970459,-0.490755885839462,-0.175218462944031,0.872947692871094,-0.455259084701538,-0.362429052591324,0.815500855445862,-0.451224446296692,-0.169041678309441,0.887940764427185,-0.427768796682358,-0.116684004664421,0.900697767734528,-0.418483436107636,-0.172206282615662,0.880424559116364,-0.441811859607697,-0.0707621052861214,0.890159130096436,-0.450121462345123,-0.116287618875504,0.886951982975006,-0.446982681751251,-0.0137032670900226,0.981758236885071,-0.189639151096344,-0.103749707341194,0.976560235023499,-0.188589572906494,-0.0326649993658066,0.981328248977661,-0.189546525478363,-0.14025916159153,0.972157061100006,-0.187718003988266,-0.013703465461731,0.981756925582886,-0.189645782113075,-0.0326647907495499,0.9813272356987,-0.189551800489426,-0.129246115684509,0.975279450416565,-0.179235845804214,-0.0146617908030748,0.974990129470825,-0.221764296293259,-0.141133934259415,0.974467277526855,-0.174627378582954,-0.139415219426155,0.969831109046936,-0.199977949261665,-0.0337669290602207,0.986394166946411,-0.16089254617691,-0.219250857830048,0.948603808879852,-0.228210180997849,-0.128490090370178,0.975738644599915,-0.177269369363785,-0.141366392374039,0.975062787532806,-0.171079158782959,-0.317986041307449,0.944627225399017,-0.0810208916664124,-0.332610905170441,0.924733877182007,-0.185033634305,
  1313. -0.140326932072639,0.972339868545532,-0.186718299984932,-0.23045489192009,0.954974830150604,-0.186852261424065,-0.217076569795609,0.585761308670044,-0.780872225761414,-0.21498367190361,0.584919095039368,-0.782081663608551,-0.117348849773407,0.542098641395569,-0.832080721855164,-0.216477811336517,0.587118208408356,-0.780018985271454,-0.109619796276093,0.558307945728302,-0.82235985994339,-0.174783945083618,0.576764762401581,-0.797993063926697,-0.371965855360031,0.546548068523407,-0.750284314155579,-0.215423762798309,0.589499354362488,-0.778513371944427,-0.16955041885376,0.598849892616272,-0.782707810401917,-0.106801584362984,0.564136922359467,-0.818744778633118,-0.0841183140873909,0.558463275432587,-0.825253248214722,-0.174238100647926,0.579114735126495,-0.796409010887146,-0.36758753657341,0.527270376682281,-0.766071319580078,-0.167962893843651,0.605358302593231,-0.778029441833496,-0.121778927743435,0.619148075580597,-0.77577418088913,-0.171184286475182,0.592060267925262,-0.787502765655518,-0.0708518624305725,0.597001194953918,-0.79910546541214,-0.121313348412514,0.59528523683548,-0.794303953647614,-0.0709262564778328,0.725797295570374,-0.68424254655838,-0.0577573515474796,0.725728511810303,-0.685552477836609,0.134225264191628,0.710341095924377,-0.690940856933594,-0.180187970399857,0.734493315219879,-0.654256761074066,-0.0579470805823803,0.72487336397171,-0.686440646648407,-0.0708673298358917,0.726435840129852,-0.683570623397827,0.0696358233690262,0.725721895694733,-0.68445497751236,-0.0707717463374138,0.727469027042389,-0.682480931282043,0.134959682822227,0.719984471797943,-0.680741012096405,-0.0729167833924294,0.70343816280365,-0.707006335258484,-0.173250257968903,0.71918910741806,-0.672868013381958,-0.186352103948593,0.720652341842651,-0.667782247066498,0.0688689723610878,0.730594635009766,-0.679329574108124,-0.167594641447067,0.692053318023682,-0.702121257781982,-0.0721095725893974,0.712693631649017,-0.697759330272675,-0.209708586335182,0.72845470905304,-0.652208626270294,-0.184245929121971,0.725434482097626,-0.663172841072083,
  1314. -0.174270182847977,0.724102795124054,-0.66731184720993,-0.181996062397957,0.700505137443542,-0.690050721168518,-0.170489102602005,0.705918252468109,-0.687468409538269,0.0592032000422478,0.787216663360596,-0.613828241825104,-0.211952716112137,0.687202632427216,-0.69485878944397,-0.170592695474625,0.706415355205536,-0.686931908130646,-0.182421877980232,0.701092064380646,-0.689341962337494,-0.18653316795826,0.622271776199341,-0.760252058506012,-0.250963687896729,0.64408951997757,-0.722610592842102,-0.361240178346634,0.673135161399841,-0.645286440849304,-0.187566548585892,0.620619714260101,-0.761347532272339,-0.0657183453440666,0.580917656421661,-0.811304986476898,-0.250973522663116,0.636968553066254,-0.728891849517822,-0.388373792171478,0.590043008327484,-0.707824230194092,-0.250809997320175,0.609845995903015,-0.75178599357605,-0.321243047714233,0.601429164409637,-0.731495678424835,-0.250912010669708,0.620600879192352,-0.742898285388947,-0.0602227300405502,0.598386943340302,-0.79894083738327,-0.18217059969902,0.615352988243103,-0.766912400722504,-0.250519067049026,0.591002106666565,-0.766783356666565,-0.181575611233711,0.610061943531036,-0.771268248558044,-0.312612354755402,0.570855140686035,-0.759208798408508,-0.0588642358779907,0.602645993232727,-0.79583466053009,-0.0273015908896923,0.5980184674263,-0.801017165184021,-0.182097852230072,0.614703476428986,-0.767450392246246,-0.125018015503883,0.635302305221558,-0.762077212333679,-0.30118802189827,0.531700670719147,-0.791568279266357,-0.181071221828461,0.605613231658936,-0.774884402751923,-0.181633368134499,0.610573470592499,-0.770849764347076,-0.0203903838992119,0.634478211402893,-0.772671759128571,-0.121606647968292,0.621466398239136,-0.773945391178131,-0.202741265296936,0.797923564910889,-0.567638993263245,-0.271831393241882,0.79675704240799,-0.539709150791168,-0.391570538282394,0.783622086048126,-0.482295572757721,-0.203340515494347,0.796358704566956,-0.569618701934814,-0.0660745427012444,0.793161988258362,-0.605415761470795,-0.269555002450943,0.792036890983582,-0.54773873090744,
  1315. -0.392876923084259,0.722370445728302,-0.569059431552887,-0.26079273223877,0.773677051067352,-0.577417552471161,-0.32548999786377,0.750755786895752,-0.574823439121246,-0.2642902135849,0.781040489673615,-0.565797209739685,-0.0658630952239037,0.806370973587036,-0.587731122970581,-0.186931163072586,0.794885218143463,-0.577247083187103,-0.18539234995842,0.792500376701355,-0.581010222434998,-0.307649284601212,0.732565879821777,-0.607206046581268,-0.254653006792068,0.760644614696503,-0.597136199474335,-0.0658058375120163,0.809577822685242,-0.583312332630157,-0.033808920532465,0.811518609523773,-0.583347678184509,-0.186746880412102,0.794600248336792,-0.577698945999146,-0.141104593873024,0.819743156433105,-0.555077135562897,-0.284872502088547,0.708360075950623,-0.645812451839447,-0.184077769517899,0.790454089641571,-0.584206938743591,-0.185503512620926,0.792672991752625,-0.580739200115204,-0.0385111682116985,0.83752304315567,-0.545043349266052,-0.13318258523941,0.811078548431396,-0.569573521614075,-0.0503039360046387,0.783345341682434,-0.619547843933105,-0.0469754636287689,0.78313809633255,-0.620070993900299,0.141184687614441,0.756965041160584,-0.638020992279053,-0.165792644023895,0.796722590923309,-0.581159114837646,-0.0472327917814255,0.782468616962433,-0.62089604139328,-0.0503869317471981,0.78300666809082,-0.619969069957733,0.0810250714421272,0.775102496147156,-0.626618921756744,-0.049856536090374,0.785166025161743,-0.617275178432465,0.143075525760651,0.765558123588562,-0.627256035804749,-0.0554750487208366,0.76167219877243,-0.64558345079422,-0.165156677365303,0.783313870429993,-0.599285066127777,-0.173662513494492,0.784527182579041,-0.595280170440674,0.0808422788977623,0.779595196247101,-0.621044337749481,-0.162619635462761,0.757037043571472,-0.63281112909317,-0.0528052002191544,0.773007929325104,-0.632194995880127,-0.201727673411369,0.793231725692749,-0.574534118175507,-0.170964032411575,0.788757562637329,-0.59045135974884,-0.165580227971077,0.787879168987274,-0.593152284622192,-0.17612162232399,0.764360845088959,-0.620269000530243,
  1316. -0.163795068860054,0.769002437591553,-0.617904841899872,0.0782924070954323,0.830931544303894,-0.550838470458984,-0.209454119205475,0.752402603626251,-0.624515235424042,-0.163845703005791,0.769525349140167,-0.617240250110626,-0.176507413387299,0.764973521232605,-0.619403421878815,-0.113257423043251,0.970948278903961,-0.210789516568184,-0.106940023601055,0.971728980541229,-0.210491567850113,0.0839668214321136,0.976680278778076,-0.197598367929459,-0.290802270174026,0.939743757247925,-0.179766103625298,-0.106862485408783,0.973429799079895,-0.202521562576294,-0.113918848335743,0.972781598567963,-0.201788544654846,0.0183027666062117,0.981031954288483,-0.192980244755745,-0.11344038695097,0.971460998058319,-0.20831461250782,0.0826546400785446,0.979400932788849,-0.184234082698822,-0.113192588090897,0.970765650272369,-0.211664095520973,-0.228322923183441,0.955008625984192,-0.189280897378922,-0.290453553199768,0.94060093164444,-0.175802811980248,0.0167869664728642,0.982160329818726,-0.187294945120811,-0.20892208814621,0.943388283252716,-0.257624119520187,-0.111903689801693,0.967028498649597,-0.22876513004303,-0.453983664512634,0.875608742237091,-0.164949104189873,-0.290580153465271,0.940292775630951,-0.177235990762711,-0.23077529668808,0.956163585186005,-0.180260851979256,-0.184293985366821,0.957740664482117,-0.220836102962494,-0.214185908436775,0.946955144405365,-0.239583969116211,-0.00490622408688068,0.994413256645203,-0.105443350970745,-0.412799626588821,0.839983105659485,-0.35217148065567,-0.214425042271614,0.947110116481781,-0.238755911588669,-0.184258535504341,0.957735061645508,-0.220889821648598,-0.206931725144386,0.11997777223587,0.970971047878265,-0.405113905668259,0.174049571156502,0.897546350955963,-0.256230801343918,0.133708402514458,0.957323312759399,-0.207463726401329,0.117687731981277,0.971137702465057,-0.255448162555695,0.126888141036034,0.958460092544556,-0.0781647339463234,0.0919389650225639,0.992692053318024,-0.404924303293228,0.0656987130641937,0.911986827850342,-0.316087365150452,0.0861866772174835,0.944807231426239,
  1317. -0.252252250909805,0.100022561848164,0.962478220462799,-0.254705727100372,0.120509877800941,0.959480285644531,-0.151612803339958,0.122052535414696,0.980875492095947,-0.0779076665639877,0.12232718616724,0.989427328109741,-0.249451696872711,0.077630989253521,0.965270638465881,-0.30030569434166,0.0447358563542366,0.95279335975647,-0.154966369271278,0.136421516537666,0.978455185890198,-0.0779157876968384,0.121485441923141,0.989530503749847,-0.150586664676666,0.117679230868816,0.981567740440369,-0.0548852980136871,0.122551932930946,0.990943312644959,-0.296739667654037,0.0355732068419456,0.954295635223389,-0.14843912422657,0.116305738687515,0.982058465480804,-0.150063201785088,0.11545242369175,0.981912314891815,-0.150220423936844,0.116120927035809,0.981809437274933,-0.148586586117744,0.116681925952435,0.981991529464722,-0.0578570067882538,0.147050306200981,0.987435519695282,-0.203032150864601,0.701239109039307,0.683404505252838,-0.401536524295807,0.698063015937805,0.592854499816895,-0.255542933940887,0.703637003898621,0.663017988204956,-0.203477784991264,0.699798166751862,0.684747636318207,-0.254809081554413,0.6990727186203,0.668108999729156,-0.0778849422931671,0.693206191062927,0.716518759727478,-0.401332437992096,0.623870849609375,0.670609712600708,-0.321589648723602,0.656721234321594,0.682127118110657,-0.251800119876862,0.680765569210052,0.687862634658813,-0.254113912582397,0.694786667823792,0.672828078269959,-0.158023074269295,0.708605587482452,0.687682271003723,-0.0775494575500488,0.714865386486053,0.694948613643646,-0.249144732952118,0.665088832378387,0.703977108001709,-0.305257529020309,0.628003537654877,0.715841829776764,-0.160580798983574,0.716060936450958,0.679316341876984,-0.0775593370199203,0.714296996593475,0.695531785488129,-0.156938299536705,0.70543384552002,0.691182732582092,-0.0577549077570438,0.715790808200836,0.695922374725342,-0.301880061626434,0.622040152549744,0.722450435161591,-0.147267818450928,0.70611572265625,0.692613065242767,-0.155806258320808,0.702117800712585,0.694805800914764,-0.156180813908577,0.703215658664703,0.693610370159149,
  1318. -0.147329613566399,0.706220388412476,0.692493140697479,-0.0606642998754978,0.732146501541138,0.678440392017365,-0.0655694603919983,0.969027817249298,0.23808765411377,-0.0607224367558956,0.96941339969635,0.237803354859352,0.132614448666573,0.965999305248261,0.221943095326424,-0.176915988326073,0.948896050453186,0.261336833238602,-0.0608383566141129,0.969585180282593,0.23707227408886,-0.0655670315027237,0.969019055366516,0.238124042749405,0.0637872815132141,0.969066917896271,0.238412618637085,-0.065392017364502,0.968384087085724,0.240740910172462,0.13329604268074,0.962691843509674,0.235492408275604,-0.0676943808794022,0.976296484470367,0.205578744411469,-0.175370275974274,0.95487767457962,0.239695519208908,-0.183123782277107,0.952824354171753,0.242057085037231,0.0631616786122322,0.967670261859894,0.244181960821152,-0.169395744800568,0.965048253536224,0.199967548251152,-0.066690020263195,0.972964406013489,0.221116915345192,-0.207572460174561,0.943764805793762,0.257335782051086,-0.181066453456879,0.9515620470047,0.248484969139099,-0.176430985331535,0.952839016914368,0.246920883655548,-0.185358673334122,0.959475874900818,0.212245643138886,-0.17229001224041,0.960390031337738,0.219014421105385,0.0539455190300941,0.94385302066803,0.325931578874588,-0.209954291582108,0.956782102584839,0.201214849948883,-0.172403752803802,0.960196793079376,0.219770565629005,-0.185824662446976,0.959174036979675,0.213200330734253,-0.190079495310783,0.975326240062714,0.112287551164627,-0.253495216369629,0.955568492412567,0.150429546833038,-0.360309302806854,0.907788515090942,0.214702486991882,-0.191267237067223,0.975353717803955,0.110008902847767,-0.0611355490982533,0.997094452381134,0.045443020761013,-0.253559142351151,0.957018315792084,0.140796601772308,-0.387381434440613,0.915153384208679,0.111489310860634,-0.253584235906601,0.961654663085938,0.104477107524872,-0.315943270921707,0.942614197731018,0.107973948121071,-0.25361493229866,0.959971606731415,0.118886359035969,-0.0552446246147156,0.996166527271271,0.0678253024816513,-0.184884265065193,0.977508783340454,0.101461067795753,
  1319. -0.253408163785934,0.964062213897705,0.0798026025295258,-0.184147611260414,0.978444695472717,0.0934657230973244,-0.307571232318878,0.949046313762665,0.0686366781592369,-0.0537853464484215,0.995855093002319,0.0733467862010002,-0.0298210307955742,0.997221887111664,0.0682588592171669,-0.18479585647583,0.97762531042099,0.100495025515556,-0.120118051767349,0.985119521617889,0.12292817234993,-0.296541571617126,0.95481139421463,0.0199579130858183,-0.183530867099762,0.979168474674225,0.0868657156825066,-0.184221819043159,0.978353917598724,0.0942655652761459,-0.0232177898287773,0.993279635906219,0.113386496901512,-0.116309478878975,0.987888216972351,0.102708734571934,-0.19918118417263,0.910855412483215,0.361482113599777,-0.276616662740707,0.883793115615845,0.377349972724915,-0.394064426422119,0.828961431980133,0.396908283233643,-0.199714094400406,0.911573171615601,0.359372764825821,-0.0718157440423965,0.938106894493103,0.338818788528442,-0.274224102497101,0.888207316398621,0.36863112449646,-0.394934684038162,0.869271278381348,0.297311455011368,-0.264963537454605,0.904026031494141,0.335457175970078,-0.322106838226318,0.891095221042633,0.319681853055954,-0.268692404031754,0.897889852523804,0.348709493875504,-0.0716075822710991,0.930818438529968,0.358398348093033,-0.190670937299728,0.915488243103027,0.354296624660492,-0.188586354255676,0.918005406856537,0.348857402801514,-0.304663479328156,0.908014893531799,0.28755709528923,-0.258517980575562,0.913939118385315,0.312863796949387,-0.0715510547161102,0.92894583940506,0.363235741853714,-0.0303087048232555,0.930384814739227,0.365329325199127,-0.190424174070358,0.915788590908051,0.353652447462082,-0.141973838210106,0.911232769489288,0.386650234460831,-0.282450258731842,0.926868140697479,0.247259929776192,-0.186861887574196,0.920053005218506,0.344362139701843,-0.188789740204811,0.917761743068695,0.349387913942337,-0.0349681600928307,0.911835730075836,0.409063369035721,-0.13431890308857,0.918524563312531,0.371848225593567,-0.0495841130614281,0.945520520210266,0.321764528751373,-0.0448744930326939,0.945976614952087,0.321114391088486,
  1320. 0.141834199428558,0.946595668792725,0.289551109075546,-0.165151238441467,0.920638620853424,0.353764921426773,-0.0452182702720165,0.946409285068512,0.319788634777069,-0.049683541059494,0.945726811885834,0.32114252448082,0.0745814442634583,0.947184324264526,0.311896771192551,-0.0491360202431679,0.944586396217346,0.324564665555954,0.143717244267464,0.942205727100372,0.302644789218903,-0.0547312088310719,0.955705463886261,0.289191573858261,-0.170946195721626,0.926589906215668,0.33497554063797,-0.173061460256577,0.925910294055939,0.335767537355423,0.0744370594620705,0.945350646972656,0.317445039749146,-0.168261662125587,0.941585958003998,0.291725814342499,-0.0520315058529377,0.950489163398743,0.306370794773102,-0.205022722482681,0.911767721176147,0.355872631072998,-0.170369312167168,0.924153923988342,0.341926723718643,-0.171371266245842,0.923817098140717,0.342335879802704,-0.173751935362816,0.935866117477417,0.306537061929703,-0.169333815574646,0.936064720153809,0.308397442102432,0.0720407292246819,0.914917230606079,0.397160679101944,-0.213204383850098,0.932465434074402,0.291637003421783,-0.169392764568329,0.935744524002075,0.309335380792618,-0.174114882946014,0.935493052005768,0.307468414306641,-0.116886645555496,0.703773617744446,0.700742602348328,-0.106048777699471,0.704081594944,0.702155888080597,0.0827271118760109,0.69605165719986,0.713209927082062,-0.294012725353241,0.660000383853912,0.691343724727631,-0.105913043022156,0.698406517505646,0.707821190357208,-0.117585837841034,0.696794509887695,0.707566916942596,0.018315127119422,0.694383203983307,0.719372391700745,-0.117055043578148,0.702109158039093,0.702382326126099,0.0814182683825493,0.686338305473328,0.722710728645325,-0.11688219755888,0.70381760597229,0.700699269771576,-0.23016656935215,0.67666631937027,0.699389815330505,-0.29364013671875,0.656983971595764,0.694368541240692,0.0167902633547783,0.69024670124054,0.723379373550415,-0.210474938154221,0.728409051895142,0.652012765407562,-0.115465745329857,0.717426359653473,0.686998724937439,-0.458091527223587,0.61221444606781,0.644473195075989,
  1321. -0.293815165758133,0.658397138118744,0.692954480648041,-0.232544615864754,0.669938743114471,0.705056846141815,-0.184133008122444,0.705078661441803,0.684805989265442,-0.215639650821686,0.715487718582153,0.664512574672699,-0.00514097465202212,0.628233194351196,0.778008162975311,-0.416235744953156,0.751791417598724,0.511426866054535,-0.215892150998116,0.714844584465027,0.665122389793396,-0.184095233678818,0.705124080181122,0.68476939201355,-0.214699566364288,0.299180060625076,0.929728746414185,-0.422780692577362,0.331136763095856,0.84356677532196,-0.262702763080597,0.307761371135712,0.914478182792664,-0.215066611766815,0.297320246696472,0.930240273475647,-0.261750340461731,0.301858186721802,0.916716158390045,-0.0914710015058517,0.282223790884018,0.954977929592133,-0.418110728263855,0.22588112950325,0.879864275455475,-0.327885240316391,0.256911069154739,0.909113883972168,-0.257906526327133,0.278554737567902,0.925144135951996,-0.260954082012177,0.296963632106781,0.918540000915527,-0.165827617049217,0.305995404720306,0.937479615211487,-0.0923480316996574,0.310925751924515,0.945937097072601,-0.254656434059143,0.259447753429413,0.931577682495117,-0.310437649488449,0.218096688389778,0.925236344337463,-0.169424533843994,0.318598419427872,0.932625532150269,-0.0923222452402115,0.310045570135117,0.946228504180908,-0.164632186293602,0.301818609237671,0.93904310464859,-0.0701112002134323,0.312230348587036,0.947415769100189,-0.306583344936371,0.209650814533234,0.928468227386475,-0.158275470137596,0.30225345492363,0.939995646476746,-0.163826286792755,0.299006134271622,0.940083146095276,-0.164074689149857,0.299872696399689,0.939763724803925,-0.158260941505432,0.302222073078156,0.940008163452148,-0.0739376917481422,0.334698677062988,0.939420104026794,-0.0713284090161324,0.97349750995636,-0.217289671301842,-0.0583285428583622,0.974106132984161,-0.218437492847443,0.134003415703774,0.963687717914581,-0.230974107980728,-0.173838138580322,0.966488420963287,-0.188892766833305,-0.0585000291466713,0.973846137523651,-0.219548285007477,-0.0712637677788734,0.973718106746674,-0.216320857405663,
  1322. 0.0645440220832825,0.973917067050934,-0.217530757188797,-0.0711719915270805,0.974028944969177,-0.2149468511343,0.134661391377449,0.966773271560669,-0.217292070388794,-0.0733572095632553,0.96594250202179,-0.248141095042229,-0.171816289424896,0.962166845798492,-0.211457625031471,-0.180243253707886,0.961340546607971,-0.208174854516983,0.0638925656676292,0.975263595581055,-0.211609691381454,-0.166149094700813,0.953956127166748,-0.249724224209785,-0.0725462138652802,0.969113707542419,-0.235702708363533,-0.210121929645538,0.959384918212891,-0.188226953148842,-0.178182765841484,0.963049829006195,-0.201955869793892,-0.1728535592556,0.963544726371765,-0.204213589429855,-0.179549992084503,0.955466270446777,-0.234192430973053,-0.1691565066576,0.95845240354538,-0.229684829711914,0.0544959977269173,0.990319848060608,-0.127659752964973,-0.212500095367432,0.945585250854492,-0.246398448944092,-0.169257014989853,0.958597302436829,-0.229004889726639,-0.179950445890427,0.955599129199982,-0.233341068029404,-0.19065947830677,0.92348700761795,-0.332897514104843,-0.248975723981857,0.922972857952118,-0.29348286986351,-0.359701663255692,0.90866607427597,-0.211992233991623,-0.191865786910057,0.922474920749664,-0.335003763437271,-0.0632404983043671,0.913535833358765,-0.401812016963959,-0.24899610877037,0.920115947723389,-0.302304148674011,-0.386738538742065,0.869448840618134,-0.307395577430725,-0.248882710933685,0.908744752407074,-0.335022926330566,-0.317598730325699,0.891776919364929,-0.322280943393707,-0.248962968587875,0.913350224494934,-0.322193771600723,-0.0574308298528194,0.922466576099396,-0.381781578063965,-0.184710875153542,0.920621454715729,-0.344003200531006,-0.24863500893116,0.900388360023499,-0.357045352458954,-0.183963000774384,0.917923331260681,-0.35153141617775,-0.309354394674301,0.879840731620789,-0.360804975032806,-0.0559883564710617,0.924603641033173,-0.376793682575226,-0.0284005403518677,0.923417747020721,-0.382744133472443,-0.184622213244438,0.920302391052246,-0.344902992248535,-0.121137633919716,0.936676383018494,-0.328577280044556,
  1323. -0.298436939716339,0.863022267818451,-0.407588064670563,-0.183344975113869,0.915681540966034,-0.357647687196732,-0.184042781591415,0.918211877346039,-0.350735157728195,-0.0214383956044912,0.940146327018738,-0.340095937252045,-0.117414027452469,0.930303454399109,-0.347490280866623,-0.206291437149048,0.975292384624481,-0.0790481194853783,-0.279145956039429,0.958712697029114,-0.0542908608913422,-0.393422394990921,0.919258832931519,-0.0134955914691091,-0.206959366798401,0.974920451641083,-0.0818410143256187,-0.0720126181840897,0.990891635417938,-0.113788850605488,-0.276713043451309,0.958799123764038,-0.0642975047230721,-0.394459426403046,0.911005854606628,-0.120292037725449,-0.267266571521759,0.958208918571472,-0.102002188563347,-0.323144942522049,0.939913153648376,-0.110184036195278,-0.271080583333969,0.958617746829987,-0.0869905948638916,-0.0718401446938515,0.993066132068634,-0.0930519476532936,-0.1850815564394,0.978585004806519,-0.0900897681713104,-0.183800458908081,0.978478014469147,-0.093799389898777,-0.305441528558731,0.940845489501953,-0.14668133854866,-0.26069051027298,0.956998467445374,-0.127257362008095,-0.0717924833297729,0.993539154529572,-0.0878967344760895,-0.0312579944729805,0.995745360851288,-0.0866849720478058,-0.184932515025139,0.978573381900787,-0.0905218347907066,-0.138735130429268,0.988742589950562,-0.056043479591608,-0.282944798469543,0.93986451625824,-0.191303297877312,-0.182705968618393,0.978374719619751,-0.0969610139727592,-0.183882474899292,0.978485286235809,-0.0935621932148933,-0.035855732858181,0.998572707176209,-0.0395867601037025,-0.13032728433609,0.988697290420532,-0.0741120055317879,-0.0527753829956055,0.989860594272614,-0.131874039769173,-0.0407051034271717,0.990160524845123,-0.133885592222214,0.138289421796799,0.97717821598053,-0.161241844296455,-0.162004292011261,0.98232114315033,-0.0938076227903366,-0.0412013046443462,0.98986142873764,-0.135929986834526,-0.0527941286563873,0.989843547344208,-0.131994605064392,0.0744213238358498,0.987069189548492,-0.141971439123154,-0.0523490384221077,0.990244567394257,-0.129132583737373,
  1324. 0.140099361538887,0.979050695896149,-0.147756695747375,-0.0578600205481052,0.984645962715149,-0.164695933461189,-0.167801395058632,0.979247450828552,-0.113653890788555,-0.170079588890076,0.978980004787445,-0.112566009163857,0.0742982923984528,0.987888276576996,-0.136222496628761,-0.165068790316582,0.973650634288788,-0.157343372702599,-0.0553872175514698,0.987329483032227,-0.148704215884209,-0.203778490424156,0.975099682807922,-0.0874927565455437,-0.167414486408234,0.980132520198822,-0.106361761689186,-0.168249040842056,0.980036020278931,-0.105932369828224,-0.16791082918644,0.975856840610504,-0.13967590034008,-0.166252359747887,0.97622549533844,-0.139082938432693,0.0722011923789978,0.996073961257935,-0.051221676170826,-0.211994290351868,0.965188324451447,-0.153198808431625,-0.166309207677841,0.97634369134903,-0.138181999325752,-0.16822712123394,0.975925028324127,-0.138816505670547,-0.117183290421963,0.9419926404953,0.314512521028519,-0.104814656078815,0.943019211292267,0.315798729658127,0.0836061760783196,0.940558552742004,0.329180210828781,-0.294930219650269,0.898344218730927,0.325567007064819,-0.104732669889927,0.940514922142029,0.323207139968872,-0.117928832769394,0.938760280609131,0.323762118816376,0.0204054266214371,0.94177383184433,0.335627287626266,-0.117359280586243,0.941242158412933,0.316686153411865,0.0822917595505714,0.936076045036316,0.342037796974182,-0.117185160517693,0.941984593868256,0.314535766839981,-0.227740585803986,0.917804896831512,0.325220853090286,-0.294550240039825,0.896952211856842,0.329722434282303,0.0188061241060495,0.939700543880463,0.341481149196625,-0.208636552095413,0.942606449127197,0.260698825120926,-0.115673467516899,0.948124945163727,0.296105891466141,-0.454746872186661,0.836591601371765,0.305482923984528,-0.294738590717316,0.897641777992249,0.32767128944397,-0.230189085006714,0.914156794548035,0.333662122488022,-0.183612927794456,0.936084151268005,0.300054728984833,-0.213876038789749,0.936417818069458,0.278170257806778,-0.00276155769824982,0.908081710338593,0.418783932924271,-0.413308650255203,0.901820302009583,0.1260796636343,
  1325. -0.214110016822815,0.936131179332733,0.278954178094864,-0.183566689491272,0.936113953590393,0.299990057945251,-0.20636773109436,-0.0506183281540871,0.977164387702942,-0.402221173048019,0.0145545769482851,0.915426790714264,-0.249890983104706,-0.036608874797821,0.967581689357758,-0.206875160336494,-0.0528450757265091,0.97693920135498,-0.249196380376816,-0.0429288037121296,0.967501044273376,-0.0795116946101189,-0.0815142765641212,0.993495583534241,-0.402066886425018,-0.0932693630456924,0.910847425460815,-0.316323429346085,-0.0792946442961693,0.945331692695618,-0.246372312307358,-0.0677215978503227,0.966806352138519,-0.248618602752686,-0.048116497695446,0.967405676841736,-0.150343030691147,-0.0501903668045998,0.987359046936035,-0.0791974365711212,-0.0513630583882332,0.995534837245941,-0.243950128555298,-0.0879538059234619,0.965791165828705,-0.300662338733673,-0.121651723980904,0.945940256118774,-0.153858304023743,-0.0349561423063278,0.987474381923676,-0.0792078226804733,-0.0522589385509491,0.995487451553345,-0.149331748485565,-0.0545414425432682,0.987281739711761,-0.057173989713192,-0.0514908097684383,0.997035622596741,-0.297145336866379,-0.130908966064453,0.945815861225128,-0.147063359618187,-0.0553294457495213,0.987578392028809,-0.148930013179779,-0.0562660694122314,0.987245678901672,-0.149038031697273,-0.0558025613427162,0.98725563287735,-0.147117957472801,-0.0551904663443565,0.987578094005585,-0.0600901953876019,-0.0274111498147249,0.997816503047943,0.155526801943779,0.921791672706604,-0.355121910572052,-0.0102171199396253,0.929897606372833,-0.367676645517349,0.212819039821625,0.912878274917603,-0.348369508981705,0.153244584798813,0.928899765014648,-0.337136954069138,-0.0226894114166498,0.929079115390778,-0.369184702634811,-0.0102153159677982,0.930047273635864,-0.367297857999802,0.211074411869049,0.897799491882324,-0.38652777671814,-0.010200540535152,0.931262612342834,-0.364206075668335,0.066487543284893,0.925023436546326,-0.374047160148621,-0.0102182067930698,0.929807364940643,-0.367904901504517,-0.0225140806287527,0.928724765777588,-0.370085626840591,
  1326. -0.157548740506172,0.90714156627655,-0.390221208333969,0.0652241557836533,0.922717094421387,-0.379919767379761,-0.0102027021348476,0.93108594417572,-0.36465722322464,-0.120673231780529,0.933259189128876,-0.338327169418335,-0.123828366398811,0.921325027942657,-0.368546843528748,-0.0102322334423661,0.928631603717804,-0.370861917734146,-0.159826993942261,0.916468381881714,-0.366798490285873,0.164397090673447,-0.67076563835144,-0.723219931125641,-0.016538655385375,-0.686943173408508,-0.726522922515869,0.208211272954941,-0.663372874259949,-0.71873813867569,0.161995187401772,-0.656075298786163,-0.737104296684265,-0.0219263639301062,-0.687876343727112,-0.725496709346771,-0.016541501507163,-0.687285959720612,-0.726198673248291,0.206409096717834,-0.6924147605896,-0.691344380378723,-0.0165071804076433,-0.683169007301331,-0.730073809623718,0.055691085755825,-0.690026760101318,-0.721638202667236,-0.0165463965386152,-0.687876641750336,-0.72563910484314,-0.0217533316463232,-0.68855345249176,-0.724859416484833,-0.161667421460152,-0.699442028999329,-0.696164131164551,0.0546119064092636,-0.693998336791992,-0.717902421951294,-0.016506826505065,-0.683127045631409,-0.73011302947998,-0.111704669892788,-0.662843704223633,-0.740378558635712,-0.114704988896847,-0.684936463832855,-0.719517171382904,-0.0165560375899076,-0.689042329788208,-0.724532067775726,-0.164088577032089,-0.680319547653198,-0.714311063289642,0.164438456296921,-0.722974717617035,0.671019852161407,-0.016540827229619,-0.726275444030762,0.687204778194427,0.20819678902626,-0.718500792980194,0.663634538650513,0.162016555666924,-0.736983895301819,0.656205356121063,-0.0218932162970304,-0.725374698638916,0.688006043434143,-0.0165426079183817,-0.726072192192078,0.687419533729553,0.206390619277954,-0.691082060337067,0.692682147026062,-0.0165095794945955,-0.72980535030365,0.683455646038055,0.0556161105632782,-0.721379220485687,0.690303504467011,-0.0165476575493813,-0.725494563579559,0.688028991222382,-0.0217157062143087,-0.72472071647644,0.688700497150421,-0.161648243665695,-0.696021854877472,0.699588060379028,
  1327. 0.0545289367437363,-0.717614531517029,0.694302558898926,-0.0165095198899508,-0.729812204837799,0.683448374271393,-0.111747995018959,-0.740087270736694,0.663161635398865,-0.114756979048252,-0.719142913818359,0.685320675373077,-0.0165592525154352,-0.724161148071289,0.689431965351105,-0.164040774106979,-0.713949203491211,0.680710852146149,0.158656135201454,-0.741089344024658,-0.652391612529755,-0.0170619804412127,-0.756619155406952,-0.653633177280426,0.204447746276855,-0.733104228973389,-0.648659706115723,0.156316876411438,-0.728200435638428,-0.667299926280975,-0.0204875376075506,-0.757195115089417,-0.652867317199707,-0.0170636121183634,-0.756865322589874,-0.653348088264465,0.202748984098434,-0.75860995054245,-0.619196057319641,-0.0170378815382719,-0.753012716770172,-0.657785296440125,0.0640496462583542,-0.759477972984314,-0.647372305393219,-0.0170674007385969,-0.757437705993652,-0.652684330940247,-0.0203159209340811,-0.757809996604919,-0.652158975601196,-0.159771785140038,-0.765915870666504,-0.622772812843323,0.0628269910812378,-0.763508379459381,-0.64273464679718,-0.0170376989990473,-0.752985775470734,-0.657816112041473,-0.110707126557827,-0.734163045883179,-0.669886946678162,-0.113719291985035,-0.7541384100914,-0.646794617176056,-0.0170753300189972,-0.758640587329865,-0.651285529136658,-0.16184176504612,-0.749211668968201,-0.642253160476685,0.14860026538372,-0.815448224544525,0.559430241584778,-0.0154735585674644,-0.819552958011627,0.572794437408447,0.20741468667984,-0.808460593223572,0.550790905952454,0.146389603614807,-0.826102793216705,0.544173061847687,-0.0202728044241667,-0.818936288356781,0.573526203632355,-0.0154747441411018,-0.819472014904022,0.572910189628601,0.205470949411392,-0.78578919172287,0.583366990089417,-0.0154312653467059,-0.822416067123413,0.568677246570587,0.0633927285671234,-0.814115285873413,0.577232658863068,-0.0154815698042512,-0.819005310535431,0.573576986789703,-0.0201079677790403,-0.818413853645325,0.574277281761169,-0.159850209951401,-0.791873872280121,0.58939266204834,0.0621595159173012,-0.810642838478088,0.582232356071472,
  1328. -0.0154320038855076,-0.822366297245026,0.568749129772186,-0.116157904267311,-0.829807877540588,0.545826196670532,-0.1193672940135,-0.811735570430756,0.571696519851685,-0.0154994260519743,-0.817778706550598,0.575324177742004,-0.162064626812935,-0.806650042533875,0.568375587463379,0.148599877953529,-0.815450131893158,0.559427499771118,-0.0154735222458839,-0.819555401802063,0.57279098033905,0.207414835691452,-0.808462202548981,0.550788462162018,0.146390408277512,-0.82609897851944,0.544178664684296,-0.0202714931219816,-0.818932175636292,0.573532223701477,-0.0154748074710369,-0.819467723369598,0.572916328907013,0.205467611551285,-0.785752236843109,0.583417892456055,-0.0154318669810891,-0.822375655174255,0.568735718727112,0.06337920576334,-0.814077377319336,0.577287614345551,-0.0154815753921866,-0.819004952907562,0.573577523231506,-0.020107863470912,-0.818413555622101,0.574277758598328,-0.159850224852562,-0.791873931884766,0.58939254283905,0.0621489211916924,-0.810612857341766,0.582275211811066,-0.015432464890182,-0.822335362434387,0.568793833255768,-0.116163343191147,-0.829778492450714,0.545869708061218,-0.119363352656364,-0.811758816242218,0.571664452552795,-0.0154991047456861,-0.81780081987381,0.575292706489563,-0.162067979574203,-0.8066725730896,0.568342626094818,0.165508434176445,0.98485654592514,-0.0516198091208935,-0.00834360998123884,0.998067855834961,-0.0615705139935017,0.203064605593681,0.977927446365356,-0.0492206215858459,0.163071975111961,0.986122190952301,-0.0311551503837109,-0.0203497987240553,0.997810125350952,-0.0629354491829872,-0.00833878479897976,0.998107969760895,-0.0609177649021149,0.201014325022697,0.975620985031128,-0.0880736634135246,-0.00831813551485538,0.998274445533752,-0.0581288523972034,0.0591104663908482,0.99592798948288,-0.0680688843131065,-0.00834329426288605,0.998070597648621,-0.0615277402102947,-0.0201801415532827,0.997755646705627,-0.0638480186462402,-0.157979488372803,0.983312785625458,-0.0902131795883179,0.0579757802188396,0.995586216449738,-0.0738032832741737,-0.00832278188318014,0.998237729072571,-0.058755598962307,
  1329. -0.11385403573513,0.992907881736755,-0.0342229306697845,-0.116832241415977,0.991013884544373,-0.065128318965435,-0.00836919341236353,0.997847557067871,-0.0650400295853615,-0.160273194313049,0.984933793544769,-0.0649459138512611,0.160257905721664,-0.819429516792297,0.550320625305176,-0.0153951356187463,-0.824825048446655,0.565178513526917,0.207813248038292,-0.813466429710388,0.543218433856964,0.158057779073715,-0.830578863620758,0.53400057554245,-0.0218549575656652,-0.82391756772995,0.56628805398941,-0.0153980012983084,-0.824635088443756,0.565455496311188,0.205929845571518,-0.790922164916992,0.57622492313385,-0.0153539497405291,-0.827530741691589,0.561210453510284,0.0543318092823029,-0.820525705814362,0.569021701812744,-0.0154048334807158,-0.824181497097015,0.566116273403168,-0.0216843578964472,-0.823383390903473,0.56707102060318,-0.156162112951279,-0.798104465007782,0.581930160522461,0.0532426536083221,-0.817521452903748,0.573431730270386,-0.0153541816398501,-0.827515602111816,0.56123274564743,-0.110224649310112,-0.834581673145294,0.53974437713623,-0.113103620707989,-0.817561030387878,0.564625144004822,-0.0154222901910543,-0.823017597198486,0.567806601524353,-0.158446982502937,-0.812318086624146,0.561278939247131,0.106992952525616,0.0863707885146141,0.990501165390015,-0.0625505447387695,0.0836027860641479,0.994534075260162,0.163924962282181,0.0867467597126961,0.982651352882385,0.106081038713455,0.066990427672863,0.992098331451416,-0.0701912343502045,0.0842752233147621,0.993967294692993,-0.0625483840703964,0.0835764408111572,0.994536459445953,0.159141525626183,0.126714617013931,0.979090094566345,-0.0621541887521744,0.0787972286343575,0.994951188564301,0.00640098378062248,0.0941537842154503,0.995537161827087,-0.0626168102025986,0.08440762758255,0.994461953639984,-0.0700797438621521,0.0852948799729347,0.993888139724731,-0.204176232218742,0.100481264293194,0.973763644695282,0.0049321805126965,0.0993655696511269,0.995038866996765,-0.0621572062373161,0.078833781182766,0.994948089122772,-0.161182284355164,0.0476394928991795,0.985774278640747,
  1330. -0.166552096605301,0.0787444412708282,0.982883453369141,-0.0627992451190948,0.0866261273622513,0.994259655475616,-0.204627588391304,0.0755970850586891,0.97591632604599,0.0927856490015984,0.946603357791901,-0.308760285377502,-0.0718493536114693,0.94210422039032,-0.327532142400742,0.146247655153275,0.942421197891235,-0.300755620002747,0.0893904268741608,0.952547311782837,-0.290968924760818,-0.0760383829474449,0.941506564617157,-0.328304022550583,-0.0718531236052513,0.942125201225281,-0.327471017837524,0.14687542617321,0.929842948913574,-0.337371855974197,-0.0721484646201134,0.94376003742218,-0.322663426399231,0.00311551569029689,0.944143712520599,-0.329519242048264,-0.0718061551451683,0.941863894462585,-0.328232020139694,-0.0758192017674446,0.941232264041901,-0.329140424728394,-0.203923717141151,0.912255108356476,-0.355254501104355,0.00231672800146043,0.942188143730164,-0.335076302289963,-0.0721404552459717,0.943715870380402,-0.32279434800148,-0.169249981641769,0.937556147575378,-0.303880035877228,-0.170263588428497,0.927527368068695,-0.332720875740051,-0.0716825500130653,0.941174685955048,-0.330230087041855,-0.207489818334579,0.91988617181778,-0.332802474498749,0.0813976973295212,0.992038190364838,0.0960970520973206,-0.0892385542392731,0.992705047130585,0.081075631082058,0.127680867910385,0.986789762973785,0.0997173115611076,0.0784072354435921,0.990192472934723,0.11563366651535,-0.0986928418278694,0.9919553399086,0.0792738348245621,-0.0892439484596252,0.992686450481415,0.0812966376543045,0.1271603256464,0.99003130197525,0.0605668053030968,-0.0893391147255898,0.992348492145538,0.0852239429950714,-0.0116413533687592,0.996979475021362,0.076788455247879,-0.089227207005024,0.992743849754334,0.0806114450097084,-0.0984930843114853,0.992047548294067,0.078363373875618,-0.237124189734459,0.970501005649567,0.0435902029275894,-0.0126573853194714,0.997431039810181,0.0705059915781021,-0.0893302336335182,0.992380976676941,0.0848546847701073,-0.191768869757652,0.975981593132019,0.103366412222385,-0.193749785423279,0.978375673294067,0.072403185069561,
  1331. -0.0891598984599113,0.992968380451202,0.0778737515211105,-0.240415632724762,0.968167364597321,0.0696588158607483,0.238228738307953,-0.8879434466362,-0.393450826406479,0.0660885348916054,-0.915393948554993,-0.397097319364548,0.29145559668541,-0.873566567897797,-0.389788836240768,0.236205473542213,-0.880402207374573,-0.411216378211975,0.0633555799722672,-0.915961980819702,-0.396231949329376,0.0660802945494652,-0.915626227855682,-0.396562725305557,0.28923636674881,-0.889748990535736,-0.353113412857056,0.0661670193076134,-0.913133084774017,-0.402255982160568,0.142205074429512,-0.910630345344543,-0.387982040643692,0.0660674497485161,-0.91598641872406,-0.395732253789902,0.0635213926434517,-0.916328310966492,-0.395357519388199,-0.0750134289264679,-0.925572633743286,-0.371063798666,0.141030192375183,-0.912975192070007,-0.382866531610489,0.0661699175834656,-0.913048267364502,-0.402448326349258,-0.0277063958346844,-0.905480146408081,-0.423483163118362,-0.0310450978577137,-0.917961835861206,-0.39545214176178,0.066046915948391,-0.916557729244232,-0.394410789012909,-0.0770502686500549,-0.915598928928375,-0.39464145898819,0.110550612211227,0.687264561653137,0.717945694923401,-0.0652145743370056,0.687699794769287,0.723060250282288,0.164225891232491,0.682834148406982,0.711876034736633,0.109601244330406,0.672869861125946,0.731596708297729,-0.0698806345462799,0.688023626804352,0.722315907478333,-0.0652381926774979,0.687912940979004,0.72285532951355,0.159573912620544,0.71183830499649,0.683975517749786,-0.0647880882024765,0.683849275112152,0.726741135120392,0.00418396340683103,0.696386456489563,0.717654883861542,-0.0653105154633522,0.688565671443939,0.722227036952972,-0.0697693675756454,0.688760697841644,0.72162389755249,-0.206534937024117,0.687885761260986,0.695813655853271,0.00277325510978699,0.700020253658295,0.714117586612701,-0.0647740438580513,0.683722496032715,0.726861715316772,-0.159720480442047,0.654853999614716,0.738685131072998,-0.165126338601112,0.677018046379089,0.71720290184021,-0.0654479190707207,0.689805328845978,0.721030712127686,
  1332. -0.206854939460754,0.669536411762238,0.71339476108551,0.101586557924747,0.545193076133728,-0.832132697105408,-0.0730480849742889,0.529373228549957,-0.845238387584686,0.145958542823792,0.546539962291718,-0.824615240097046,0.0980010628700256,0.561784446239471,-0.821458458900452,-0.0716388151049614,0.529625356197357,-0.845201194286346,-0.0730424895882607,0.529289901256561,-0.845291078090668,0.146667122840881,0.513843715190887,-0.845253467559814,-0.0733527168631554,0.533912122249603,-0.842352211475372,0.002511773025617,0.529923737049103,-0.848041534423828,-0.0729945972561836,0.528577923774719,-0.845740616321564,-0.0714471414685249,0.528985798358917,-0.845617830753326,-0.208480983972549,0.487317234277725,-0.847972631454468,0.00170205882750452,0.524969041347504,-0.851119637489319,-0.0733507946133614,0.533883512020111,-0.842370510101318,-0.172899410128593,0.540964722633362,-0.823081374168396,-0.173995971679688,0.514333605766296,-0.839753806591034,-0.0728873312473297,0.526984393596649,-0.846743702888489,-0.212150722742081,0.508083760738373,-0.83477121591568,0.082761786878109,0.833670496940613,-0.546025633811951,-0.089727059006691,0.82475471496582,-0.558326780796051,0.133230745792389,0.831529855728149,-0.539265871047974,0.0796829760074615,0.84454607963562,-0.529521048069,-0.0947655141353607,0.823874473571777,-0.558793842792511,-0.0897306948900223,0.824845314025879,-0.558192312717438,0.132665634155273,0.808928072452545,-0.572743594646454,-0.0898216515779495,0.8271204829216,-0.554800689220428,-0.0151636488735676,0.825640738010406,-0.563992381095886,-0.0897149294614792,0.824453294277191,-0.558773636817932,-0.094588115811348,0.823435068130493,-0.559471011161804,-0.237292766571045,0.783973753452301,-0.573652744293213,-0.0161514040082693,0.822214603424072,-0.56894838809967,-0.0898143649101257,0.82693749666214,-0.555074632167816,-0.192089080810547,0.825706541538239,-0.530387163162231,-0.19397184252739,0.80817061662674,-0.556089103221893,-0.0896549299359322,0.822967648506165,-0.560969114303589,-0.240622028708458,0.798486948013306,-0.551832973957062,
  1333. 0.240793287754059,-0.938126981258392,0.248870208859444,0.068193294107914,-0.962283194065094,0.263364225625992,0.289144575595856,-0.925855100154877,0.243285700678825,0.238701790571213,-0.943457722663879,0.23002003133297,0.0640470013022423,-0.962282776832581,0.264404773712158,0.0681869685649872,-0.96219390630722,0.263691812753677,0.286965489387512,-0.915624737739563,0.28157103061676,0.0682890266180038,-0.963634133338928,0.258352160453796,0.142417177557945,-0.952931940555573,0.267652809619904,0.0681711807847023,-0.96197122335434,0.264507174491882,0.064207062125206,-0.962026596069336,0.265296936035156,-0.0747455880045891,-0.954066336154938,0.290121734142303,0.141256347298622,-0.951548933982849,0.273132294416428,0.0682897195219994,-0.963643848896027,0.258316069841385,-0.0263386908918619,-0.971140801906586,0.237048223614693,-0.0296009872108698,-0.96340548992157,0.266408890485764,0.0681364014744759,-0.961480379104614,0.266295164823532,-0.0767743214964867,-0.961035132408142,0.265550971031189,0.153369709849358,0.798800647258759,0.581717610359192,-0.01281036157161,0.81345796585083,0.581482648849487,0.207789480686188,0.788987636566162,0.57820600271225,0.151231274008751,0.787662923336029,0.597257316112518,-0.0212125312536955,0.814101934432983,0.580334424972534,-0.0128093268722296,0.813392221927643,0.581574618816376,0.205927833914757,0.812288880348206,0.545692682266235,-0.0127713810652494,0.810982704162598,0.584930717945099,0.0631976798176765,0.816003739833832,0.574581682682037,-0.0128159625455737,0.813813626766205,0.580984652042389,-0.0210445132106543,0.814642429351807,0.579581558704376,-0.153801456093788,0.82005375623703,0.551232278347015,0.0619777254760265,0.81953889131546,0.569661974906921,-0.0127739692106843,0.811147034168243,0.584702789783478,-0.121651396155357,0.790344417095184,0.600463688373566,-0.124907895922661,0.809367716312408,0.573865830898285,-0.0128404442220926,0.815368175506592,0.57880038022995,-0.155862241983414,0.805876314640045,0.571200788021088,0.157868966460228,0.24346724152565,-0.956974983215332,-0.0134234176948667,0.237711846828461,-0.971242964267731,
  1334. 0.206976771354675,0.243791475892067,-0.947484195232391,0.155484825372696,0.262395948171616,-0.952351212501526,-0.0202007852494717,0.236494228243828,-0.971422910690308,-0.0134243164211512,0.237635210156441,-0.97126168012619,0.205088034272194,0.205306574702263,-0.956968188285828,-0.0133711658418179,0.242153719067574,-0.97014582157135,0.0564090795814991,0.231675773859024,-0.971156179904938,-0.0134326163679361,0.236926883459091,-0.971434593200684,-0.0200374871492386,0.235634416341782,-0.971635282039642,-0.157730340957642,0.206196948885918,-0.9657142162323,0.0552985854446888,0.226328641176224,-0.972480118274689,-0.0133734354749322,0.241961345076561,-0.970193803310394,-0.110627844929695,0.262065529823303,-0.958688199520111,-0.113686420023441,0.232790797948837,-0.965859174728394,-0.0134578347206116,0.234770357608795,-0.971957683563232,-0.160092145204544,0.231062859296799,-0.959677278995514,0.157910540699959,-0.957053363323212,-0.243131965398788,-0.0134274149313569,-0.971326291561127,-0.237370893359184,0.206961765885353,-0.947572946548462,-0.243458956480026,0.155508920550346,-0.95239919424057,-0.262207537889481,-0.0201649088412523,-0.971469581127167,-0.236305326223373,-0.0134266065433621,-0.971309423446655,-0.237439900636673,0.205067962408066,-0.957053661346436,-0.204928174614906,-0.0133758150041103,-0.970243990421295,-0.241759479045868,0.0563300773501396,-0.971251547336578,-0.231295317411423,-0.0134352007880807,-0.971488356590271,-0.236706286668777,-0.0199971757829189,-0.971687436103821,-0.235422119498253,-0.157709643244743,-0.96576339006424,-0.205983027815819,0.0552131421864033,-0.972580552101135,-0.225917294621468,-0.0133785232901573,-0.970301151275635,-0.241529852151871,-0.110672801733017,-0.958798229694366,-0.261643946170807,-0.113740809261799,-0.96598082780838,-0.232259094715118,-0.0134640615433455,-0.972086369991302,-0.23423707485199,-0.160043269395828,-0.959811627864838,-0.230538308620453,0.157886251807213,0.145837485790253,-0.976628661155701,-0.014502877369523,0.138614997267723,-0.990240156650543,0.205734357237816,0.147087723016739,-0.96749085187912,
  1335. 0.155533120036125,0.165338695049286,-0.97389554977417,-0.0174896605312824,0.138107404112816,-0.990262806415558,-0.0145028820261359,0.138614520430565,-0.990240216255188,0.204020813107491,0.108289606869221,-0.972958922386169,-0.0144525282084942,0.14359176158905,-0.989531457424164,0.0586431287229061,0.132559701800346,-0.989438772201538,-0.0145109724253416,0.137810945510864,-0.990352213382721,-0.017331575974822,0.137253537774086,-0.9903843998909,-0.160318031907082,0.107460252940655,-0.98119843006134,0.0575221702456474,0.126869961619377,-0.990250051021576,-0.0144542958587408,0.143417924642563,-0.989556729793549,-0.111397832632065,0.164494946599007,-0.980067312717438,-0.114353150129318,0.134105622768402,-0.9843470454216,-0.014534505084157,0.135468035936356,-0.990675091743469,-0.162441104650497,0.132959559559822,-0.977719068527222,0.156619638204575,-0.911065518856049,-0.381353050470352,-0.0116044217720628,-0.925799369812012,-0.377837210893631,0.208913326263428,-0.900999903678894,-0.380203306674957,0.154332593083382,-0.903675496578217,-0.399439603090286,-0.0146184712648392,-0.925835728645325,-0.377643555402756,-0.0116002159193158,-0.925679266452789,-0.378131300210953,0.206838726997375,-0.916190981864929,-0.343237429857254,-0.0115482052788138,-0.924190104007721,-0.381758183240891,0.0627941265702248,-0.926604747772217,-0.370756983757019,-0.0116095580160618,-0.92594587802887,-0.377478003501892,-0.0144783966243267,-0.926124691963196,-0.376939654350281,-0.15802001953125,-0.924896419048309,-0.345826864242554,0.0615843906998634,-0.928903877735138,-0.365164309740067,-0.0115534858778119,-0.92434173822403,-0.38139083981514,-0.118784323334694,-0.908206164836884,-0.401312619447708,-0.122061587870121,-0.920362114906311,-0.371530085802078,-0.0116476118564606,-0.92702841758728,-0.37481027841568,-0.160077407956123,-0.915409028530121,-0.369325906038284,0.156619802117348,-0.911065995693207,-0.381351798772812,-0.0116044161841273,-0.925799190998077,-0.377837538719177,0.208913207054138,-0.901000559329987,-0.380201578140259,0.154334783554077,-0.90368264913559,-0.399422913789749,
  1336. -0.0146154910326004,-0.925841808319092,-0.377628564834595,-0.0116004375740886,-0.92568564414978,-0.378115743398666,0.206834897398949,-0.916215479373932,-0.343174010515213,-0.0115492017939687,-0.924218714237213,-0.381688863039017,0.0627799034118652,-0.926631987094879,-0.370691239833832,-0.011609710752964,-0.925950169563293,-0.377467185258865,-0.0144763514399529,-0.926128923892975,-0.376929342746735,-0.158019348978996,-0.924899458885193,-0.345819175243378,0.0615744516253471,-0.928922593593597,-0.365118384361267,-0.0115541787818074,-0.92436158657074,-0.381342709064484,-0.118789628148079,-0.908226191997528,-0.401265770196915,-0.122058123350143,-0.920349538326263,-0.371562570333481,-0.0116471471264958,-0.927015244960785,-0.374842822551727,-0.160080149769783,-0.915395617485046,-0.369357794523239,0.163456588983536,0.578034460544586,0.799473702907562,-0.00934343785047531,0.593308329582214,0.804921090602875,0.206226676702499,0.571442663669586,0.794307291507721,0.161070704460144,0.561693727970123,0.811514914035797,-0.0220412090420723,0.594466865062714,0.803818047046661,-0.00933630671352148,0.592855453491211,0.805254817008972,0.204086408019066,0.603327512741089,0.770937621593475,-0.0092969685792923,0.590357482433319,0.807088494300842,0.0567655190825462,0.597356975078583,0.79996395111084,-0.00934444740414619,0.593372404575348,0.804873824119568,-0.0218628272414207,0.595242559909821,0.803248643875122,-0.157614558935165,0.609285116195679,0.777128934860229,0.0556904003024101,0.601848006248474,0.79666668176651,-0.00930394791066647,0.590800702571869,0.806763887405396,-0.113444045186043,0.567592740058899,0.81545627117157,-0.116269797086716,0.59245228767395,0.797170996665955,-0.00938657484948635,0.596047461032867,0.802894353866577,-0.1598931401968,0.588998198509216,0.792158663272858,0.158586159348488,-0.907166182994843,-0.38974341750145,-0.0114813139662147,-0.922261476516724,-0.386396139860153,0.209337800741196,-0.897349059581757,-0.388512909412384,0.156408488750458,-0.899582505226135,-0.407783895730972,-0.0162319578230381,-0.922465324401855,-0.385738700628281,
  1337. -0.0114797288551927,-0.922215580940247,-0.386505663394928,0.207323759794235,-0.912973642349243,-0.351420164108276,-0.0114274667575955,-0.920698165893555,-0.390108048915863,0.057346798479557,-0.923197746276855,-0.380022943019867,-0.0114889368414879,-0.922482013702393,-0.385869085788727,-0.0160860866308212,-0.92277318239212,-0.38500788807869,-0.161456122994423,-0.92145562171936,-0.353343307971954,0.0562179610133171,-0.925363481044769,-0.37488916516304,-0.0114320730790496,-0.920832216739655,-0.389791309833527,-0.113159261643887,-0.905636548995972,-0.408677905797958,-0.115993566811085,-0.917580604553223,-0.380251675844193,-0.0115261944010854,-0.923557102680206,-0.383287578821182,-0.163725763559341,-0.911441504955292,-0.377449840307236,0.0998343825340271,0.283483684062958,0.953766345977783,-0.0750869885087013,0.274577438831329,0.958628833293915,0.153338089585304,0.284479260444641,0.946339786052704,0.0997496247291565,0.264346361160278,0.959255516529083,-0.0781787484884262,0.274852126836777,0.958302855491638,-0.0751075148582459,0.274744123220444,0.958579480648041,0.147101640701294,0.322902292013168,0.934930622577667,-0.0744836181402206,0.2696832716465,0.960064172744751,-0.00132239609956741,0.288940995931625,0.957346022129059,-0.0752105265855789,0.275580555200577,0.958331227302551,-0.0781112760305405,0.275758892297745,0.958047807216644,-0.220775619149208,0.281630456447601,0.933778584003448,-0.00306581007316709,0.29416760802269,0.955749034881592,-0.0744735598564148,0.269601792097092,0.960087776184082,-0.169389352202415,0.234303385019302,0.95729273557663,-0.175849333405495,0.263727724552155,0.948432803153992,-0.075438492000103,0.27743273973465,0.957778751850128,-0.220099151134491,0.256726205348969,0.941088795661926,0.0602969452738762,0.870503067970276,-0.488455444574356,-0.1073994114995,0.855593740940094,-0.506383895874023,0.114718616008759,0.869974315166473,-0.479566901922226,0.0563934408128262,0.879801392555237,-0.471984446048737,-0.111677624285221,0.854573726654053,-0.507180333137512,-0.107391729950905,0.855546414852142,-0.5064657330513,
  1338. 0.116378344595432,0.850154936313629,-0.513510167598724,-0.107838675379753,0.858297646045685,-0.501693189144135,-0.0332203544676304,0.860422670841217,-0.508496999740601,-0.107323333621025,0.855124890804291,-0.507191359996796,-0.111428394913673,0.854131519794464,-0.507979452610016,-0.236421644687653,0.815939962863922,-0.527585804462433,-0.0339023061096668,0.857458531856537,-0.513434946537018,-0.107835575938225,0.858278572559357,-0.501726388931274,-0.209235146641731,0.851464450359344,-0.480862617492676,-0.20968060195446,0.835228621959686,-0.508357584476471,-0.107171066105366,0.854185938835144,-0.508803248405457,-0.240505993366241,0.827637672424316,-0.507122099399567,0.0400042310357094,0.994090676307678,-0.100912846624851,-0.131004557013512,0.984596967697144,-0.115787528455257,0.0943754464387894,0.990942239761353,-0.0955344811081886,0.0369585454463959,0.995980143547058,-0.0815939009189606,-0.135318920016289,0.983906745910645,-0.116688773036003,-0.131002798676491,0.984590590000153,-0.115843757987022,0.0939312651753426,0.986278355121613,-0.135764598846436,-0.131147041916847,0.985109925270081,-0.111170940101147,-0.0510314032435417,0.991380095481873,-0.120670266449451,-0.130979403853416,0.984505236148834,-0.116592817008495,-0.135130345821381,0.983833253383636,-0.11752425134182,-0.275734603404999,0.949757158756256,-0.148093968629837,-0.0520076379179955,0.990546345710754,-0.126938462257385,-0.131141483783722,0.98509007692337,-0.111352607607841,-0.228071764111519,0.969380915164948,-0.0910161510109901,-0.229687497019768,0.965682923793793,-0.121244072914124,-0.130907863378525,0.984242677688599,-0.118867583572865,-0.279152661561966,0.952467143535614,-0.121984280645847,0.274619489908218,-0.938052773475647,-0.211284533143044,0.10693085193634,-0.971942067146301,-0.209510251879692,0.324290186166763,-0.922217965126038,-0.21059438586235,0.272384077310562,-0.934288263320923,-0.230027139186859,0.107345566153526,-0.971958816051483,-0.209220319986343,0.106927558779716,-0.972017765045166,-0.209160462021828,0.322585582733154,-0.930733203887939,-0.172262728214264,
  1339. 0.106977410614491,-0.970822215080261,-0.214616373181343,0.181950658559799,-0.962498247623444,-0.201224505901337,0.106919683516026,-0.972196757793427,-0.208330884575844,0.107495419681072,-0.972112119197845,-0.208429247140884,-0.0315540134906769,-0.98264867067337,-0.182773470878601,0.180816531181335,-0.963859021663666,-0.195655673742294,0.106977835297585,-0.970811486244202,-0.21466463804245,0.00726163387298584,-0.971209764480591,-0.238115429878235,0.00421711383387446,-0.978263318538666,-0.207323580980301,0.106902584433556,-0.972577810287476,-0.206553488969803,-0.0335961245000362,-0.977752268314362,-0.207055181264877,0.156768351793289,0.973621666431427,0.16578483581543,-0.0142953163012862,0.987193942070007,0.158882781863213,0.207781225442886,0.963829278945923,0.166914075613022,0.154528111219406,0.970509827136993,0.185018390417099,-0.0211093928664923,0.987269520759583,0.157649725675583,-0.0142961023375392,0.987206101417542,0.158807247877121,0.205889597535133,0.97024405002594,0.12742093205452,-0.0142486710101366,0.986465394496918,0.163349613547325,0.0636001825332642,0.986398279666901,0.151570349931717,-0.014303969219327,0.987327396869659,0.158050641417503,-0.0209406148642302,0.987418115139008,0.15673890709877,-0.155438348650932,0.979444801807404,0.12855638563633,0.0623724535107613,0.987380802631378,0.145563915371895,-0.0142503306269646,0.986491620540619,0.163191288709641,-0.117840863764286,0.975563049316406,0.185446247458458,-0.121041797101498,0.980623066425323,0.154036685824394,-0.0143285058438778,0.987702786922455,0.155685260891914,-0.157623812556267,0.975565731525421,0.153056725859642,0.163957685232162,-0.207076728343964,-0.964487969875336,-0.0170890260487795,-0.219282746315002,-0.975511729717255,0.20832858979702,-0.202962055802345,-0.956768333911896,0.161549046635628,-0.187402695417404,-0.968907713890076,-0.0235343016684055,-0.220837488770485,-0.975026667118073,-0.0170912761241198,-0.219802722334862,-0.975394606590271,0.206435725092888,-0.241945743560791,-0.948075175285339,-0.0170664396136999,-0.214122220873833,-0.976657748222351,
  1340. 0.0526287332177162,-0.224001660943031,-0.973166704177856,-0.0170947667211294,-0.2206110060215,-0.975212037563324,-0.0233535673469305,-0.221787571907043,-0.974815368652344,-0.15665902197361,-0.244728341698647,-0.956852078437805,0.051574245095253,-0.229096978902817,-0.972036361694336,-0.0170660242438316,-0.214027941226959,-0.976678490638733,-0.108052641153336,-0.192383378744125,-0.975352942943573,-0.110920637845993,-0.221208065748215,-0.968898177146912,-0.017101151868701,-0.222096875309944,-0.97487461566925,-0.158837765455246,-0.219988569617271,-0.962484180927277,0.164000943303108,-0.964403867721558,0.207434311509132,-0.0170906074345112,-0.975429475307465,0.219648152589798,0.208312705159187,-0.956695318222046,0.203322067856789,0.161571741104126,-0.968868553638458,0.187585860490799,-0.0234993882477283,-0.974985897541046,0.221021041274071,-0.0170920938253403,-0.975351929664612,0.219992056488991,0.206416383385658,-0.947986304759979,0.242310345172882,-0.017068138346076,-0.976573288440704,0.214506953954697,0.0525520406663418,-0.973085463047028,0.224372744560242,-0.0170956961810589,-0.975163102149963,0.220827206969261,-0.0233138855546713,-0.974768757820129,0.221996083855629,-0.15664005279541,-0.95680159330368,0.244937986135483,0.0514902547001839,-0.97194516658783,0.229502245783806,-0.0170679073780775,-0.976584911346436,0.214454367756844,-0.108094818890095,-0.975265622138977,0.192801669239998,-0.110971421003342,-0.968774080276489,0.221725612878799,-0.0171033851802349,-0.974755585193634,0.222618564963341,-0.158793434500694,-0.96237313747406,0.220505118370056,0.153958708047867,-0.304177641868591,-0.940091848373413,-0.0174279119819403,-0.316439688205719,-0.948452532291412,0.20275291800499,-0.298947036266327,-0.932481646537781,0.151725143194199,-0.285978645086288,-0.946147799491882,-0.0224771462380886,-0.317613989114761,-0.947953701019287,-0.0174289494752884,-0.316835820674896,-0.948320329189301,0.201086103916168,-0.335554867982864,-0.920308232307434,-0.0174136515706778,-0.311094522476196,-0.950219511985779,0.0598648712038994,-0.321518659591675,-0.945008993148804,
  1341. -0.0174311399459839,-0.317677527666092,-0.948038578033447,-0.0222938433289528,-0.318556517362595,-0.947641730308533,-0.162236988544464,-0.340512245893478,-0.926137447357178,0.0587070621550083,-0.327050089836121,-0.943181693553925,-0.0174134653061628,-0.311027079820633,-0.950241506099701,-0.11209362745285,-0.288410484790802,-0.950922966003418,-0.115041390061378,-0.317711770534515,-0.941182613372803,-0.0174354035407305,-0.319329291582108,-0.947483479976654,-0.164372116327286,-0.315718114376068,-0.934507369995117,0.15027166903019,-0.986563682556152,0.0641133561730385,-0.0162831004709005,-0.997151136398315,0.0736513808369637,0.210518583655357,-0.975737571716309,0.0601524636149406,0.148068979382515,-0.987936198711395,0.0453607477247715,-0.0182502493262291,-0.997075021266937,0.0742182061076164,-0.0162846948951483,-0.997133493423462,0.0738890394568443,0.208590477705002,-0.972839772701263,0.100363500416279,-0.0162482056766748,-0.99752002954483,0.0684819221496582,0.0646570101380348,-0.994664788246155,0.0803824439644814,-0.0162902772426605,-0.997071385383606,0.0747223943471909,-0.0180907621979713,-0.997013807296753,0.0750743374228477,-0.157699957489967,-0.982243955135345,0.101625435054302,0.0634269416332245,-0.994225978851318,0.0865549221634865,-0.0162483528256416,-0.997518539428711,0.0685036852955818,-0.116186238825321,-0.992199540138245,0.0451775193214417,-0.119451127946377,-0.989876866340637,0.0766509771347046,-0.016303388401866,-0.996922075748444,0.0766861885786057,-0.159840762615204,-0.984180986881256,0.0764114931225777,0.150271564722061,-0.986563861370087,0.0641123354434967,-0.016283081844449,-0.99715131521225,0.0736487507820129,0.210518598556519,-0.975737571716309,0.0601520277559757,0.1480702906847,-0.987935543060303,0.0453717634081841,-0.0182485412806273,-0.99707442522049,0.0742273852229118,-0.0162847582250834,-0.997132778167725,0.073898546397686,0.208587229251862,-0.97283411026001,0.100426182150841,-0.016248682513833,-0.997515201568604,0.0685523673892021,0.0646438002586365,-0.994660377502441,0.0804488062858582,-0.0162903107702732,-0.997071027755737,0.0747273042798042,
  1342. -0.0180898848921061,-0.997013568878174,0.075079046189785,-0.157699748873711,-0.982243657112122,0.101627521216869,0.0634174793958664,-0.994222462177277,0.0866023525595665,-0.0162486936897039,-0.997515082359314,0.0685538277029991,-0.116191431879997,-0.992196619510651,0.0452268831431866,-0.119447946548462,-0.989879608154297,0.0766198635101318,-0.0163031779229641,-0.99692440032959,0.076654739677906,-0.159843325614929,-0.984182953834534,0.0763805657625198,0.161339402198792,0.873678803443909,0.458971530199051,-0.0104089099913836,0.88943612575531,0.456940859556198,0.20237398147583,0.865924835205078,0.457404613494873,0.158920779824257,0.864533126354218,0.476788014173508,-0.0162721052765846,0.889628887176514,0.456394225358963,-0.0104029634967446,0.889244794845581,0.457313299179077,0.200514197349548,0.883701384067535,0.422925502061844,-0.010353752411902,0.887657344341278,0.460388153791428,0.0550150834023952,0.890808284282684,0.451036483049393,-0.0104124844074249,0.889551162719727,0.456716895103455,-0.0161199197173119,0.889997541904449,0.455680310726166,-0.157313480973244,0.891391158103943,0.425057828426361,0.0539410598576069,0.893302142620087,0.446208089590073,-0.0103604039177299,0.887872278690338,0.459973335266113,-0.116084605455399,0.870511054992676,0.478262394666672,-0.119145408272743,0.884913444519043,0.450258404016495,-0.0104566616937518,0.890969395637512,0.45394292473793,-0.159533768892288,0.879938542842865,0.447500944137573,0.164505869150162,-0.984892070293427,0.0540871024131775,-0.0162204597145319,-0.997791409492493,0.0644156038761139,0.210905149579048,-0.976170480251312,0.0510907657444477,0.162129536271095,-0.986186861991882,0.0339036285877228,-0.0198803059756756,-0.997657120227814,0.0654604285955429,-0.0162234175950289,-0.997763335704803,0.0648473501205444,0.209039986133575,-0.973606944084167,0.0916067734360695,-0.0161862075328827,-0.998100161552429,0.0594479367136955,0.0580817237496376,-0.9958256483078,0.070411890745163,-0.0162290409207344,-0.997709453105927,0.0656694248318672,-0.0197145771235228,-0.997601509094238,0.0663514658808708,
  1343. -0.157745897769928,-0.983116924762726,0.0927218422293663,0.0569256581366062,-0.995479881763458,0.0760214924812317,-0.0161859393119812,-0.998102486133575,0.0594091154634953,-0.114087507128716,-0.992796063423157,0.0366062745451927,-0.117064826190472,-0.990821599960327,0.0675897151231766,-0.0162418782711029,-0.997583627700806,0.0675510615110397,-0.160055637359619,-0.984804689884186,0.0673942640423775,0.107286386191845,-0.086946077644825,0.990419149398804,-0.0638156160712242,-0.090396448969841,0.993859171867371,0.160393446683884,-0.0853370055556297,0.983357310295105,0.10646940022707,-0.106354795396328,0.98861163854599,-0.07369165122509,-0.0892614424228668,0.993278384208679,-0.0638255998492241,-0.090279683470726,0.993869125843048,0.155866533517838,-0.0459929257631302,0.986706793308258,-0.0633842945098877,-0.0954321622848511,0.993415951728821,0.00601879041641951,-0.0802296847105026,0.996758282184601,-0.0638996735215187,-0.0894124954938889,0.993942737579346,-0.073566161096096,-0.0881493613123894,0.993387043476105,-0.206870049238205,-0.0697654485702515,0.97587788105011,0.00456416560336947,-0.0750343948602676,0.997170567512512,-0.0633792355656624,-0.0954911634325981,0.993410587310791,-0.15539288520813,-0.122574329376221,0.980218648910522,-0.160663455724716,-0.0928184986114502,0.982635259628296,-0.0640702173113823,-0.0874138325452805,0.994109570980072,-0.207222789525986,-0.0951351374387741,0.973657071590424,0.0984151735901833,0.985396385192871,-0.138954788446426,-0.0705941095948219,0.984779953956604,-0.158823639154434,0.145328417420387,0.980449676513672,-0.132657572627068,0.0949110388755798,0.988253474235535,-0.119778692722321,-0.0744452029466629,0.984391391277313,-0.159473091363907,-0.0706062614917755,0.984811663627625,-0.158621221780777,0.145981177687645,0.974444508552551,-0.170726031064987,-0.0708830803632736,0.985525369644165,-0.15399757027626,0.00185189372859895,0.987040936946869,-0.160457894206047,-0.0705607160925865,0.984692573547363,-0.159379184246063,-0.0742367431521416,0.984272718429565,-0.160299941897392,-0.204519286751747,0.959931433200836,-0.191581428050995,
  1344. 0.00105775892734528,0.986095428466797,-0.166176974773407,-0.0708688274025917,0.985489130020142,-0.154236480593681,-0.17259094119072,0.975583672523499,-0.135826498270035,-0.173728242516518,0.970573961734772,-0.166747391223907,-0.0704202502965927,0.984322309494019,-0.161711931228638,-0.208058536052704,0.963574826717377,-0.168033584952354,0.0810772255063057,0.960313737392426,0.26687827706337,-0.0884902253746986,0.963592648506165,0.252306997776031,0.133934885263443,0.95353764295578,0.269865691661835,0.0780383422970772,0.955121099948883,0.285751461982727,-0.098195880651474,0.963142812252045,0.250426888465881,-0.0884980335831642,0.963515162467957,0.252600014209747,0.133377850055695,0.963844001293182,0.230684027075768,-0.0885929837822914,0.962558269500732,0.256188899278641,-0.0163393542170525,0.968302071094513,0.249247133731842,-0.0884808972477913,0.963684976100922,0.2519571185112,-0.0980014204978943,0.963387668132782,0.249559879302979,-0.232820093631744,0.948971092700958,0.212717115879059,-0.0172965358942747,0.969750881195068,0.243483617901802,-0.0885820016264915,0.962670266628265,0.255771607160568,-0.188153833150864,0.944074213504791,0.270780295133591,-0.189912274479866,0.951626420021057,0.241537839174271,-0.0884060561656952,0.964417695999146,0.249164327979088,-0.235883697867393,0.942392587661743,0.237181648612022,0.242422237992287,-0.805167078971863,-0.541237056255341,0.0696343928575516,-0.832250356674194,-0.550009369850159,0.291901350021362,-0.79248970746994,-0.535493910312653,0.240339368581772,-0.794384062290192,-0.557844996452332,0.0650775656104088,-0.832993745803833,-0.549441874027252,0.0696313604712486,-0.832334756851196,-0.549882113933563,0.289712905883789,-0.814837396144867,-0.502102017402649,0.0697310790419579,-0.829524278640747,-0.554100215435028,0.147016435861588,-0.82925933599472,-0.539180099964142,0.0696153417229652,-0.832779586315155,-0.549210250377655,0.065236434340477,-0.833480596542358,-0.548684120178223,-0.0744651407003403,-0.847053706645966,-0.526265025138855,0.145759180188179,-0.832671105861664,-0.534240901470184,
  1345. 0.0697294771671295,-0.829569935798645,-0.55403208732605,-0.0303399376571178,-0.817772686481476,-0.574741005897522,-0.0337204821407795,-0.835272252559662,-0.548801600933075,0.0695726573467255,-0.83395653963089,-0.547426879405975,-0.0763428658246994,-0.833211660385132,-0.547658860683441
  1346. }
  1347. BinormalsW: *2199 {
  1348. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1349. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1350. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1351. }
  1352. }
  1353. LayerElementBinormal: 1 {
  1354. Version: 102
  1355. Name: "LightMapUV"
  1356. MappingInformationType: "ByPolygonVertex"
  1357. ReferenceInformationType: "Direct"
  1358. Binormals: *6597 {
  1359. a: 0.187663704156876,-0.968806922435761,0.161850109696388,0.18872757256031,-0.968535840511322,0.162235781550407,-0.017101913690567,-0.996206104755402,0.0853284597396851,0.20748108625412,-0.849697291851044,-0.484733104705811,0.191689416766167,-0.854069650173187,-0.48354959487915,0.258385837078094,-0.833912789821625,-0.487674206495285,0.168097570538521,-0.909705698490143,0.379708737134933,0.0453003868460655,-0.936010956764221,0.349043518304825,-0.104996517300606,-0.946900010108948,0.303901851177216,0.208555445075035,-0.851453244686127,-0.481177926063538,0.154776245355606,-0.867861926555634,-0.472080647945404,0.192039653658867,-0.856809079647064,-0.478538393974304,0.111838608980179,-0.898399710655212,-0.424700289964676,0.194327414035797,-0.875301063060761,-0.44281479716301,0.16672158241272,-0.883827865123749,-0.437095373868942,0.172112077474594,-0.890673995018005,-0.420805513858795,0.124033808708191,-0.904398560523987,-0.408263295888901,0.115755587816238,-0.906510829925537,-0.406003415584564,0.167634695768356,-0.985595703125,0.0223564710468054,0.196128904819489,-0.979929864406586,0.0356527753174305,0.10427164286375,-0.994524121284485,-0.00700950622558594,0.126480534672737,-0.927185297012329,-0.352604657411575,0.138503447175026,-0.925737977027893,-0.351889193058014,0.198764532804489,-0.916372776031494,-0.347496449947357,0.130345597863197,-0.957821547985077,-0.256101340055466,0.0920496731996536,-0.960175395011902,-0.263799518346787,0.247372895479202,-0.941265285015106,-0.229839816689491,0.189129754900932,-0.871357321739197,-0.45273220539093,0.301372885704041,-0.850040078163147,-0.431979477405548,0.140973329544067,-0.876833140850067,-0.459663182497025,0.115411557257175,-0.927062273025513,-0.356701135635376,-0.0119995176792145,-0.913511037826538,-0.406636953353882,0.155407264828682,-0.927701830863953,-0.339437633752823,0.0310982652008533,-0.868912220001221,-0.493988484144211,0.13754777610302,-0.884513556957245,-0.445776164531708,0.0794577896595001,-0.877492189407349,-0.472963035106659,0.122602678835392,-0.914518773555756,-0.385517925024033,
  1360. 0.141010761260986,-0.912333190441132,-0.384400963783264,0.0652070343494415,-0.919291973114014,-0.388137102127075,0.0781190618872643,-0.881860315799713,-0.464994430541992,0.16940575838089,-0.887232840061188,-0.429091662168503,0.0257644020020962,-0.874994516372681,-0.483446776866913,0.124702230095863,-0.923919856548309,-0.361692428588867,0.0728321000933647,-0.928272783756256,-0.364698886871338,0.139194414019585,-0.922247409820557,-0.360672354698181,0.0601563900709152,-0.931753396987915,-0.358073770999908,0.139477476477623,-0.920774698257446,-0.364307522773743,0.0727511495351791,-0.930414736270905,-0.359215587377548,0.110692277550697,-0.918945670127869,-0.378531485795975,0.0731151327490807,-0.919890582561493,-0.385299324989319,0.12177935987711,-0.91840922832489,-0.376423269510269,0.108711823821068,-0.913989961147308,-0.390901684761047,0.118387766182423,-0.911797702312469,-0.393203914165497,0.12846265733242,-0.909411430358887,-0.39556086063385,0.0727440342307091,-0.930598556995392,-0.358740568161011,0.10829021781683,-0.925838589668274,-0.362071990966797,0.0600499957799912,-0.932003378868103,-0.35744047164917,0.073110818862915,-0.92003059387207,-0.384965777397156,0.110764041543007,-0.91912305355072,-0.37807959318161,0.10857168585062,-0.919213056564331,-0.378496557474136,0.128460496664047,-0.909408986568451,-0.395566999912262,0.062277227640152,-0.923283457756042,-0.379037469625473,0.10872457921505,-0.914022266864777,-0.390822619199753,0.108647435903549,-0.917224228382111,-0.383269429206848,0.109972767531872,-0.917158722877502,-0.38304814696312,0.0601866655051708,-0.91847813129425,-0.390864968299866,0.0637020543217659,-0.92648321390152,-0.370905727148056,0.130804777145386,-0.911998271942139,-0.388779163360596,0.0419174134731293,-0.930172502994537,-0.364721775054932,0.0416840799152851,-0.929897546768188,-0.365449339151382,-0.0614458806812763,-0.939474880695343,-0.337063014507294,0.0636897087097168,-0.926455736160278,-0.37097629904747,-0.0740121304988861,-0.905755400657654,-0.417288094758987,0.108691915869713,-0.916007220745087,-0.386156558990479,
  1361. 0.0592789836227894,-0.916351437568665,-0.395962417125702,-0.0622514151036739,-0.937565267086029,-0.342193096876144,0.0404759347438812,-0.928463697433472,-0.369211137294769,-0.107225388288498,-0.938196539878845,-0.329074531793594,-0.11551272124052,-0.923187851905823,-0.366580188274384,-0.221889823675156,-0.909298956394196,-0.352051556110382,-0.0668870359659195,-0.925920963287354,-0.37174791097641,-0.13017438352108,-0.912644684314728,-0.387471824884415,0.108560852706432,-0.919489443302155,-0.377827644348145,-0.069293387234211,-0.919425010681152,-0.387112438678741,-0.221796095371246,-0.913495302200317,-0.341076225042343,-0.129934564232826,-0.925834178924561,-0.354891777038574,-0.0654616355895996,-0.929621875286102,-0.362654089927673,-0.221911162137985,-0.887271165847778,-0.404357880353928,-0.0487168505787849,-0.917302310466766,-0.395200252532959,-0.130227223038673,-0.906759858131409,-0.401033133268356,-0.0512180998921394,-0.926218330860138,-0.373492151498795,0.108510941267014,-0.920738339424133,-0.374788403511047,-0.130060061812401,-0.920160710811615,-0.369308233261108,-0.04664646089077,-0.909613192081451,-0.412829220294952,-0.221796572208405,-0.880932748317719,-0.418047666549683,-0.1183100938797,-0.901387095451355,-0.416538178920746,0.0609934888780117,-0.929768681526184,-0.363056480884552,0.108357071876526,-0.924360156059265,-0.365810006856918,0.119193837046623,-0.922821402549744,-0.366324365139008,-0.0535449162125587,-0.934134483337402,-0.352882027626038,0.119256108999252,-0.92259693145752,-0.366869032382965,0.108365885913372,-0.924161553382874,-0.3663090467453,0.196288794279099,-0.851073265075684,-0.486975431442261,0.0915251597762108,-0.833561182022095,-0.544792652130127,0.135742977261543,-0.842413783073425,-0.521452724933624,-0.109204486012459,-0.883009195327759,-0.456474661827087,0.0947739481925964,-0.907968282699585,-0.408180773258209,-0.0430275797843933,-0.895523846149445,-0.442928642034531,0.123022235929966,-0.90810215473175,-0.400270074605942,-0.0459358654916286,-0.906911134719849,-0.418810397386551,0.0936332568526268,-0.909793972969055,-0.40436115860939,
  1362. 0.132467940449715,-0.862298786640167,-0.488766878843308,0.120526269078255,-0.861108183860779,-0.493929445743561,0.185849234461784,-0.86583149433136,-0.46453857421875,0.105442777276039,-0.889890909194946,-0.443819791078568,-0.0985336974263191,-0.859838008880615,-0.500968813896179,0.140144348144531,-0.890962362289429,-0.431909412145615,0.137269884347916,-0.895386159420013,-0.423604190349579,0.163420364260674,-0.894486546516418,-0.416158139705658,0.102214522659779,-0.895554423332214,-0.433052450418472,0.187417730689049,-0.654145956039429,0.732780814170837,0.181443780660629,-0.656669795513153,0.732026636600494,-0.0150396972894669,-0.722796976566315,0.690896809101105,0.202257633209229,-0.966951251029968,0.15523274242878,0.186123549938202,-0.969583332538605,0.15895339846611,0.258660972118378,-0.955507695674896,0.141773030161858,0.16090914607048,-0.474129021167755,0.865626931190491,0.0439529679715633,-0.511658668518066,0.858063817024231,-0.102491639554501,-0.547521770000458,0.830491065979004,0.203474462032318,-0.965991973876953,0.159554973244667,0.149606868624687,-0.972795605659485,0.176879823207855,0.186474621295929,-0.968487918376923,0.165101602673531,0.112658262252808,-0.966396629810333,0.231053754687309,0.188573583960533,-0.960465431213379,0.204807683825493,0.161540940403938,-0.963305056095123,0.21435509622097,0.166962638497353,-0.958390116691589,0.231542095541954,0.126477301120758,-0.960728347301483,0.246991321444511,0.116585493087769,-0.961023688316345,0.25068187713623,0.166592359542847,-0.754967272281647,0.634248733520508,0.188934683799744,-0.74507212638855,0.639664947986603,0.104979336261749,-0.77960330247879,0.617412388324738,0.127409651875496,-0.943612694740295,0.305551737546921,0.140926063060761,-0.941818356513977,0.30515244603157,0.192476570606232,-0.933319568634033,0.303096562623978,0.132285326719284,-0.906825363636017,0.400210678577423,0.0966890379786491,-0.913124740123749,0.396048575639725,0.246523022651672,-0.87811291217804,0.410053819417953,0.189387425780296,-0.962837219238281,0.192553848028183,0.300791651010513,-0.9334636926651,0.19537165760994,
  1363. 0.145843923091888,-0.970736503601074,0.190788447856903,0.119908258318901,-0.945132970809937,0.303884416818619,-0.0172411948442459,-0.967360019683838,0.252818793058395,0.156249612569809,-0.935652256011963,0.316450476646423,0.0261227078735828,-0.987315833568573,0.156604796648026,0.142031207680702,-0.967725992202759,0.20816770195961,0.0788774490356445,-0.980431079864502,0.180370181798935,0.127525612711906,-0.953848659992218,0.271863788366318,0.143585562705994,-0.951692342758179,0.27141273021698,0.0648875311017036,-0.959841191768646,0.272937089204788,0.0775581672787666,-0.978835821151733,0.189380899071693,0.166962549090385,-0.961080133914948,0.220110431313515,0.0205886140465736,-0.985397279262543,0.169021815061569,0.125626310706139,-0.94675624370575,0.296430021524429,0.0698283761739731,-0.952375411987305,0.296824961900711,0.141656368970871,-0.944580912590027,0.29614269733429,0.0599391870200634,-0.950724303722382,0.304188579320908,0.141985580325127,-0.94581401348114,0.292020469903946,0.0697417333722115,-0.950483620166779,0.302848279476166,0.110343337059021,-0.953580498695374,0.280194222927094,0.0701158121228218,-0.958838820457459,0.275158196687698,0.122723750770092,-0.951635301113129,0.281654179096222,0.108361750841141,-0.957436084747314,0.267533183097839,0.119228675961494,-0.957132339477539,0.263973951339722,0.130898669362068,-0.956665992736816,0.260107427835464,0.0697340667247772,-0.950317203998566,0.303371846675873,0.110103286802769,-0.948494553565979,0.297044575214386,0.059834249317646,-0.950521171092987,0.30484339594841,0.0701116099953651,-0.958741962909698,0.275496572256088,0.110415309667587,-0.953436434268951,0.280655592679977,0.110392570495605,-0.953439891338348,0.280652850866318,0.130891740322113,-0.956672489643097,0.260086864233017,0.0648899599909782,-0.95731645822525,0.281664192676544,0.108374238014221,-0.957412362098694,0.267612814903259,0.110474772751331,-0.954899787902832,0.275611639022827,0.109614148736,-0.955023527145386,0.275526434183121,0.0629972666501999,-0.960625886917114,0.270609349012375,0.0663152560591698,-0.954727053642273,0.289997816085815,
  1364. 0.133219227194786,-0.954443633556366,0.267002165317535,0.0436572693288326,-0.953744232654572,0.29743230342865,0.0434365682303905,-0.953967809677124,0.296746820211411,-0.0591912679374218,-0.943925857543945,0.324808448553085,0.0663170963525772,-0.954723536968231,0.29000860452652,-0.0715637728571892,-0.967581927776337,0.242206141352654,0.110520906746387,-0.955732107162476,0.272692501544952,0.0621119476854801,-0.96212375164032,0.265442997217178,-0.0599907711148262,-0.945640802383423,0.319632202386856,0.042210541665554,-0.955199599266052,0.292937099933624,-0.103058904409409,-0.938390374183655,0.329852044582367,-0.111419662833214,-0.949906289577484,0.291999727487564,-0.221421673893929,-0.929552912712097,0.294794738292694,-0.0645462721586227,-0.954931974411011,0.289722055196762,-0.129727348685265,-0.954269528388977,0.26933354139328,0.110384598374367,-0.953299880027771,0.281130850315094,-0.066900797188282,-0.959406077861786,0.273978590965271,-0.221357896924019,-0.925940036773682,0.305999636650085,-0.129511564970016,-0.94416868686676,0.302939474582672,-0.0631265118718147,-0.952125012874603,0.299120664596558,-0.221299186348915,-0.945132613182068,0.240314677357674,-0.0469920709729195,-0.962724685668945,0.266370117664337,-0.129770457744598,-0.958174347877502,0.255071431398392,-0.0495410971343517,-0.956149458885193,0.288658648729324,0.110333994030952,-0.952415645122528,0.284131944179535,-0.129626527428627,-0.948772728443146,0.288144707679749,-0.0448612347245216,-0.967772483825684,0.247798055410385,-0.221146956086159,-0.948766529560089,0.225690588355064,-0.11913238465786,-0.963566064834595,0.239474326372147,0.0607576034963131,-0.952294707298279,0.299070656299591,0.110172644257545,-0.949656128883362,0.293283730745316,0.125504359602928,-0.948353171348572,0.291333049535751,-0.0519251264631748,-0.949455678462982,0.309576988220215,0.125569507479668,-0.94852888584137,0.290732532739639,0.110182277858257,-0.949818551540375,0.292753607034683,0.194266721606255,-0.969093978404999,0.152043730020523,0.0907133668661118,-0.991177618503571,0.0966336205601692,
  1365. 0.141367062926292,-0.982182800769806,0.123823799192905,-0.109760269522667,-0.974287450313568,0.196765974164009,0.0908965095877647,-0.964152634143829,0.249294012784958,-0.0411783345043659,-0.975563883781433,0.215822830796242,0.129142001271248,-0.95777702331543,0.256876796483994,-0.0441317036747932,-0.969408810138702,0.24145182967186,0.089600071310997,-0.963040053844452,0.254019051790237,0.138230577111244,-0.97721928358078,0.161043122410774,0.116614788770676,-0.981413602828979,0.152408719062805,0.183626785874367,-0.966564357280731,0.178981959819794,0.101537272334099,-0.97242546081543,0.20994958281517,-0.098810225725174,-0.984096467494965,0.147616758942604,0.140269175171852,-0.965116024017334,0.221078753471375,0.137367188930511,-0.963372826576233,0.230310827493668,0.160796120762825,-0.958599328994751,0.235014677047729,0.0982555598020554,-0.970039427280426,0.222192078828812,0.225492492318153,-0.909385323524475,0.349530339241028,0.222102880477905,-0.910621821880341,0.348479956388474,0.0232543777674437,-0.959650874137878,0.280231058597565,0.241527542471886,-0.920251607894897,-0.307898461818695,0.225603044033051,-0.924972534179688,-0.305825293064117,0.294790416955948,-0.902407467365265,-0.314260125160217,0.197792395949364,-0.81094890832901,0.550672352313995,0.0771584659814835,-0.847123384475708,0.52576470375061,-0.0668260082602501,-0.87183552980423,0.485218614339828,0.242702677845955,-0.921297311782837,-0.303820073604584,0.190866306424141,-0.937195301055908,-0.291950434446335,0.226035296916962,-0.926744699478149,-0.300087183713913,0.155459821224213,-0.957914113998413,-0.241314768791199,0.228723615407944,-0.937766849994659,-0.26130211353302,0.203388527035713,-0.945435285568237,-0.254529744386673,0.209031879901886,-0.9487065076828,-0.237195670604706,0.160965383052826,-0.961658239364624,-0.222044348716736,0.159501910209656,-0.962010085582733,-0.221575781702995,0.203427851200104,-0.955294370651245,0.214545994997025,0.230816766619682,-0.946348786354065,0.226158604025841,0.143577769398689,-0.971473097801209,0.188747137784958,0.170931950211525,-0.971650660037994,-0.16333182156086,
  1366. 0.179926544427872,-0.970079243183136,-0.163011878728867,0.233872950077057,-0.958879113197327,-0.160792678594589,0.171671122312546,-0.983170747756958,-0.0624850355088711,0.138895630836487,-0.987928748130798,-0.0685914531350136,0.282882779836655,-0.958280146121979,-0.0409455671906471,0.224476665258408,-0.93547648191452,-0.272935897111893,0.334776163101196,-0.90657514333725,-0.256995379924774,0.186394438147545,-0.942464470863342,-0.277521044015884,0.16145920753479,-0.9730584025383,-0.164585381746292,0.0269838534295559,-0.97530871629715,-0.219191640615463,0.192135244607925,-0.96961373090744,-0.151437401771545,0.0692043229937553,-0.947073101997375,-0.31346982717514,0.182591155171394,-0.948256254196167,-0.259750813245773,0.115132138133049,-0.949349939823151,-0.292368412017822,0.169014573097229,-0.965528190135956,-0.197962999343872,0.182353883981705,-0.963200569152832,-0.197463363409042,0.102147661149502,-0.97447544336319,-0.199908941984177,0.113913550972939,-0.952190279960632,-0.283473998308182,0.209710866212845,-0.94647604227066,-0.245366081595421,0.0640043318271637,-0.951170444488525,-0.30195739865303,0.169119954109192,-0.970325708389282,-0.172819405794144,0.105170078575611,-0.978863477706909,-0.175401508808136,0.180599763989449,-0.968351662158966,-0.172276005148888,0.0974758267402649,-0.98099422454834,-0.167776510119438,0.180902808904648,-0.967531263828278,-0.176515027880669,0.105131946504116,-0.980057537555695,-0.168625667691231,0.147552773356438,-0.970465064048767,-0.190855443477631,0.105261698365211,-0.974514007568359,-0.198097482323647,0.166274130344391,-0.96808522939682,-0.187520638108253,0.145575985312462,-0.968265175819397,-0.203150749206543,0.162267744541168,-0.964613795280457,-0.207820653915405,0.165416464209557,-0.963889837265015,-0.208695888519287,0.105128422379494,-0.980157971382141,-0.168042555451393,0.146012410521507,-0.974051892757416,-0.172926291823387,0.0973745584487915,-0.981122136116028,-0.167086035013199,0.105260744690895,-0.974581897258759,-0.197763174772263,0.147627994418144,-0.970546185970306,-0.19038400053978,
  1367. 0.146237328648567,-0.970707893371582,-0.19063264131546,0.165415242314339,-0.963889122009277,-0.208699584007263,0.0963988751173019,-0.977278769016266,-0.188768446445465,0.145590275526047,-0.96828156709671,-0.203062623739243,0.146293327212334,-0.969686508178711,-0.195720583200455,0.146786212921143,-0.969627320766449,-0.195644527673721,0.0938121378421783,-0.974569201469421,-0.203504741191864,0.0979161262512207,-0.978772878646851,-0.1800447255373,0.167811244726181,-0.965015828609467,-0.201454415917397,0.0793876945972443,-0.981499552726746,-0.174230918288231,0.079132579267025,-0.981373488903046,-0.175055220723152,-0.0219915919005871,-0.989063858985901,-0.145838975906372,0.0978748500347137,-0.97873318195343,-0.1802828758955,-0.0348461456596851,-0.972309350967407,-0.231084957718849,0.146325677633286,-0.969047427177429,-0.198836743831635,0.0928111150860786,-0.973466694355011,-0.209161996841431,-0.0228092558681965,-0.988230586051941,-0.151261374354362,0.0778925120830536,-0.980750322341919,-0.179057478904724,-0.0633926168084145,-0.988180994987488,-0.139570027589798,-0.0719473138451576,-0.981317639350891,-0.178435564041138,-0.184872642159462,-0.968588471412659,-0.166308745741844,-0.0275266151875257,-0.982812166213989,-0.18254491686821,-0.0915205627679825,-0.975399374961853,-0.200549528002739,0.146228119730949,-0.970866799354553,-0.189828872680664,-0.029985761269927,-0.97957056760788,-0.198852941393852,-0.184765413403511,-0.970534086227417,-0.154678195714951,-0.0909926071763039,-0.981921792030334,-0.165982067584991,-0.0260692294687033,-0.98459780216217,-0.17288014292717,-0.185028195381165,-0.957285165786743,-0.222192853689194,-0.0113010508939624,-0.978190422058105,-0.2074024528265,-0.0917091444134712,-0.972288906574249,-0.215043500065804,-0.0136633552610874,-0.982805669307709,-0.184136658906937,0.146189451217651,-0.971510708332062,-0.186535835266113,-0.0912395268678665,-0.979192733764648,-0.181264892220497,-0.00938529334962368,-0.974050104618073,-0.226137802004814,-0.184969037771225,-0.953787386417389,-0.236804038286209,-0.0763405039906502,-0.96994411945343,-0.231042712926865,
  1368. 0.0982513949275017,-0.979996204376221,-0.173072919249535,0.14606699347496,-0.973329365253448,-0.176902756094933,0.162551179528236,-0.970487475395203,-0.178132712841034,-0.0158712491393089,-0.986625790596008,-0.162227168679237,0.162611082196236,-0.970366299152374,-0.178737074136734,0.146074071526527,-0.973231613636017,-0.177433177828789,0.235754534602165,-0.921468019485474,-0.308733731508255,0.125711247324944,-0.919760465621948,-0.371803134679794,0.176782667636871,-0.922393083572388,-0.343422383069992,-0.0675925463438034,-0.959559857845306,-0.273269236087799,0.13476574420929,-0.965826272964478,-0.221399575471878,-0.00602864474058151,-0.965944111347198,-0.258680582046509,0.165956869721413,-0.962758481502533,-0.213434740900993,-0.00872510857880116,-0.972541272640228,-0.23256678879261,0.133725866675377,-0.96685403585434,-0.217510595917702,0.174105063080788,-0.935340404510498,-0.307937860488892,0.159269824624062,-0.935787856578827,-0.314537942409515,0.225727409124374,-0.93182373046875,-0.284168601036072,0.144971191883087,-0.954709947109222,-0.259831309318542,-0.0573496744036675,-0.945256531238556,-0.321249514818192,0.179871812462807,-0.95195871591568,-0.247832030057907,0.17711341381073,-0.954744458198547,-0.238943323493004,0.203969150781631,-0.951192617416382,-0.231579601764679,0.14191098511219,-0.958243370056152,-0.248255714774132,0.192780792713165,-0.98121839761734,-0.00678323488682508,0.183111011981964,-0.983034491539001,-0.010663440451026,-0.0161105319857597,-0.995939016342163,-0.088578075170517,0.205281361937523,-0.753236889839172,-0.624894976615906,0.186036482453346,-0.758668541908264,-0.624349653720856,0.265207856893539,-0.734210073947906,-0.624980330467224,0.163044810295105,-0.962997436523438,0.214598476886749,0.0411624051630497,-0.982807755470276,0.179984927177429,-0.102936215698719,-0.98541259765625,0.135521680116653,0.206403642892838,-0.755703032016754,-0.621538758277893,0.147998616099358,-0.774728655815125,-0.614729166030884,0.186406001448631,-0.762572109699249,-0.619464755058289,0.114289790391922,-0.810329914093018,-0.574720144271851,
  1369. 0.188620895147324,-0.787117123603821,-0.587255358695984,0.159999221563339,-0.796680092811584,-0.582838833332062,0.165460512042046,-0.80638986825943,-0.567766010761261,0.126900792121887,-0.81890207529068,-0.55972820520401,0.118269398808479,-0.821502387523651,-0.557804763317108,0.16372075676918,-0.974875926971436,-0.151037782430649,0.19029988348484,-0.971986293792725,-0.137944459915161,0.102778375148773,-0.978228151798248,-0.180295035243034,0.12938791513443,-0.851560354232788,-0.508039057254791,0.137067824602127,-0.850724160671234,-0.507425785064697,0.192815810441971,-0.843081295490265,-0.502032041549683,0.128871023654938,-0.898872435092926,-0.41883260011673,0.0961173474788666,-0.899751782417297,-0.425685524940491,0.243525937199593,-0.88766485452652,-0.390827625989914,0.186200022697449,-0.779803395271301,-0.597692430019379,0.298025757074356,-0.762783646583557,-0.57388299703598,0.144511863589287,-0.783439695835114,-0.60443240404129,0.119047529995441,-0.851415634155273,-0.510802388191223,-0.0160612016916275,-0.8280388712883,-0.560440719127655,0.152957022190094,-0.854472517967224,-0.496468514204025,0.0269849002361298,-0.768818378448486,-0.638897657394409,0.140852719545364,-0.794247329235077,-0.591043055057526,0.074258841574192,-0.780851244926453,-0.620287954807281,0.126454532146454,-0.833314299583435,-0.538141787052155,0.13959464430809,-0.83190256357193,-0.537076830863953,0.0599084421992302,-0.838196992874146,-0.542067170143127,0.0728728920221329,-0.786850869655609,-0.612825691699982,0.170600950717926,-0.799363553524017,-0.576119124889374,0.0215143393725157,-0.77686083316803,-0.629304647445679,0.127578988671303,-0.846791565418243,-0.516398727893829,0.0714877247810364,-0.850901484489441,-0.520438551902771,0.137766063213348,-0.845751643180847,-0.515484869480133,0.0548576228320599,-0.855998396873474,-0.514059782028198,0.138037592172623,-0.843772888183594,-0.518645346164703,0.0714168101549149,-0.854052484035492,-0.515261232852936,0.109362900257111,-0.839265763759613,-0.532609403133392,0.0717272013425827,-0.838976442813873,-0.539419949054718,
  1370. 0.124673634767532,-0.839031159877777,-0.529606640338898,0.107406675815582,-0.832568764686584,-0.543408811092377,0.120973438024521,-0.828972935676575,-0.546048998832703,0.131347894668579,-0.826104283332825,-0.547995865345001,0.0714105442166328,-0.85432356595993,-0.514812409877777,0.104360207915306,-0.849518954753876,-0.517132997512817,0.054743230342865,-0.856387972831726,-0.513422787189484,0.0717236548662186,-0.839170396327972,-0.539118468761444,0.109436839818954,-0.83951735496521,-0.532197713851929,0.104709543287754,-0.839541494846344,-0.533109724521637,0.131341695785522,-0.826094329357147,-0.548012375831604,0.0657684430480003,-0.842674553394318,-0.534391283988953,0.107420861721039,-0.832617580890656,-0.543331146240234,0.104797467589378,-0.836797952651978,-0.537388920783997,0.108619928359985,-0.836731314659119,-0.536733269691467,0.0639248266816139,-0.836724698543549,-0.543880045413971,0.0671940892934799,-0.84721964597702,-0.526976227760315,0.133668065071106,-0.829810619354248,-0.541800081729889,0.0377187803387642,-0.853578209877014,-0.519597470760345,0.0374414548277855,-0.853111088275909,-0.520384132862091,-0.0613846331834793,-0.866678774356842,-0.495075583457947,0.0672005265951157,-0.847240030765533,-0.526942610740662,-0.0732457712292671,-0.819652438163757,-0.568159282207489,0.104853227734566,-0.834999978542328,-0.540167450904846,0.063041165471077,-0.833844125270844,-0.548388361930847,-0.0621491000056267,-0.86390095949173,-0.499812573194504,0.0362038798630238,-0.851017713546753,-0.523887515068054,-0.10038647800684,-0.866490066051483,-0.488996654748917,-0.108483470976353,-0.845896303653717,-0.522198021411896,-0.222496151924133,-0.834262669086456,-0.504481136798859,-0.0665339380502701,-0.847310543060303,-0.52691376209259,-0.124456256628037,-0.832267820835114,-0.540223062038422,0.104689106345177,-0.840164184570313,-0.532131969928741,-0.0688013955950737,-0.838280558586121,-0.540880799293518,-0.222443133592606,-0.840301871299744,-0.494380265474319,-0.124256134033203,-0.850506246089935,-0.511076807975769,-0.0651849061250687,-0.852535545825958,-0.518588602542877,
  1371. -0.222317934036255,-0.803460001945496,-0.552292227745056,-0.0512584857642651,-0.834461033344269,-0.548677921295166,-0.124496422708035,-0.824323654174805,-0.552260220050812,-0.0538513287901878,-0.847198843955994,-0.528539657592773,0.104625776410103,-0.842061221599579,-0.529137313365936,-0.124362260103226,-0.842607140541077,-0.523972511291504,-0.0491532608866692,-0.823876023292542,-0.564634680747986,-0.222150415182114,-0.794871985912323,-0.564648270606995,-0.119057968258858,-0.815249562263489,-0.56673926115036,0.0556925870478153,-0.853136777877808,-0.518706083297729,0.104439899325371,-0.847359240055084,-0.520648300647736,0.123906388878822,-0.844469666481018,-0.521074056625366,-0.0562499724328518,-0.858679473400116,-0.509416937828064,0.123974166810513,-0.844136476516724,-0.521597564220428,0.104450024664402,-0.847080171108246,-0.521100163459778,0.197535485029221,-0.753833889961243,-0.626669108867645,0.0862083733081818,-0.724627137184143,-0.683727741241455,0.14070625603199,-0.740376353263855,-0.657301127910614,-0.109727755188942,-0.790186643600464,-0.60296356678009,0.09520123898983,-0.823316633701324,-0.559541285037994,-0.0454094223678112,-0.804533541202545,-0.592168629169464,0.127763882279396,-0.824563026428223,-0.551155388355255,-0.0484220869839191,-0.820150017738342,-0.570095837116241,0.0940809473395348,-0.825732290744781,-0.556160807609558,0.137376338243485,-0.76511561870575,-0.629067480564117,0.12095695734024,-0.7623091340065,-0.635809779167175,0.187116175889969,-0.772140681743622,-0.607277750968933,0.10586092621088,-0.799362540245056,-0.591449916362762,-0.0988388955593109,-0.759714663028717,-0.642700970172882,0.144186615943909,-0.802735865116119,-0.578640997409821,0.141368761658669,-0.808342099189758,-0.571487545967102,0.164654046297073,-0.808650135993958,-0.564777851104736,0.102639630436897,-0.806788504123688,-0.581856846809387,-0.0573122277855873,-0.696860611438751,0.714913070201874,-0.227262631058693,-0.681330800056458,0.695801734924316,-0.136201977729797,-0.692238569259644,0.708699464797974,0.00850005354732275,-0.698655366897583,0.715407907962799,
  1372. -0.0557499267160892,-0.707979500293732,0.704029202461243,-0.131595373153687,-0.715047121047974,0.686578750610352,-0.229118168354034,-0.718992352485657,0.656166851520538,-0.0556606501340866,-0.708606600761414,0.703404903411865,-0.163573324680328,-0.717781543731689,0.67678165435791,-0.199964419007301,-0.641904950141907,0.740251481533051,-0.224123418331146,-0.63324511051178,0.740789771080017,-0.158079966902733,-0.655817449092865,0.738183081150055,-0.0556604713201523,-0.708607912063599,0.70340371131897,0.00859881937503815,-0.698933959007263,0.715134620666504,0.020520331338048,-0.696803390979767,0.716968655586243,0.0509681403636932,-0.689727365970612,0.722273111343384,0.0204806476831436,-0.696593046188354,0.717174172401428,0.00864661391824484,-0.6990687251091,0.715002238750458,-0.159317016601563,-0.669063568115234,0.725928485393524,-0.0807657092809677,-0.685894310474396,0.723205327987671,-0.205231532454491,-0.657092094421387,0.725334405899048,-0.0129722487181425,-0.696952819824219,0.716999650001526,-0.200560361146927,-0.643624782562256,0.738595068454742,-0.0799578726291656,-0.681019604206085,0.72788679599762,-0.160857826471329,-0.686075210571289,0.709524929523468,-0.0574406161904335,-0.695934772491455,0.715804040431976,0.0111340079456568,-0.698314964771271,0.715704083442688,-0.0826357528567314,-0.697142660617828,0.712154090404511,-0.161529198288918,-0.69368988275528,0.701927840709686,0.011133392341435,-0.695529520511627,0.718411266803741,-0.0575327351689339,-0.695269405841827,0.716443002223969,0.0210197102278471,-0.699446082115173,0.714376211166382,0.0111341625452042,-0.699158549308777,0.714879989624023,-0.0120833218097687,-0.694975912570953,0.718931555747986,-0.0788219720125198,-0.674149930477142,0.734376609325409,0.0232265517115593,-0.704547345638275,0.709276795387268,0.0256727561354637,-0.694835364818573,0.718710541725159,-0.0828852877020836,-0.698639810085297,0.710656344890594,0.0111334659159184,-0.695824384689331,0.718125760555267,0.0801706910133362,-0.721658527851105,0.687591195106506,-0.010897652246058,-0.692330241203308,0.721498548984528,
  1373. 0.0233169794082642,-0.704191029071808,0.709627628326416,0.0111341467127204,-0.699069142341614,0.714967489242554,0.0210082847625017,-0.699385702610016,0.714435696601868,0.0214884486049414,-0.699399352073669,0.714408040046692,0.0212380047887564,-0.700598657131195,0.713239431381226,0.0525843948125839,-0.69307953119278,0.718940675258636,0.021628612652421,-0.700509667396545,0.713315188884735,0.0341367721557617,-0.697071015834808,0.716188967227936,0.0249845646321774,-0.697582840919495,0.716068387031555,0.0111339949071407,-0.698245704174042,0.715771615505219,0.0872140526771545,-0.704672813415527,0.704151928424835,0.0252488777041435,-0.696529030799866,0.717084288597107,0.0340759865939617,-0.697861552238464,0.715421676635742,0.0100364908576012,-0.702818691730499,0.711298227310181,0.0215444657951593,-0.699843168258667,0.713971555233002,0.0518278777599335,-0.6915123462677,0.720503032207489,0.0479554384946823,-0.683440208435059,0.728429734706879,0.0580156967043877,-0.679413259029388,0.731458723545074,0.00860139634460211,-0.6983402967453,0.715714275836945,-0.0111332964152098,-0.695153892040253,0.718774735927582,0.011133685708046,-0.696762144565582,0.717215836048126,0.0212335363030434,-0.697376728057861,0.716390252113342,0.0213693808764219,-0.698455095291138,0.71533477306366,0.00839214771986008,-0.697684943675995,0.716355562210083,-0.011133580468595,-0.696302890777588,0.717661738395691,-0.0111300628632307,-0.686027765274048,0.727490186691284,0.0354414433240891,-0.679764151573181,0.732573926448822,0.0111287254840136,-0.68322491645813,0.730123221874237,0.0600630864500999,-0.683515608310699,0.727460563182831,0.108214683830738,-0.668165326118469,0.736101031303406,0.00846841931343079,-0.697923839092255,0.716121912002563,0.00865934044122696,-0.698521614074707,0.715536594390869,0.111214004456997,-0.699272453784943,0.706151247024536,-0.0111338505521417,-0.697524785995483,0.716474175453186,0.156143173575401,-0.65340656042099,0.740728855133057,0.108361050486565,-0.669664204120636,0.73471611738205,0.0603887364268303,-0.684166133403778,0.726821780204773,
  1374. 0.163324058055878,-0.726836025714874,0.667109251022339,0.113933332264423,-0.728292882442474,0.675728261470795,0.15630678832531,-0.727155566215515,0.668440759181976,0.0412957742810249,-0.698990762233734,0.713937342166901,0.0863200798630714,-0.706859827041626,0.702066957950592,0.034096896648407,-0.697589755058289,0.715685665607452,0.0480831861495972,-0.668313026428223,0.742324590682983,0.0361319072544575,-0.670335590839386,0.741177916526794,-0.0111254099756479,-0.677352666854858,0.73557436466217,0.0899122059345245,-0.69801664352417,0.710414409637451,0.0428478084504604,-0.692115485668182,0.720513820648193,0.081881083548069,-0.697124063968658,0.712259411811829,0.109661012887955,-0.683059692382813,0.72208309173584,0.108586348593235,-0.683159351348877,0.722151219844818,-0.0111313965171576,-0.689233124256134,0.724454164505005,0.111348241567612,-0.660236477851868,0.742757976055145,0.0478820167481899,-0.669245183467865,0.741497278213501,-0.0111239813268185,-0.67513906955719,0.737606644630432,0.111915454268456,-0.70667690038681,0.698629200458527,0.16743728518486,-0.703931748867035,0.690249860286713,0.105531096458435,-0.706848800182343,0.699448347091675,0.107755444943905,-0.689767420291901,0.71596771478653,0.0843948870897293,-0.688529074192047,0.720281362533569,0.0443223565816879,-0.685507357120514,0.726715385913849,0.0816895440220833,-0.697773337364197,0.711645483970642,0.106526263058186,-0.699313402175903,0.706833124160767,0.167908251285553,-0.701193630695343,0.692917227745056,-0.0526824295520782,-0.978894352912903,-0.197460189461708,-0.225151151418686,-0.954639077186584,-0.194862425327301,-0.133343249559402,-0.971293747425079,-0.19699764251709,0.0101442011073232,-0.980083405971527,-0.198327541351318,-0.0512274317443371,-0.975981771945953,-0.211743488907814,-0.128940016031265,-0.965183973312378,-0.227584153413773,-0.227049738168716,-0.941900014877319,-0.247533410787582,-0.0511441305279732,-0.975809335708618,-0.212556675076485,-0.160610765218735,-0.958603858947754,-0.235122859477997,-0.191887512803078,-0.971370041370392,-0.140069410204887,
  1375. -0.221986249089241,-0.966253459453583,-0.130677223205566,-0.155101999640465,-0.976247727870941,-0.15127420425415,-0.0511404909193516,-0.975801825523376,-0.212592154741287,0.0102442279458046,-0.9800044298172,-0.198711663484573,0.0263025742024183,-0.9804607629776,-0.194948479533196,0.0568630695343018,-0.980936765670776,-0.185821577906609,0.0262329839169979,-0.980565011501312,-0.194432705640793,0.0102770142257214,-0.979978621006012,-0.198837578296661,-0.15633724629879,-0.973183512687683,-0.168737903237343,-0.0792577490210533,-0.979720771312714,-0.184025391936302,-0.196894019842148,-0.967249810695648,-0.160189151763916,-0.0145345479249954,-0.980507850646973,-0.195941716432571,-0.192486703395844,-0.970903337001801,-0.142462566494942,-0.0784520357847214,-0.980982661247253,-0.177534028887749,-0.157878190279007,-0.968712449073792,-0.191495880484581,-0.0527931824326515,-0.979108273983002,-0.196366563439369,0.00771761639043689,-0.980137288570404,-0.198169991374016,-0.0811250358819962,-0.976605892181396,-0.199147835373878,-0.158548772335052,-0.966512799263,-0.201780423521996,0.00772314518690109,-0.980839431285858,-0.194664731621742,-0.0528708547353745,-0.979257702827454,-0.195599153637886,0.0270141400396824,-0.97937798500061,-0.200222447514534,0.00771593675017357,-0.979923963546753,-0.199222236871719,-0.0136096142232418,-0.981073081493378,-0.193159013986588,-0.0773213729262352,-0.982671499252319,-0.168458417057991,0.025963518768549,-0.977776706218719,-0.20803514122963,0.0287168957293034,-0.980689823627472,-0.193450301885605,-0.08137396723032,-0.976170122623444,-0.201172322034836,0.00772245274856687,-0.980751514434814,-0.195107206702232,0.0805208534002304,-0.969057202339172,-0.23333352804184,-0.0123697407543659,-0.981816947460175,-0.189426675438881,0.0260043852031231,-0.977821588516235,-0.207819283008575,0.00771615514531732,-0.979951679706573,-0.199086278676987,0.0270063169300556,-0.979390144348145,-0.200164467096329,0.0252397879958153,-0.979456722736359,-0.200068771839142,0.0269627626985312,-0.979457199573517,-0.199841648340225,
  1376. 0.0584550090134144,-0.979974985122681,-0.190347075462341,0.0252636689692736,-0.979399144649506,-0.200347542762756,0.0292631480842829,-0.97992604970932,-0.197201818227768,0.0279972143471241,-0.979949355125427,-0.197270095348358,0.00771737704053521,-0.980106890201569,-0.198320329189301,0.0876017659902573,-0.973780512809753,-0.209946513175964,0.0281119234859943,-0.980068385601044,-0.196661651134491,0.0292781852185726,-0.97998058795929,-0.196928963065147,0.00694699119776487,-0.978628158569336,-0.205520287156105,0.0251708701252937,-0.979622542858124,-0.199264243245125,0.0576073378324509,-0.980490148067474,-0.187937423586845,0.0534480288624763,-0.982918202877045,-0.176111474633217,0.0563243851065636,-0.983014166355133,-0.174673080444336,0.00559215294197202,-0.979833960533142,-0.199735626578331,-0.00772376311942935,-0.980917930603027,-0.194268956780434,0.00772137707099319,-0.980614900588989,-0.195792675018311,0.0250148251652718,-0.979995250701904,-0.197442933917046,0.0251408312469721,-0.979694604873657,-0.198913648724556,0.00496305199339986,-0.980381488800049,-0.197047367691994,-0.0077213142067194,-0.980606913566589,-0.195832788944244,-0.00774379447102547,-0.983461916446686,-0.180949687957764,0.0305105186998844,-0.984207928180695,-0.174367398023605,0.00774757983162999,-0.983942627906799,-0.178316757082939,0.0583258979022503,-0.981924653053284,-0.180061504244804,0.107569575309753,-0.980894684791565,-0.162093624472618,0.00536630675196648,-0.980031371116638,-0.198770672082901,0.00525523768737912,-0.980128169059753,-0.198296099901199,0.110463611781597,-0.972674608230591,-0.204210817813873,-0.00771881826221943,-0.980289876461029,-0.197413742542267,0.160845354199409,-0.976232349872589,-0.145255759358406,0.107711121439934,-0.980546474456787,-0.164094761013985,0.0586456209421158,-0.981747388839722,-0.1809221804142,0.162761554121971,-0.954848945140839,-0.248540312051773,0.113097816705704,-0.962888658046722,-0.245059981942177,0.160783916711807,-0.955216884613037,-0.248413264751434,0.0401776544749737,-0.979084014892578,-0.199449941515923,
  1377. 0.086700864136219,-0.973211109638214,-0.212939262390137,0.0293163191527128,-0.980118274688721,-0.196236431598663,0.0468626022338867,-0.986192047595978,-0.15883694589138,0.0311838667839766,-0.986318647861481,-0.161873713135719,-0.00776020297780633,-0.985545814037323,-0.169231548905373,0.0903001204133034,-0.975430250167847,-0.200952440500259,0.0417156293988228,-0.980863630771637,-0.190174654126167,0.079717144370079,-0.976824522018433,-0.198643431067467,0.108958333730698,-0.977246761322021,-0.181980669498444,0.111074738204479,-0.97702568769455,-0.181888252496719,-0.00773670477792621,-0.982561528682709,-0.185776636004448,0.113882534205914,-0.981911301612854,-0.151264622807503,0.0466712564229965,-0.986011445522308,-0.160010308027267,-0.00776382023468614,-0.986005127429962,-0.166534766554832,0.111142702400684,-0.970381915569305,-0.214490652084351,0.166936337947845,-0.961848080158234,-0.216749936342239,0.107962727546692,-0.970773756504059,-0.214341804385185,0.110187992453575,-0.975329577922821,-0.191287413239479,0.0821731984615326,-0.978872418403625,-0.18723376095295,0.0431720428168774,-0.982469797134399,-0.18135379254818,0.0794961154460907,-0.976633846759796,-0.199666276574135,0.108941301703453,-0.97282862663269,-0.204294830560684,0.167417362332344,-0.962606012821198,-0.212981283664703,-0.0517003983259201,-0.964599072933197,0.258603751659393,-0.226224109530449,-0.941437244415283,0.250037252902985,-0.136838883161545,-0.957091212272644,0.255443871021271,0.00781181082129478,-0.966161370277405,0.257819980382919,-0.0502450689673424,-0.968292534351349,0.244714364409447,-0.132219925522804,-0.965426862239838,0.22465306520462,-0.227777883410454,-0.953558325767517,0.197088599205017,-0.0501632988452911,-0.968493342399597,0.243935376405716,-0.156668990850449,-0.963539481163025,0.216901943087578,-0.197835236787796,-0.930636048316956,0.307860255241394,-0.223454087972641,-0.923074007034302,0.313053965568542,-0.151198074221611,-0.94254606962204,0.297903001308441,-0.0501588210463524,-0.968504309654236,0.243892759084702,0.00791312754154205,-0.966263234615326,0.257435113191605,
  1378. 0.0205788463354111,-0.965317130088806,0.260267853736877,0.0512464791536331,-0.961915731430054,0.268499732017517,0.0205384455621243,-0.965241193771362,0.260552763938904,0.00796845555305481,-0.966318726539612,0.257224917411804,-0.152421966195107,-0.947452247142792,0.28125062584877,-0.0807416215538979,-0.959130823612213,0.271198928356171,-0.203007400035858,-0.936021685600281,0.287491858005524,-0.0159060955047607,-0.9652019739151,0.261021256446838,-0.198421806097031,-0.93126380443573,0.305575639009476,-0.0799207761883736,-0.957332074642181,0.277719289064407,-0.153944700956345,-0.953403890132904,0.259465008974075,-0.0518099442124367,-0.964311718940735,0.259651273488998,0.00760613800957799,-0.965979516506195,0.258506774902344,-0.0826431661844254,-0.963156461715698,0.255929321050644,-0.154606223106384,-0.955930471420288,0.249587714672089,0.00759885087609291,-0.965054035186768,0.261940717697144,-0.0518847703933716,-0.964114665985107,0.260366946458817,0.0210871770977974,-0.966266393661499,0.256680011749268,0.00760832848027349,-0.966257750988007,0.257464826107025,-0.0149485412985086,-0.964433372020721,0.26390340924263,-0.0787749737501144,-0.954761028289795,0.286750674247742,0.02273890376091,-0.968019068241119,0.24984435737133,0.025192491710186,-0.964541673660278,0.262725502252579,-0.0828949511051178,-0.963674485683441,0.253889977931976,0.00759979942813516,-0.965174496173859,0.261496603488922,0.0781498327851295,-0.97161728143692,0.223276630043983,-0.0136832017451525,-0.963403224945068,0.267707347869873,0.0228381082415581,-0.967881977558136,0.250365614891052,0.00760804442688823,-0.966221690177917,0.257600218057632,0.0210755467414856,-0.96624481678009,0.25676217675209,0.0256556421518326,-0.966212630271912,0.256466507911682,0.0213083326816559,-0.966675281524658,0.255117326974869,0.052864670753479,-0.963095486164093,0.263917416334152,0.025666456669569,-0.966243505477905,0.256348788738251,0.0315381214022636,-0.965268194675446,0.259350597858429,0.0244951173663139,-0.965548753738403,0.259066790342331,0.00760650215670466,-0.966025769710541,0.258333921432495,
  1379. 0.0851571634411812,-0.965585887432098,0.245748177170753,0.0247893184423447,-0.965125739574432,0.260610550642014,0.0315178222954273,-0.965361595153809,0.259005010128021,0.00767757371068001,-0.967826068401337,0.251503348350525,0.0255666375160217,-0.965957462787628,0.257434844970703,0.0521051213145256,-0.962544560432434,0.266069531440735,0.0482166185975075,-0.959644496440887,0.277051597833633,0.0582301095128059,-0.957736790180206,0.281690448522568,0.00631851237267256,-0.966311872005463,0.257296293973923,-0.00759804155677557,-0.964951276779175,0.262319058179855,0.00760119035840034,-0.965351164340973,0.260843515396118,0.0254193600267172,-0.965533137321472,0.25903594493866,0.0255524441599846,-0.965916633605957,0.257589191198349,0.00579417822882533,-0.96571809053421,0.259528398513794,-0.00760131608694792,-0.965367138385773,0.260784804821014,-0.00756921339780092,-0.961290121078491,0.275434285402298,0.0328638777136803,-0.958850979804993,0.282001316547394,0.00756351836025715,-0.960566818714142,0.277946680784225,0.0603279620409012,-0.959218502044678,0.276153177022934,0.111332975327969,-0.949823021888733,0.292303472757339,0.00611561443656683,-0.966082751750946,0.25816023349762,0.00607628282159567,-0.966038227081299,0.258327662944794,0.114195294678211,-0.961640954017639,0.249412015080452,-0.00760459387674928,-0.965783417224884,0.259238511323929,0.155048549175262,-0.940436959266663,0.30255326628685,0.111474066972733,-0.95042759180069,0.29027733206749,0.0606632977724075,-0.959452092647552,0.275266468524933,0.15742826461792,-0.96646511554718,0.202883243560791,0.116695046424866,-0.971064567565918,0.208364635705948,0.155078411102295,-0.966776311397552,0.203209906816483,0.0430102944374084,-0.965715885162354,0.256013661623001,0.0842921361327171,-0.966363728046417,0.242973282933235,0.031549509614706,-0.965215742588043,0.259544491767883,0.0498841404914856,-0.953595578670502,0.29692941904068,0.033572431653738,-0.955162763595581,0.294171690940857,-0.00754283927381039,-0.957940578460693,0.286867558956146,0.0878938958048821,-0.963062703609467,0.254528909921646,
  1380. 0.0445694141089916,-0.963136851787567,0.265294134616852,0.0831134393811226,-0.96316534280777,0.255743861198425,0.112740755081177,-0.955757081508636,0.271694630384445,0.108242839574814,-0.956267356872559,0.271728336811066,-0.0075798137113452,-0.962636291980743,0.270691424608231,0.111009202897549,-0.947120785713196,0.301063418388367,0.0496572926640511,-0.954026877880096,0.295579105615616,-0.00753668788820505,-0.957159340381622,0.289463639259338,0.114839673042297,-0.964158773422241,0.239185556769371,0.161491930484772,-0.95864999294281,0.234330028295517,0.105175465345383,-0.965028405189514,0.240121647715569,0.107409119606018,-0.958785831928253,0.263046026229858,0.0856858417391777,-0.959855914115906,0.267085373401642,0.0460488609969616,-0.960597991943359,0.274100363254547,0.0829278454184532,-0.963397979736328,0.254926174879074,0.106174416840076,-0.962324976921082,0.250315099954605,0.162033587694168,-0.957503259181976,0.23860564827919,-0.247564226388931,0.858050763607025,0.449956595897675,-0.171554028987885,0.869177460670471,0.463788539171219,-0.290451943874359,0.849317014217377,0.440792858600616,-0.361998736858368,0.826176583766937,0.431728184223175,-0.24725604057312,0.861122131347656,0.444222033023834,-0.290437906980515,0.84956568479538,0.440322577953339,-0.35993480682373,0.81761109828949,0.449398547410965,-0.416585743427277,0.788863122463226,0.451830983161926,-0.289211869239807,0.848066329956055,0.444004565477371,-0.290099084377289,0.855124294757843,0.429656744003296,-0.320186227560043,0.842835068702698,0.432561963796616,-0.361532628536224,0.824218690395355,0.435841411352158,-0.41464164853096,0.795856356620789,0.441231220960617,-0.361194998025894,0.822809457778931,0.438774138689041,-0.321406096220016,0.84060150384903,0.435989916324615,-0.397865176200867,0.844133913516998,0.359362334012985,-0.316450268030167,0.849516153335571,0.422115445137024,-0.460879892110825,0.833185076713562,0.305601716041565,-0.28932386636734,0.865532577037811,0.408833831548691,-0.239636391401291,0.871414124965668,0.428032547235489,-0.308779954910278,0.862514913082123,0.400902718305588,
  1381. -0.457694590091705,0.836543083190918,0.301183044910431,-0.314565479755402,0.85279792547226,0.416874319314957,-0.314773947000504,0.852795541286469,0.416721910238266,-0.314581453800201,0.852770388126373,0.416918724775314,-0.260244876146317,0.850673675537109,0.456757158041,-0.314797550439835,0.852771043777466,0.416754394769669,-0.316195547580719,0.851311802864075,0.418675094842911,-0.260417848825455,0.850491523742676,0.45699754357338,-0.265136450529099,0.850709736347198,0.453867375850677,-0.247370153665543,0.950828969478607,-0.186366453766823,-0.17549803853035,0.967363297939301,-0.182780459523201,-0.29287987947464,0.937457323074341,-0.188135981559753,-0.367567986249924,0.91241979598999,-0.179955273866653,-0.247058123350143,0.949629604816437,-0.19278447329998,-0.292875111103058,0.93742173910141,-0.188320994377136,-0.365315228700638,0.917087852954865,-0.159670367836952,-0.418098717927933,0.897382080554962,-0.141063332557678,-0.288837403059006,0.939351797103882,-0.184908404946327,-0.292564928531647,0.93519401550293,-0.199544250965118,-0.323122441768646,0.927210569381714,-0.189400225877762,-0.366951674222946,0.913770973682404,-0.174267247319222,-0.41620135307312,0.896196126937866,-0.153652742505074,-0.366609305143356,0.91449648141861,-0.171154469251633,-0.324299603700638,0.92761367559433,-0.18537163734436,-0.399411231279373,0.882246434688568,-0.249222636222839,-0.318770498037338,0.925596833229065,-0.204098209738731,-0.458474785089493,0.842748701572418,-0.282091408967972,-0.291765749454498,0.929974019527435,-0.223654001951218,-0.241468608379364,0.946913778781891,-0.212243184447289,-0.311498880386353,0.922487676143646,-0.228002160787582,-0.455307066440582,0.842611789703369,-0.287577718496323,-0.31693297624588,0.924858689308167,-0.210214227437973,-0.316129118204117,0.925236463546753,-0.209761813282967,-0.316928088665009,0.924856662750244,-0.210230231285095,-0.261749893426895,0.948699355125427,-0.177359864115715,-0.316132038831711,0.925236582756042,-0.209756731987,-0.317577421665192,0.925302267074585,-0.20726914703846,-0.261970043182373,0.948710441589355,-0.176975592970848,
  1382. -0.262529581785202,0.948498606681824,-0.17728117108345,-0.281907320022583,0.922748625278473,0.262799233198166,-0.211531966924667,0.938351988792419,0.273404091596603,-0.323754459619522,0.910932004451752,0.25570672750473,-0.401955723762512,0.879752159118652,0.253904819488525,-0.281776279211044,0.923653841018677,0.259741991758347,-0.323791742324829,0.910212576389313,0.258209198713303,-0.398892313241959,0.873047351837158,0.280487596988678,-0.447727680206299,0.846671521663666,0.287554025650024,-0.321741044521332,0.908115208148956,0.267972856760025,-0.323706656694412,0.911790072917938,0.252691328525543,-0.35849741101265,0.896917462348938,0.258879631757736,-0.400605380535126,0.876796662807465,0.265975624322891,-0.44597589969635,0.851487338542938,0.275816529989243,-0.400245845317841,0.87600976228714,0.269091427326202,-0.359617680311203,0.895371794700623,0.262649297714233,-0.430886387825012,0.882533431053162,0.188338994979858,-0.354509353637695,0.902223169803619,0.245594084262848,-0.496533542871475,0.857465326786041,0.13493600487709,-0.32329124212265,0.917453050613403,0.231867849826813,-0.283827275037766,0.926767468452454,0.246057212352753,-0.347532659769058,0.910806655883789,0.222827851772308,-0.493486702442169,0.85997998714447,0.130020558834076,-0.3527652323246,0.904449999332428,0.239847540855408,-0.351859152317047,0.904629588127136,0.240500539541245,-0.352765113115311,0.904450297355652,0.239847034215927,-0.302770793437958,0.912074565887451,0.276495695114136,-0.351871103048325,0.904619812965393,0.240519642829895,-0.353246033191681,0.903496026992798,0.242718562483788,-0.303066939115524,0.911831021308899,0.276974052190781,-0.298925340175629,0.912359476089478,0.279721111059189,-0.246027871966362,0.773534536361694,0.584050118923187,-0.168156340718269,0.782220363616943,0.599879026412964,-0.289492100477219,0.76641321182251,0.573415458202362,-0.364102363586426,0.742205440998077,0.562637269496918,-0.245876312255859,0.775387227535248,0.581652343273163,-0.28957587480545,0.76463770866394,0.575738608837128,-0.361277610063553,0.726551711559296,0.584466576576233,
  1383. -0.41568261384964,0.698945462703705,0.581965088844299,-0.287393480539322,0.758845150470734,0.584430515766144,-0.289425373077393,0.767785131931305,0.571610808372498,-0.321250706911087,0.754442870616913,0.5723757147789,-0.362886428833008,0.735352396965027,0.572337627410889,-0.413785696029663,0.707604169845581,0.572780728340149,-0.362547397613525,0.73347395658493,0.574956834316254,-0.322450071573257,0.751670897006989,0.575340628623962,-0.397392064332962,0.768906474113464,0.500861644744873,-0.317286193370819,0.763418138027191,0.562603116035461,-0.461268454790115,0.767440676689148,0.445271193981171,-0.288669764995575,0.781396508216858,0.553253531455994,-0.241625368595123,0.783750295639038,0.572147369384766,-0.309778302907944,0.779663920402527,0.544207274913788,-0.458058476448059,0.771522402763367,0.441515177488327,-0.315409779548645,0.767568528652191,0.557992160320282,-0.314828395843506,0.767501711845398,0.558412313461304,-0.315417975187302,0.767550587654114,0.558012247085571,-0.261850863695145,0.758769392967224,0.596408545970917,-0.314850062131882,0.767474353313446,0.558437764644623,-0.316265642642975,0.765680193901062,0.560098111629486,-0.262077510356903,0.758479416370392,0.596677780151367,-0.262736320495605,0.758585572242737,0.596252918243408,0.0286583378911018,0.669088423252106,0.742630124092102,0.000267345458269119,0.667101502418518,0.744966804981232,-0.0372360646724701,0.663643062114716,0.74712210893631,-0.0709301009774208,0.662808954715729,0.745421588420868,0.0287762004882097,0.663270056247711,0.747826755046844,-0.0372385308146477,0.663704335689545,0.74706757068634,0.351211309432983,0.646239340305328,0.6775141954422,0.0287031047046185,0.666893303394318,0.744600236415863,-0.0701816752552986,0.658829689025879,0.749011397361755,-0.0683197379112244,0.648894309997559,0.757805109024048,-0.0368564873933792,0.654229342937469,0.75539767742157,-0.255900710821152,0.60273003578186,0.755798578262329,0.340200334787369,0.702691674232483,0.624890625476837,-0.0671699494123459,0.642733693122864,0.763139307498932,0.120105005800724,0.686106622219086,0.717518329620361,
  1384. 0.119098633527756,0.688237369060516,0.715642988681793,-0.0667942985892296,0.640716791152954,0.764866352081299,-0.245554894208908,0.570167422294617,0.783971905708313,0.354143381118774,0.934754133224487,0.0285874232649803,0.537048876285553,0.843275904655457,-0.0215466227382421,0.375370800495148,0.926588177680969,0.0230460036545992,0.354414492845535,0.934613585472107,0.0297968462109566,0.375664889812469,0.926397562026978,0.025756660848856,0.187066897749901,0.980518758296967,0.059909000992775,-0.139853909611702,0.964675426483154,0.223254203796387,0.343947321176529,0.938864827156067,-0.0152675062417984,0.188280373811722,0.979844629764557,0.0667460262775421,0.377230793237686,0.925226926803589,0.0406459830701351,0.272741794586182,0.960747420787811,0.0507574304938316,0.186796694993973,0.980661749839783,0.058393120765686,-0.160054668784142,0.971606492996216,0.174250781536102,0.187676221132278,0.980186820030212,0.0633361041545868,-0.00838171318173409,0.991746127605438,0.127942830324173,0.186895623803139,0.980609595775604,0.0589479394257069,0.272641897201538,0.960842847824097,0.0494712479412556,-0.0143472868949175,0.996784090995789,0.0788396000862122,-0.036531638354063,0.259921312332153,-0.964938521385193,0.00335723301395774,0.264216810464859,-0.964457511901855,0.039158184081316,0.267710357904434,-0.962703406810761,0.0679924935102463,0.266611605882645,-0.961402833461761,-0.0366573706269264,0.268318682909012,-0.962632536888123,0.0391704775393009,0.267375141382217,-0.962796092033386,-0.350941777229309,0.218514442443848,-0.910544514656067,-0.0365758053958416,0.262852191925049,-0.964142680168152,0.067270502448082,0.271488517522812,-0.960087835788727,0.0669350400567055,0.273748189210892,-0.959469556808472,0.039093054831028,0.269483268260956,-0.96221125125885,0.261175513267517,0.297492235898972,-0.91830587387085,-0.336655795574188,0.12279637157917,-0.933586597442627,0.0670105442404747,0.273239940404892,-0.959609031677246,-0.112838394939899,0.212109535932541,-0.970709621906281,-0.11204606294632,0.20996467769146,-0.971267461776733,0.0668249279260635,0.274488985538483,-0.959265470504761,
  1385. 0.252577245235443,0.33166366815567,-0.908957600593567,0.351204574108124,0.48310598731041,0.802037417888641,0.534080743789673,0.475947380065918,0.698735892772675,0.377702176570892,0.483390390872955,0.789730846881866,0.351418793201447,0.482212871313095,0.80248087644577,0.377993434667587,0.480886459350586,0.791118979454041,0.191131949424744,0.481885075569153,0.855134725570679,-0.13196288049221,0.318556219339371,0.938673436641693,0.345667213201523,0.505519449710846,0.790546834468842,0.195616811513901,0.458975553512573,0.866646111011505,0.379481732845306,0.467578142881393,0.798350989818573,0.270964860916138,0.478787958621979,0.835068881511688,0.190923929214478,0.482923984527588,0.854594945907593,-0.150423049926758,0.360191076993942,0.920671105384827,0.195504605770111,0.45956102013588,0.866361141204834,-0.00903176516294479,0.40742638707161,0.91319340467453,0.19100758433342,0.482506364583969,0.854812145233154,0.27086529135704,0.479885399341583,0.834471046924591,-0.017773550003767,0.474311172962189,0.880177855491638,0.0293310582637787,0.195787027478218,0.980207741260529,-0.00426796777173877,0.192338645458221,0.98131936788559,-0.0383330509066582,0.188617691397667,0.981302201747894,-0.0678937509655952,0.188865974545479,0.979653060436249,0.0294400006532669,0.188017472624779,0.981724381446838,-0.0383390299975872,0.188797414302826,0.981267392635345,0.351094454526901,0.209311544895172,0.912645280361176,0.0293725486844778,0.19284500181675,0.980789601802826,-0.0671801716089249,0.183910429477692,0.980644583702087,-0.0653348341584206,0.171129137277603,0.98308002948761,-0.0379170402884483,0.176192671060562,0.983625173568726,-0.255070745944977,0.132096603512764,0.957856774330139,0.340097695589066,0.284687608480453,0.896262586116791,-0.064233087003231,0.163521245121956,0.984446585178375,0.123401165008545,0.224118158221245,0.966717839241028,0.122369989752769,0.227004647254944,0.966175198554993,-0.0638667866587639,0.160995543003082,0.984886527061462,-0.244713068008423,0.0898346528410912,0.96542501449585,-0.21949091553688,0.580257534980774,-0.784299075603485,
  1386. -0.218591317534447,0.579895198345184,-0.784818172454834,-0.119920417666435,0.536632299423218,-0.83525139093399,-0.214538097381592,0.591492652893066,-0.777245044708252,-0.107519119977951,0.562656939029694,-0.819668769836426,-0.173708781599998,0.581382811069489,-0.794870615005493,-0.373458087444305,0.553285598754883,-0.744583308696747,-0.211982324719429,0.597206354141235,-0.773568451404572,-0.167797669768333,0.606030642986298,-0.777541518211365,-0.107341349124908,0.563023924827576,-0.819440126419067,-0.084505133330822,0.557311117649078,-0.825992286205292,-0.174508661031723,0.577951312065125,-0.797194540500641,-0.367931455373764,0.528759956359863,-0.764878630638123,-0.16754537820816,0.6070556640625,-0.776795983314514,-0.12180533260107,0.620678901672363,-0.774545848369598,-0.170212671160698,0.59610915184021,-0.784653782844543,-0.0694304555654526,0.601019442081451,-0.79621297121048,-0.121397942304611,0.599267661571503,-0.791290581226349,-0.0711856111884117,0.722971141338348,-0.687201201915741,-0.05838393419981,0.722898483276367,-0.68848317861557,0.134001687169075,0.707445502281189,-0.693948447704315,-0.181131646037102,0.73240464925766,-0.656334340572357,-0.0584103725850582,0.722778797149658,-0.688606679439545,-0.0710632354021072,0.724307656288147,-0.685805022716522,0.0698152109980583,0.72457355260849,-0.685652315616608,-0.07087492197752,0.726353824138641,-0.683657109737396,0.134874328970909,0.718852758407593,-0.681952834129334,-0.0716996714472771,0.717293858528137,-0.693072021007538,-0.176162376999855,0.733236312866211,-0.656758248806,-0.180542498826981,0.733709931373596,-0.655037522315979,0.0678214058279991,0.73715615272522,-0.67231023311615,-0.168959975242615,0.698587775230408,-0.695289671421051,-0.0714888796210289,0.719634056091309,-0.690663635730743,-0.208853334188461,0.740851759910584,-0.638372123241425,-0.178861260414124,0.737411379814148,-0.651331782341003,-0.176975667476654,0.737169325351715,-0.652120411396027,-0.176899150013924,0.693444550037384,-0.698456466197968,-0.168693393468857,0.697311103343964,-0.696634590625763,
  1387. 0.060636505484581,0.779355108737946,-0.623641610145569,-0.212341696023941,0.677913546562195,-0.70380699634552,-0.168904796242714,0.698323428630829,-0.6955686211586,-0.177581444382668,0.694393455982208,-0.697339653968811,0.18671415746212,-0.621982753276825,0.760444104671478,0.250964671373367,-0.64374166727066,0.722920060157776,0.361352682113647,-0.672830045223236,0.645541608333588,0.187882333993912,-0.620113909244537,0.76168167591095,0.0658910423517227,-0.580362379550934,0.811688303947449,0.250973373651505,-0.636391758918762,0.729395687580109,0.38837605714798,-0.590035080909729,0.707829535007477,0.250809907913208,-0.609838485717773,0.751792073249817,0.321241050958633,-0.60142195224762,0.731502413749695,0.250911861658096,-0.620580077171326,0.742915749549866,0.0602293536067009,-0.59836608171463,0.798955857753754,0.182168200612068,-0.615331470966339,0.766930282115936,0.250510305166245,-0.590546488761902,0.767137169837952,0.181525990366936,-0.609622776508331,0.771627187728882,0.312491834163666,-0.57043468952179,0.759574294090271,0.0586225241422653,-0.603401482105255,0.795279920101166,0.02715864777565,-0.598789036273956,0.800446152687073,0.182183921337128,-0.61547189950943,0.766813814640045,0.125283494591713,-0.636377215385437,0.761136114597321,0.301517635583878,-0.532811999320984,0.790694952011108,0.181205123662949,-0.606791019439697,0.773931086063385,0.181611135601997,-0.610376477241516,0.771010994911194,0.0204300303012133,-0.634273707866669,0.772838711738586,0.121558859944344,-0.621272325515747,0.774108648300171,0.199977904558182,-0.805024981498718,0.558519244194031,0.275132656097412,-0.803563356399536,0.527814328670502,0.391124695539474,-0.790271639823914,0.471690744161606,0.200770601630211,-0.803006708621979,0.561133980751038,0.0659704729914665,-0.799962997436523,0.596411824226379,0.27248939871788,-0.798117339611053,0.537362337112427,0.3928182721138,-0.718655407428741,0.573784172534943,0.259329348802567,-0.770582735538483,0.58219450712204,0.322854727506638,-0.748114228248596,0.579732656478882,0.264714658260345,-0.781931042671204,0.56436687707901,
  1388. 0.0658454969525337,-0.807370722293854,0.586358964443207,0.187518537044525,-0.795792698860168,0.575804650783539,0.182397186756134,-0.787826299667358,0.588269591331482,0.303614765405655,-0.728355824947357,0.61426043510437,0.252282172441483,-0.755577862262726,0.604529500007629,0.0658107474446297,-0.809307873249054,0.583686351776123,0.0337618552148342,-0.811251580715179,0.58372175693512,0.186591148376465,-0.79435920715332,0.578080594539642,0.137053936719894,-0.815341711044312,0.562524735927582,0.280508875846863,-0.703605234622955,0.652881741523743,0.18078488111496,-0.78529292345047,0.59214174747467,0.186529397964478,-0.794263660907745,0.578231811523438,0.0388392060995102,-0.839286148548126,0.542301058769226,0.134533673524857,-0.812572717666626,0.567121207714081,0.152456060051918,0.608391642570496,0.778856039047241,0.236679658293724,0.588579833507538,0.773017883300781,0.134854540228844,0.611926019191742,0.779333651065826,0.381218194961548,0.634676575660706,0.672204196453094,0.233722418546677,0.637397766113281,0.7342329621315,0.15092958509922,0.632029294967651,0.760104894638062,-0.0248691532760859,0.633552551269531,0.773299872875214,0.152655273675919,0.6050945520401,0.78138142824173,0.134306058287621,0.608992457389832,0.781722605228424,0.151433736085892,0.624517261981964,0.766189277172089,-0.0553877390921116,0.596571147441864,0.800646603107452,0.384291797876358,0.621710300445557,0.682492554187775,-0.0271033067256212,0.611955165863037,0.790427923202515,-0.0584653615951538,0.611130595207214,0.78936767578125,0.152659893035889,0.60501766204834,0.781440079212189,0.120589792728424,0.621653079986572,0.773954570293427,0.389263242483139,0.599281311035156,0.699525654315948,-0.058295339345932,0.610329329967499,0.789999842643738,-0.345483303070068,0.558876872062683,0.753855407238007,-0.0589871555566788,0.613587498664856,0.787420451641083,-0.0266467034816742,0.616423606872559,0.786963701248169,0.114540994167328,0.644192814826965,0.756237983703613,-0.0563389547169209,0.60108357667923,0.797197997570038,-0.328968852758408,0.489256531000137,0.807717442512512,
  1389. -0.113739229738712,0.972289204597473,-0.204247519373894,-0.106876544654369,0.973137378692627,-0.203914627432823,0.08331498503685,0.978058755397797,-0.190944150090218,-0.290044367313385,0.941572725772858,-0.171216532588005,-0.106771863996983,0.975174188613892,-0.193997576832771,-0.114541321992874,0.974454879760742,-0.193178772926331,0.020164355635643,0.979597270488739,-0.199956387281418,-0.112920664250851,0.969993710517883,-0.215316116809845,0.0833581015467644,0.977969348430634,-0.191383302211761,-0.113922908902168,0.972792685031891,-0.201732710003853,-0.231180995702744,0.956347405910492,-0.178759753704071,-0.289577782154083,0.942637801170349,-0.166068091988564,0.0187952648848295,0.980657637119293,-0.194826513528824,-0.206742987036705,0.941826939582825,-0.264989286661148,-0.11129080504179,0.965183734893799,-0.236716359853745,-0.455800950527191,0.876631379127502,-0.154152229428291,-0.289650440216064,0.942474782466888,-0.166864767670631,-0.233575358986855,0.957389175891876,-0.169848680496216,-0.177087530493736,0.956529378890991,-0.231714174151421,-0.210410013794899,0.94442617893219,-0.252560704946518,-0.00143946707248688,0.992942929267883,-0.118584901094437,-0.409182071685791,0.836135923862457,-0.365303575992584,-0.210637807846069,0.944582998752594,-0.251783013343811,-0.177043572068214,0.95652163028717,-0.231780380010605,-0.203325122594833,0.135355815291405,0.969710111618042,-0.404715061187744,0.190482243895531,0.894383668899536,-0.258134692907333,0.150744929909706,0.954275846481323,-0.203878551721573,0.133012279868126,0.969918191432953,-0.257298350334167,0.143180340528488,0.955665707588196,-0.0780387446284294,0.107919178903103,0.991092026233673,-0.404773533344269,0.0597164705395699,0.91246497631073,-0.314023047685623,0.0806775018572807,0.945981442928314,-0.251544594764709,0.0942698568105698,0.963243782520294,-0.253410160541534,0.10958294570446,0.961132049560547,-0.149015262722969,0.111002899706364,0.982584774494171,-0.0780099332332611,0.111249186098576,0.990726113319397,-0.246673464775085,0.0563350468873978,0.967459917068481,
  1390. -0.293103963136673,0.0263046510517597,0.955718696117401,-0.150319382548332,0.116541855037212,0.981744408607483,-0.0779528766870499,0.11756007373333,0.990001499652863,-0.149680778384209,0.113827310502529,0.98216038942337,-0.0544093996286392,0.118647590279579,0.991444647312164,-0.300990700721741,0.0465042553842068,0.952492475509644,-0.152698025107384,0.127187818288803,0.980054378509521,-0.152801796793938,0.127133503556252,0.980045318603516,-0.152205720543861,0.124584436416626,0.980465292930603,-0.151742726564407,0.124743714928627,0.980516791343689,-0.0589150413870811,0.15582263469696,0.986026525497437,-0.203955441713333,0.69824755191803,0.686187028884888,-0.401619911193848,0.695160031318665,0.596199572086334,-0.25505468249321,0.700595498085022,0.666418135166168,-0.204126492142677,0.697690725326538,0.686702311038971,-0.254474282264709,0.69700413942337,0.670393943786621,-0.0779139026999474,0.691049039363861,0.718596339225769,-0.401233732700348,0.620923697948456,0.67339825630188,-0.320214480161667,0.654311180114746,0.68508368730545,-0.251345664262772,0.67805278301239,0.690702378749847,-0.25466126203537,0.698158264160156,0.669120788574219,-0.159182965755463,0.711990594863892,0.683908104896545,-0.0774869471788406,0.718385457992554,0.691316246986389,-0.249991714954376,0.670044839382172,0.698959290981293,-0.307570725679398,0.632083177566528,0.711246192455292,-0.162081122398376,0.720418691635132,0.674334228038788,-0.077497810125351,0.717783391475677,0.691940188407898,-0.158070415258408,0.708743929862976,0.687528848648071,-0.0583633072674274,0.719229817390442,0.692316651344299,-0.300386965274811,0.619401335716248,0.725334227085114,-0.145753517746925,0.703545689582825,0.695542573928833,-0.154840067028999,0.699282586574554,0.697874248027802,-0.154530078172684,0.698372006416321,0.698854088783264,-0.144676834344864,0.701713442802429,0.697615146636963,-0.0597686506807804,0.727135717868805,0.68388706445694,0.0654391050338745,-0.968555390834808,-0.240037798881531,0.0604143179953098,-0.96895432472229,-0.239744871854782,-0.132716074585915,-0.96552586555481,-0.223933726549149,
  1391. 0.17817610502243,-0.949722170829773,-0.257451057434082,0.061464861035347,-0.970504820346832,-0.233114749193192,0.0658360496163368,-0.969984710216522,-0.234084203839302,-0.0632357448339462,-0.96783721446991,-0.243500486016274,0.0650577619671822,-0.967156589031219,-0.245714575052261,-0.133545160293579,-0.961401998996735,-0.240565940737724,0.0678591281175613,-0.976824641227722,-0.202999398112297,0.174961671233177,-0.95564341545105,-0.236926630139351,0.183891981840134,-0.953285455703735,-0.239647030830383,-0.0615163333714008,-0.963858187198639,-0.259216576814651,0.171649917960167,-0.961462318897247,-0.214770942926407,0.0656604990363121,-0.969356000423431,-0.236722752451897,0.207920148968697,-0.945629298686981,-0.250108927488327,0.183196157217026,-0.952868044376373,-0.241830214858055,0.175290659070015,-0.95502781867981,-0.239155352115631,0.180376827716827,-0.962621092796326,-0.20205157995224,0.170495495200157,-0.963335335254669,-0.207162737846375,-0.0552993491292,-0.947715997695923,-0.314287096261978,0.210406973958015,-0.959346771240234,-0.188102871179581,0.170609191060066,-0.963154315948486,-0.207909479737282,0.180790737271309,-0.962365448474884,-0.202897667884827,0.184570699930191,-0.975115537643433,-0.122815102338791,0.25336018204689,-0.953310966491699,-0.164337739348412,0.356861621141434,-0.906243324279785,-0.226655811071396,0.186136305332184,-0.975189208984375,-0.119829937815666,0.0582716539502144,-0.996709585189819,-0.0563428848981857,0.253473818302155,-0.955161571502686,-0.153027430176735,0.388772487640381,-0.915256679058075,-0.105646193027496,0.253556549549103,-0.96227890253067,-0.0986326411366463,0.314707815647125,-0.94368988275528,-0.10202232003212,0.25361505150795,-0.959756672382355,-0.120609551668167,0.0548117160797119,-0.996077537536621,-0.0694642439484596,0.185047075152397,-0.977291285991669,-0.103244908154011,0.253302276134491,-0.964810371398926,-0.0705611929297447,0.18330006301403,-0.979425847530365,-0.0844169780611992,0.305618911981583,-0.950275659561157,-0.0597776211798191,0.0539031177759171,-0.99588143825531,-0.0729015246033669,
  1392. 0.0298873782157898,-0.997251093387604,-0.0678025409579277,0.184752598404884,-0.977681994438171,-0.100022733211517,0.118368491530418,-0.986448764801025,-0.113612346351147,0.294356912374496,-0.955635905265808,-0.0106846541166306,0.182590022683144,-0.980173051357269,-0.0769540295004845,0.184508726000786,-0.977995753288269,-0.0973697453737259,0.0227431990206242,-0.992917537689209,-0.116608053445816,0.11689481139183,-0.987492680549622,-0.105801783502102,-0.204462081193924,0.91781610250473,0.340306997299194,-0.270089954137802,0.895510673522949,0.353712111711502,-0.394658476114273,0.838892579078674,0.374838471412659,-0.204655230045319,0.918064177036285,0.339520931243896,-0.0719998925924301,0.945290565490723,0.318185359239578,-0.26840016245842,0.89838182926178,0.347665846347809,-0.39489871263504,0.870133817195892,0.294825553894043,-0.264319896697998,0.905054569244385,0.33318355679512,-0.32095330953598,0.892275333404541,0.317543566226959,-0.269118189811707,0.897169709205627,0.350231438875198,-0.0715892910957336,0.930208206176758,0.359982877969742,-0.191261947154999,0.914766132831573,0.355839818716049,-0.19303685426712,0.912575125694275,0.360476970672607,-0.310608267784119,0.902466952800751,0.298455774784088,-0.262019604444504,0.908659696578979,0.325089931488037,-0.0715561658143997,0.929113388061523,0.362806051969528,-0.0302632655948401,0.9305539727211,0.364901959896088,-0.190267458558083,0.915978908538818,0.353243470191956,-0.144828602671623,0.908424258232117,0.392160803079605,-0.285541117191315,0.924415647983551,0.252828240394592,-0.189211279153824,0.917255520820618,0.350487440824509,-0.189821839332581,0.916518986225128,0.352080494165421,-0.0352854393422604,0.910484671592712,0.412034630775452,-0.135657146573067,0.917274713516235,0.374438643455505,-0.0495981499552727,0.945549666881561,0.321676731109619,-0.044896986335516,0.946004986763,0.321027666330338,0.141821220517159,0.946624994277954,0.289461463689804,-0.165020450949669,0.920548617839813,0.354059964418411,-0.0451393239200115,0.946310043334961,0.320093125104904,-0.0496334359049797,0.945622861385345,0.321455985307693,
  1393. 0.0745320096611977,0.946556508541107,0.313808500766754,-0.0488410219550133,0.943967342376709,0.326405048370361,0.143985584378242,0.941559612751007,0.304521918296814,-0.0541566163301468,0.954618692398071,0.292865484952927,-0.171177580952644,0.925096333026886,0.338961750268936,-0.171598359942436,0.924960613250732,0.339119225740433,0.0743599385023117,0.944371223449707,0.320364773273468,-0.168450474739075,0.940653562545776,0.294610500335693,-0.0515580624341965,0.949545681476593,0.309361934661865,-0.204308748245239,0.909880816936493,0.36107462644577,-0.168308153748512,0.922782778739929,0.346618503332138,-0.171691805124283,0.921639859676361,0.347997009754181,-0.171134501695633,0.938518881797791,0.299825459718704,-0.168850108981133,0.93862509727478,0.300786674022675,0.072288878262043,0.918068706989288,0.389774799346924,-0.214237436652184,0.934938967227936,0.282827496528625,-0.168880522251129,0.938467681407928,0.301260590553284,-0.171316936612129,0.938336193561554,0.300293028354645,-0.117365874350071,0.699009478092194,0.705415487289429,-0.105935305356979,0.699321150779724,0.706914246082306,0.082074448466301,0.69120991230011,0.717978179454803,-0.293244421482086,0.653814435005188,0.697520196437836,-0.105758152902126,0.692202568054199,0.713912308216095,-0.118204772472382,0.690463483333588,0.713644087314606,0.0201992224901915,0.699462473392487,0.714383840560913,-0.116537824273109,0.707189500331879,0.697353541851044,0.0821225270628929,0.691566705703735,0.717629075050354,-0.117608405649662,0.696566164493561,0.707787990570068,-0.233031928539276,0.668546378612518,0.706216633319855,-0.292751848697662,0.649915754795074,0.701360046863556,0.0188215132802725,0.695751786231995,0.718035697937012,-0.208289593458176,0.733745992183685,0.646708786487579,-0.114854015409946,0.723097562789917,0.681130349636078,-0.459908664226532,0.603692352771759,0.651183307170868,-0.292872905731201,0.650869190692902,0.70042473077774,-0.235353291034698,0.661848962306976,0.71173369884491,-0.17698946595192,0.713580906391144,0.677847445011139,-0.21185240149498,0.725005567073822,0.655351400375366,
  1394. -0.00163762993179262,0.638455033302307,0.769657373428345,-0.41259640455246,0.760713875293732,0.50107741355896,-0.212091878056526,0.724410831928253,0.65593147277832,-0.176944419741631,0.713633954524994,0.67780327796936,-0.215098708868027,0.297157257795334,0.930284976959229,-0.42273810505867,0.329039841890335,0.844408273696899,-0.262354344129562,0.305595844984055,0.915303945541382,-0.215397164225578,0.295640796422958,0.930698990821838,-0.261469572782516,0.300128251314163,0.917364001274109,-0.0914158597588539,0.280497223138809,0.955491840839386,-0.418538928031921,0.232299238443375,0.877987623214722,-0.330397397279739,0.26258248090744,0.90658038854599,-0.258921772241592,0.284632235765457,0.923008143901825,-0.260887503623962,0.296556174755096,0.91869044303894,-0.165710598230362,0.305586278438568,0.937633752822876,-0.0923358052968979,0.310507923364639,0.946075558662415,-0.255796760320663,0.266093224287033,0.929388165473938,-0.312995105981827,0.223725706338882,0.923028111457825,-0.171159371733665,0.324696362018585,0.930202543735504,-0.092299185693264,0.309259861707687,0.946487843990326,-0.164415121078491,0.301060825586319,0.939324259757996,-0.0699789449572563,0.311454832553864,0.947680830955505,-0.308090269565582,0.212947577238083,0.927218317985535,-0.15978629887104,0.305519610643387,0.938683211803436,-0.164845511317253,0.302563518285751,0.93876588344574,-0.164900660514832,0.302756160497665,0.938694059848785,-0.159515276551247,0.304933667182922,0.93891978263855,-0.074447400867939,0.337695986032486,0.938306450843811,-0.0711979418992996,0.973941266536713,-0.215335175395012,-0.0580282434821129,0.974558174610138,-0.216492787003517,0.134101063013077,0.96414977312088,-0.228980526328087,-0.173314154148102,0.966888308525085,-0.18732176721096,-0.0582502409815788,0.974224448204041,-0.21793033182621,-0.0711530223488808,0.974092960357666,-0.21466301381588,0.0647215247154236,0.973543047904968,-0.219146460294724,-0.0712775588035584,0.973671078681946,-0.216527551412582,0.134584963321686,0.966418325901031,-0.218911916017532,-0.073858730494976,0.963875770568848,-0.255907028913498,
  1395. -0.17057204246521,0.960460960865021,-0.220045313239098,-0.182618945837021,0.959306240081787,-0.215364456176758,0.0645750910043716,0.973851799964905,-0.217813491821289,-0.165219113230705,0.952505350112915,-0.255805015563965,-0.0729626640677452,0.967511117458344,-0.242071762681007,-0.210384696722031,0.958200752735138,-0.193880468606949,-0.179856985807419,0.961664795875549,-0.207007855176926,-0.171976283192635,0.962381899356842,-0.21034537255764,-0.1861831843853,0.957563400268555,-0.220018535852432,-0.171504139900208,0.961744248867035,-0.21362242102623,0.0526411645114422,0.99238133430481,-0.111391991376877,-0.211895227432251,0.949893534183502,-0.229788333177567,-0.171506479382515,0.961747348308563,-0.2136060744524,-0.186378464102745,0.95762175321579,-0.219598948955536,-0.201132714748383,0.914448142051697,-0.351184099912643,-0.248974770307541,0.914374113082886,-0.319267302751541,-0.366204291582108,0.900663077831268,-0.233881324529648,-0.2016581594944,0.913979470729828,-0.352101534605026,-0.0687968879938126,0.904503703117371,-0.420879989862442,-0.248949021100998,0.912333130836487,-0.325073450803757,-0.387351304292679,0.868354022502899,-0.309709995985031,-0.248862355947495,0.907855927944183,-0.337439149618149,-0.317074179649353,0.891039907932281,-0.324825972318649,-0.248969882726669,0.91392582654953,-0.320551961660385,-0.0569948963820934,0.923115849494934,-0.380274802446365,-0.184877380728722,0.921219825744629,-0.342307597398758,-0.248796537518501,0.905333042144775,-0.344198256731033,-0.185220301151276,0.922449707984924,-0.338792085647583,-0.312136083841324,0.883949041366577,-0.348145365715027,-0.0535040087997913,0.928210020065308,-0.368189513683319,-0.0269530154764652,0.927071690559387,-0.373914003372192,-0.185538202524185,0.923586547374725,-0.335504800081253,-0.122376576066017,0.938729405403137,-0.322197198867798,-0.299946278333664,0.86540812253952,-0.401373982429504,-0.184017062187195,0.918118894100189,-0.350992023944855,-0.182045340538025,0.910933494567871,-0.370215952396393,-0.0247277524322271,0.932508111000061,-0.360301524400711,
  1396. -0.113488048315048,0.923264861106873,-0.36701825261116,-0.211534947156906,0.972121775150299,-0.10115410387516,-0.272665351629257,0.958721041679382,-0.080670490860939,-0.39405232667923,0.918315887451172,-0.0376658402383327,-0.211853817105293,0.971910119056702,-0.102511882781982,-0.0721597969532013,0.988149762153625,-0.135473266243935,-0.270930260419846,0.958605945110321,-0.0875875651836395,-0.394427835941315,0.910670876502991,-0.122902944684029,-0.266625732183456,0.958118557929993,-0.104497618973255,-0.321981132030487,0.9400235414505,-0.112623155117035,-0.271503746509552,0.958649158477783,-0.0853078961372375,-0.0718247219920158,0.993224203586578,-0.0913612246513367,-0.18566882610321,0.978629112243652,-0.0883859843015671,-0.188217297196388,0.978784143924713,-0.0809687077999115,-0.311432987451553,0.940705537796021,-0.134471818804741,-0.264180094003677,0.957718074321747,-0.113951742649078,-0.0716984942555428,0.994349777698517,-0.0782809555530548,-0.0322014428675175,0.996503710746765,-0.0770947635173798,-0.188180342316628,0.978782296180725,-0.0810764655470848,-0.141593396663666,0.988668024539948,-0.0498687848448753,-0.286055326461792,0.940136671066284,-0.185244381427765,-0.185036823153496,0.978581547737122,-0.0902194082736969,-0.177008807659149,0.977665364742279,-0.113306522369385,-0.0337470136582851,0.997548639774323,-0.0613016374409199,-0.121354006230831,0.98822021484375,-0.0932420343160629,0.0527896136045456,-0.989847660064697,0.131965562701225,0.0407270602881908,-0.990147411823273,0.13397604227066,-0.138276770710945,-0.977164566516876,0.161335289478302,0.161872997879982,-0.982371807098389,0.0935036092996597,0.0411243140697479,-0.989908039569855,0.135612770915031,0.0527432933449745,-0.989889800548553,0.131667643785477,-0.0746765658259392,-0.985201478004456,0.154277816414833,0.0541944578289986,-0.988523662090302,0.141010642051697,-0.138467326760292,-0.977369129657745,0.159926101565361,0.0572773814201355,-0.985303580760956,0.160922914743423,0.168048530817032,-0.979687929153442,0.109413661062717,0.168610751628876,-0.979621291160584,0.109144970774651,
  1397. -0.0744943171739578,-0.98655903339386,0.145436957478523,0.164459645748138,-0.972247421741486,0.166397169232368,0.0568342357873917,-0.98579329252243,0.158055305480957,0.203275308012962,-0.975539326667786,0.0836798250675201,0.165978252887726,-0.980733036994934,0.103023752570152,0.168488100171089,-0.980439841747284,0.101732641458511,0.165013670921326,-0.975196003913879,0.147524312138557,0.165696889162064,-0.975043177604675,0.147767901420593,-0.0724414959549904,-0.995566844940186,0.0599920600652695,0.212996631860733,-0.96357536315918,0.161725133657455,0.165799990296364,-0.975266218185425,0.146171629428864,0.165545359253883,-0.975322246551514,0.14608708024025,-0.0749014094471931,-0.336669862270355,0.938638985157013,0.0131648872047663,-0.344241708517075,0.938788771629334,-0.0966752618551254,-0.334382593631744,0.937465846538544,0.0657197311520576,-0.253393441438675,0.965128362178802,0.00492375297471881,-0.269923150539398,0.96286928653717,-0.0804818496108055,-0.291322886943817,0.953233242034912,-0.249143272638321,-0.312144607305527,0.916784286499023,-0.0747862532734871,-0.337583184242249,0.938320159912109,-0.0967280641198158,-0.334983497858047,0.937245845794678,-0.0789107382297516,-0.304311543703079,0.949298560619354,-0.267759323120117,-0.339941173791885,0.901523768901825,0.0705768689513206,-0.268239200115204,0.960763573646545,-0.249670833349228,-0.338082104921341,0.907394647598267,-0.268340021371841,-0.337434887886047,0.902292251586914,-0.0747231468558311,-0.338083177804947,0.938145101070404,-0.216571241617203,-0.32500085234642,0.920582056045532,0.0469761341810226,-0.195976376533508,0.979482889175415,-0.266119956970215,-0.34695890545845,0.899333000183105,-0.548530519008636,-0.330893397331238,0.767869710922241,-0.26868599653244,-0.335936456918716,0.902748286724091,-0.249620378017426,-0.335144400596619,0.90849757194519,-0.21366973221302,-0.330846309661865,0.919176757335663,-0.26588499546051,-0.347957789897919,0.899016499519348,-0.529746353626251,-0.418896198272705,0.737492203712463,-0.207293525338173,-0.0546845346689224,0.976749241352081,
  1398. -0.40230718255043,0.0101266410201788,0.915448725223541,-0.24939076602459,-0.0411696098744869,0.967527508735657,-0.207005307078362,-0.0534170866012573,0.976880431175232,-0.249127998948097,-0.0435460694134235,0.967491090297699,-0.0795171931385994,-0.0821117386221886,0.993445932865143,-0.4019695520401,-0.097309410572052,0.910467624664307,-0.314943879842758,-0.0831036865711212,0.94546514749527,-0.245911434292793,-0.0716404244303703,0.966641247272491,-0.247952863574028,-0.0540176443755627,0.967264950275421,-0.14895536005497,-0.0561572834849358,0.987248003482819,-0.0792650729417801,-0.0573068745434284,0.995204985141754,-0.244804486632347,-0.0809177830815315,0.966189980506897,-0.302978932857513,-0.115504771471024,0.945971667766571,-0.155370488762856,-0.028349606320262,0.987449467182159,-0.0792829245328903,-0.0589180663228035,0.995109558105469,-0.147797748446465,-0.0611152239143848,0.987127602100372,-0.0563641563057899,-0.058123454451561,0.996717035770416,-0.301357358694077,-0.11981163173914,0.945953965187073,-0.151384219527245,-0.0442975200712681,0.987481951713562,-0.15167398750782,-0.0444425232708454,0.987430930137634,-0.152123615145683,-0.0424952283501625,0.987447500228882,-0.152091830968857,-0.042485062032938,0.987452864646912,-0.0617438666522503,-0.013617692515254,0.997999131679535,-0.156064301729202,-0.920038521289825,0.359406590461731,0.0102371405810118,-0.928216099739075,0.371900767087936,-0.212638333439827,-0.911237418651581,0.352748245000839,-0.153451234102249,-0.928277850151062,0.338752120733261,0.0223816446959972,-0.928456723690033,0.370765924453735,0.0102230794727802,-0.929401040077209,0.368930071592331,-0.21115580201149,-0.898471117019653,0.384919583797455,0.0101928617805243,-0.931886374950409,0.362607091665268,-0.0668254494667053,-0.925634562969208,0.372471570968628,0.0102257002145052,-0.929181456565857,0.369482457637787,0.0222171526402235,-0.928122878074646,0.371610403060913,0.157393857836723,-0.906501591205597,0.391768008470535,-0.0655775740742683,-0.923365533351898,0.378279745578766,0.0101944357156754,-0.931758999824524,0.36293426156044,
  1399. 0.120494484901428,-0.933892071247101,0.336640596389771,0.123402588069439,-0.923023283481598,0.364417135715485,0.0102128107100725,-0.930254697799683,0.366772353649139,0.160220190882683,-0.918060421943665,0.36262184381485,0.164017409086227,-0.668434083461761,-0.725461423397064,-0.0165194477885962,-0.684635818004608,-0.728698134422302,0.208343997597694,-0.660950064659119,-0.720928430557251,0.161968991160393,-0.655915796756744,-0.737252056598663,-0.0219660680741072,-0.687720835208893,-0.725642919540405,-0.0165401715785265,-0.6871258020401,-0.72635018825531,0.206267118453979,-0.694455981254578,-0.689336478710175,-0.0165243446826935,-0.685222804546356,-0.728146135807037,0.0551422536373138,-0.692049980163574,-0.719740390777588,-0.016543086618185,-0.687477290630341,-0.726017475128174,-0.0218520369380713,-0.688167214393616,-0.725223004817963,-0.161718338727951,-0.699053764343262,-0.696542203426361,0.0541087836027145,-0.69584047794342,-0.716155230998993,-0.0165230333805084,-0.685065746307373,-0.72829395532608,-0.11196468770504,-0.664752542972565,-0.738625764846802,-0.114871978759766,-0.68617057800293,-0.718313574790955,-0.0165661964565516,-0.690274238586426,-0.723358273506165,-0.163933530449867,-0.681586563587189,-0.713137924671173,0.164058953523636,-0.72521698474884,0.668689012527466,-0.0165216363966465,-0.728451430797577,0.684898197650909,0.208329737186432,-0.720691919326782,0.66121244430542,0.161990359425545,-0.737131536006927,0.656045854091644,-0.0219329055398703,-0.725520849227905,0.687850654125214,-0.0165412798523903,-0.726223707199097,0.687259435653687,0.206248462200165,-0.689073741436005,0.694722235202789,-0.016526723280549,-0.727877199649811,0.685508370399475,0.0550673454999924,-0.719480991363525,0.692325592041016,-0.0165408868342638,-0.726268827915192,0.687211871147156,-0.0219176169484854,-0.725464522838593,0.687910556793213,-0.16175240278244,-0.696795165538788,0.698793709278107,0.0540258809924126,-0.715866923332214,0.696143448352814,-0.0165257025510073,-0.727992713451386,0.685385763645172,-0.112007804214954,-0.738334059715271,0.665069222450256,
  1400. -0.114473313093185,-0.721179008483887,0.683225274085999,-0.0165419522672892,-0.726146996021271,0.687340497970581,-0.164302706718445,-0.715933978557587,0.678559720516205,0.15798182785511,-0.737368583679199,-0.656756699085236,-0.0170373283326626,-0.752930641174316,-0.65787935256958,0.20467372238636,-0.729216992855072,-0.652955770492554,0.156439140439034,-0.728872776031494,-0.666536867618561,-0.0203048195689917,-0.75784969329834,-0.652113080024719,-0.0170680657029152,-0.757538557052612,-0.652567327022552,0.202475592494011,-0.762232184410095,-0.614821791648865,-0.0170623566955328,-0.756675899028778,-0.653567492961884,0.0629541575908661,-0.763090968132019,-0.64321768283844,-0.0170714724808931,-0.758054614067078,-0.651967704296112,-0.02014902792871,-0.758407175540924,-0.651469528675079,-0.159694418311119,-0.766514182090759,-0.622056066989899,0.0630941912531853,-0.762630820274353,-0.643749475479126,-0.0170314516872168,-0.752059638500214,-0.658874928951263,-0.110569424927235,-0.733249843120575,-0.67090916633606,-0.11247356981039,-0.745877325534821,-0.656518578529358,-0.0170200243592262,-0.750374734401703,-0.660793483257294,-0.162832871079445,-0.740705549716949,-0.651798129081726,0.148459956049919,-0.816140592098236,0.55845695734024,-0.0154637042433023,-0.820224225521088,0.571833074092865,0.20746873319149,-0.809130489826202,0.54978609085083,0.14606586098671,-0.827618598937988,0.541952311992645,-0.0207485165446997,-0.820440351963043,0.57135546207428,-0.0154517963528633,-0.821031868457794,0.570673167705536,0.205363214015961,-0.784600675106049,0.585002362728119,-0.0154480896890163,-0.821282565593719,0.57031238079071,0.0629958286881447,-0.813000380992889,0.578845322132111,-0.0154581433162093,-0.820602118968964,0.571290969848633,-0.0205925237387419,-0.819947779178619,0.572067737579346,-0.160092294216156,-0.793480455875397,0.58716207742691,0.0617372617125511,-0.80944812297821,0.583936870098114,-0.0154504496604204,-0.821123003959656,0.570542097091675,-0.116377823054791,-0.828616499900818,0.547586560249329,-0.119335725903511,-0.811920762062073,0.571440041065216,
  1401. -0.0154968183487654,-0.817958176136017,0.575068891048431,-0.162091255187988,-0.806828916072845,0.568114101886749,0.148535013198853,-0.815770506858826,0.558977484703064,-0.0154689680784941,-0.819866001605988,0.572346448898315,0.207439839839935,-0.808772146701813,0.550323784351349,0.146307349205017,-0.82648903131485,0.543608486652374,-0.0203937198966742,-0.819319069385529,0.572974920272827,-0.0154689233750105,-0.819869041442871,0.572342097759247,0.20545656979084,-0.785630226135254,0.583586096763611,-0.0154335983097553,-0.822259187698364,0.568903923034668,0.0633384063839912,-0.813962936401367,0.577453553676605,-0.015475882217288,-0.81939423084259,0.573021471500397,-0.0202258303761482,-0.818787574768066,0.573740363121033,-0.159909263253212,-0.792265594005585,0.588850021362305,0.0621311366558075,-0.810562491416931,0.58234703540802,-0.0154332434758544,-0.822283029556274,0.568869411945343,-0.116172611713409,-0.829728364944458,0.545943975448608,-0.119331762194633,-0.811943888664246,0.571407914161682,-0.0154964970424771,-0.817980349063873,0.57503741979599,-0.162094593048096,-0.806851446628571,0.568081140518188,-0.165746107697487,-0.984708249568939,0.0536471009254456,0.00835831463336945,-0.997942924499512,0.0635631233453751,-0.202964186668396,-0.97784298658371,0.0512720607221127,-0.162988722324371,-0.986157476902008,0.0304658263921738,0.0204755868762732,-0.997849941253662,0.0622587502002716,0.0083336103707552,-0.998150527477264,0.0602179393172264,-0.200899496674538,-0.975460708141327,0.0900878384709358,0.00833287183195353,-0.998156487941742,0.060118205845356,-0.0587234273552895,-0.995815277099609,0.0700263455510139,0.00833829026669264,-0.998112082481384,0.0608508363366127,0.0203015338629484,-0.9977947473526,0.0631950795650482,0.158041402697563,-0.983363807201386,0.0895464718341827,-0.0575634837150574,-0.995453774929047,0.0758838057518005,0.00833890680223703,-0.998106956481934,0.0609341524541378,0.114062398672104,-0.99280834197998,0.0363496355712414,0.116802379488945,-0.991038084030151,0.0648129284381866,0.00836690329015255,-0.997867822647095,0.0647289603948593,
  1402. 0.160301238298416,-0.984950006008148,0.0646295547485352,-0.159746706485748,0.822077989578247,-0.546505928039551,0.0153560880571604,0.827391266822815,-0.561415910720825,-0.208012387156487,0.816025972366333,-0.539288818836212,-0.157541304826736,0.833104431629181,-0.530205368995667,0.0226598065346479,0.826428472995758,-0.562585532665253,0.015358405187726,0.827239990234375,-0.56163877248764,-0.205890312790871,0.790475189685822,-0.576851963996887,0.0153604689985514,0.827105224132538,-0.561837136745453,-0.054179772734642,0.820107519626617,-0.569638729095459,0.015356283634901,0.827378749847412,-0.56143456697464,0.0226685162633657,0.826455593109131,-0.562545359134674,0.156679794192314,0.801315367221832,-0.577360570430756,-0.0527244582772255,0.81608510017395,-0.57552170753479,0.0153770092874765,0.826020956039429,-0.563429594039917,0.110476434230804,0.833146870136261,-0.541905343532562,0.112829193472862,0.819243133068085,-0.562236845493317,0.0153977470472455,0.824651837348938,-0.56543105840683,0.15870712697506,0.813943386077881,-0.558845579624176,0.106907941401005,0.0845283642411232,0.990669369697571,-0.0624028258025646,0.0818098336458206,0.994692504405975,0.164138823747635,0.0849025994539261,0.982776701450348,0.106377772986889,0.0732065290212631,0.991627216339111,-0.06952004134655,0.0904026031494141,0.993475914001465,-0.0630612149834633,0.0898176431655884,0.993959784507751,0.158831626176834,0.129224509000778,0.978812336921692,-0.062359094619751,0.0812796205282211,0.994738698005676,0.00572270946577191,0.0965609475970268,0.995310723781586,-0.0631009265780449,0.0903021022677422,0.993913412094116,-0.0694478377699852,0.091060109436512,0.993420898914337,-0.204051598906517,0.106323063373566,0.973169267177582,0.00434506544843316,0.101447880268097,0.994831442832947,-0.0623400211334229,0.0810483247041702,0.994758725166321,-0.161557853221893,0.0497865453362465,0.985606610774994,-0.1677505671978,0.0858109146356583,0.982087731361389,-0.0633750334382057,0.0936502292752266,0.99358606338501,-0.204510390758514,0.0827863290905952,0.975357353687286,
  1403. 0.0924572125077248,0.947196125984192,-0.307036370038986,-0.0719544515013695,0.942687630653381,-0.325826078653336,0.146211937069893,0.942990481853485,-0.298983454704285,0.0882532969117165,0.954448819160461,-0.285024523735046,-0.0775554999709129,0.943386733531952,-0.322500854730606,-0.0722235888242722,0.944173574447632,-0.321434378623962,0.146908983588219,0.9289670586586,-0.339761674404144,-0.0720033943653107,0.942958772182465,-0.325029700994492,0.00277785561047494,0.943321168422699,-0.331869840621948,-0.0721734538674355,0.943897724151611,-0.322254866361618,-0.0773164629936218,0.943092703819275,-0.323416829109192,-0.204866901040077,0.914299786090851,-0.349407285451889,0.00202478072606027,0.941465139389038,-0.337104320526123,-0.0720110237598419,0.94300103187561,-0.324905604124069,-0.169327810406685,0.936866998672485,-0.305954784154892,-0.170140758156776,0.928880870342255,-0.328987032175064,-0.0719102025032043,0.942442238330841,-0.326544970273972,-0.208069413900375,0.921099960803986,-0.329062253236771,0.0836137533187866,0.993163347244263,0.0814579576253891,-0.0888768211007118,0.993810892105103,0.0666400641202927,0.127506420016289,0.988200008869171,0.0848698243498802,0.0790051147341728,0.990591168403625,0.111747577786446,-0.0978569760918617,0.992335081100464,0.0754663124680519,-0.0891463756561279,0.993012368679047,0.0773267522454262,0.127337768673897,0.989215910434723,0.0723676756024361,-0.089611642062664,0.991261959075928,0.0967964455485344,-0.00977841205894947,0.996046662330627,0.0882919207215309,-0.0890809074044228,0.99321973323822,0.0746942535042763,-0.0972503125667572,0.992600679397583,0.0727064982056618,-0.236369103193283,0.970928490161896,0.0377837270498276,-0.0113443797454238,0.996839821338654,0.0786236003041267,-0.0895301327109337,0.99160623550415,0.0932821035385132,-0.191209197044373,0.975183486938477,0.111607797443867,-0.194181978702545,0.978795170783997,0.0652190297842026,-0.0889834985136986,0.993512094020844,0.0708217620849609,-0.239532187581062,0.968872427940369,0.0625349506735802,0.238039448857307,-0.887237966060638,-0.395153194665909,
  1404. 0.0661139115691185,-0.91467297077179,-0.398751109838486,0.29154708981514,-0.872781932353973,-0.39147424697876,0.235525041818619,-0.87786602973938,-0.416988551616669,0.0622718185186386,-0.913550138473511,-0.401930838823318,0.0661692768335342,-0.913066685199738,-0.402406275272369,0.289079904556274,-0.890726923942566,-0.350768327713013,0.0661324486136436,-0.914140403270721,-0.399967551231384,0.141692161560059,-0.911658883094788,-0.385747849941254,0.0661560446023941,-0.913454651832581,-0.40152707695961,0.0624520406126976,-0.913953363895416,-0.40098512172699,-0.0755144581198692,-0.923197865486145,-0.376833289861679,0.140584751963615,-0.913854002952576,-0.380929052829742,0.0661390721797943,-0.913948476314545,-0.400404572486877,-0.0279438681900501,-0.906393051147461,-0.421510010957718,-0.0306166782975197,-0.916402995586395,-0.399084061384201,0.0661023184657097,-0.91500324010849,-0.397994428873062,-0.077361211180687,-0.91400009393692,-0.398270189762115,0.11046390235424,0.685933232307434,0.719231069087982,-0.0650707557797432,0.686401665210724,0.724305629730225,0.164433047175407,0.681475222110748,0.713129222393036,0.109904177486897,0.677421152591705,0.72733873128891,-0.0692029744386673,0.692493915557861,0.718096911907196,-0.0657372251152992,0.692414581775665,0.718498885631561,0.159272849559784,0.713621735572815,0.682184875011444,-0.0649877786636353,0.685652554035187,0.725022196769714,0.00351126492023468,0.698121666908264,0.715970575809479,-0.0657818391919136,0.69281679391861,0.718107044696808,-0.0691314488649368,0.692963182926178,0.717650949954987,-0.206441909074783,0.692065417766571,0.691684305667877,0.00219058990478516,0.701515376567841,0.712650954723358,-0.0649523586034775,0.685332775115967,0.725327670574188,-0.160102665424347,0.656420946121216,0.737210154533386,-0.1663478910923,0.682026386260986,0.712157607078552,-0.0660089626908302,0.694864213466644,0.716105163097382,-0.206777721643448,0.674785852432251,0.708453953266144,0.101256847381592,0.546735823154449,-0.831160008907318,-0.0731504335999489,0.530896306037903,-0.844273746013641,
  1405. 0.145918935537338,0.548093259334564,-0.823590636253357,0.0991215407848358,0.556643307209015,-0.824817061424255,-0.0701296105980873,0.524584710597992,-0.848464906215668,-0.0726844072341919,0.523975372314453,-0.848626434803009,0.146706089377403,0.511663734912872,-0.84656810760498,-0.0732115507125854,0.531806826591492,-0.843695223331451,0.00216621509753168,0.527811408042908,-0.849358797073364,-0.0727387368679047,0.524780333042145,-0.848124206066132,-0.0703749358654022,0.525404810905457,-0.847936987876892,-0.207811549305916,0.483574122190475,-0.850276708602905,0.00140330905560404,0.52313643693924,-0.852247774600983,-0.0732248425483704,0.53200489282608,-0.843569219112396,-0.172981202602386,0.539129793643951,-0.824267268180847,-0.173866793513298,0.517729580402374,-0.837691128253937,-0.0731091424822807,0.530281543731689,-0.844663560390472,-0.212724924087524,0.511372864246368,-0.832613885402679,0.0824778750538826,0.834692358970642,-0.544505417346954,-0.0897675231099129,0.825763583183289,-0.556827008724213,0.133251562714577,0.832539021968842,-0.537701487541199,0.080647237598896,0.841188251972198,-0.53469455242157,-0.093435063958168,0.820569515228271,-0.563857734203339,-0.0895875692367554,0.821311414241791,-0.563401818275452,0.13262277841568,0.807460010051727,-0.574821293354034,-0.0897661447525024,0.825729131698608,-0.556878268718719,-0.0155704002827406,0.824233829975128,-0.566035509109497,-0.0895796120166779,0.82111668586731,-0.563686907291412,-0.0933381244540215,0.820327877998352,-0.564225435256958,-0.236530378460884,0.780674040317535,-0.57844740152359,-0.0165026932954788,0.820988297462463,-0.570706605911255,-0.0897648632526398,0.825697124004364,-0.556926012039185,-0.192227303981781,0.824502110481262,-0.532207667827606,-0.194380402565002,0.804004073143005,-0.561955273151398,-0.0894917100667953,0.818974673748016,-0.566808342933655,-0.239729478955269,0.794578731060028,-0.557830095291138,0.240600556135178,-0.938643872737885,0.247101247310638,0.0682267993688583,-0.962755978107452,0.261621832847595,0.289235591888428,-0.926299035549164,0.241480425000191,
  1406. 0.238008931279182,-0.945095300674438,0.223934426903725,0.0629779249429703,-0.963970184326172,0.258447855710983,0.0683046281337738,-0.963854312896729,0.257525414228439,0.286810249090195,-0.914919078350067,0.284012258052826,0.0682431608438492,-0.962986886501312,0.260766714811325,0.141912281513214,-0.952333629131317,0.270039916038513,0.0682881623506546,-0.963621854782104,0.258398473262787,0.0631523430347443,-0.963697791099548,0.259419441223145,-0.0752457976341248,-0.955826818943024,0.284135907888412,0.140817746520042,-0.951019704341888,0.275194555521011,0.0682488009333611,-0.963066458702087,0.26047095656395,-0.02657325938344,-0.970616698265076,0.239159345626831,-0.0291779078543186,-0.964463293552399,0.262601166963577,0.0682093948125839,-0.962510347366333,0.262528717517853,-0.0770847722887993,-0.962060451507568,0.261720567941666,0.153878971934319,0.801452994346619,0.577922582626343,-0.0128518445417285,0.816092073917389,0.577779114246368,0.207589000463486,0.791777312755585,0.574452340602875,0.151427417993546,0.788684487342834,0.595857799053192,-0.0209043826907873,0.815092623233795,0.578953385353088,-0.0128253903239965,0.814412295818329,0.580144882202148,0.206015810370445,0.811300873756409,0.547127306461334,-0.0127555727958679,0.809978842735291,0.586320400238037,0.0635373517870903,0.815012574195862,0.575949311256409,-0.0128314904868603,0.814799606800079,0.579600691795349,-0.0207473319023848,0.815596520900726,0.578248858451843,-0.153656959533691,0.821006298065186,0.549852967262268,0.0623331442475319,0.818512916564941,0.571096539497375,-0.0127569353207946,0.810065388679504,0.586200952529907,-0.121468238532543,0.789272010326386,0.601909577846527,-0.12447115778923,0.806821525096893,0.577534377574921,-0.0128001980483532,0.812812566757202,0.582384645938873,-0.156228110194206,0.803236842155457,0.574807345867157,-0.1574776917696,-0.246613562107086,0.956233561038971,0.0133871957659721,-0.240794017910957,0.970483958721161,-0.207117930054665,-0.246946081519127,0.946636140346527,-0.155457884073257,-0.262606531381607,0.952297568321228,
  1407. 0.0202401485294104,-0.236701443791389,0.971371650695801,0.0134218018501997,-0.237849652767181,0.971209287643433,-0.2049390822649,-0.202513694763184,0.957594990730286,0.0134033635258675,-0.239419981837273,0.970823585987091,-0.0558503046631813,-0.228985086083412,0.971826374530792,0.0134263494983315,-0.237461805343628,0.971304059028625,0.0201352909207344,-0.236149400472641,0.971508145332336,0.157781451940537,-0.206725150346756,0.965592980384827,-0.0547865629196167,-0.223863631486893,0.973079383373261,0.0134037863463163,-0.239384040236473,0.970832407474518,0.110894769430161,-0.259558469057083,0.959339320659637,0.113858170807362,-0.231110200285912,0.966242492198944,0.0134771168231964,-0.233116820454597,0.972355365753174,0.159936130046844,-0.229390054941177,0.960104525089264,0.157519459724426,-0.956312954425812,-0.246278509497643,-0.0133912079036236,-0.970568299293518,-0.24045330286026,0.207103133201599,-0.946725904941559,-0.246613770723343,0.155481994152069,-0.952345609664917,-0.26241809129715,-0.0202042665332556,-0.97141832113266,-0.236512541770935,-0.0134240919724107,-0.971257030963898,-0.237654313445091,0.204918801784515,-0.957679271697998,-0.202135697007179,-0.0134079921990633,-0.970920562744141,-0.239026114344597,0.0557713583111763,-0.971920430660248,-0.228604942560196,-0.0134223774075508,-0.971221327781677,-0.237800553441048,-0.0201972797513008,-0.971427440643311,-0.236475750803947,-0.157814174890518,-0.965515077114105,-0.207063585519791,0.0547011941671371,-0.973178744316101,-0.223452687263489,-0.0134088527411222,-0.970938563346863,-0.238952919840813,-0.110939547419548,-0.959448039531708,-0.259137153625488,-0.113449081778526,-0.965326070785522,-0.235106393694878,-0.0134313087910414,-0.971407353878021,-0.237038597464561,-0.160306885838509,-0.959082365036011,-0.233372583985329,0.157207354903221,0.151522725820541,-0.975872278213501,-0.0144464671611786,0.14418825507164,-0.98944479227066,0.205960929393768,0.15280570089817,-0.966556072235107,0.155656158924103,0.164333119988441,-0.974046170711517,-0.0173065457493067,0.137118339538574,-0.990403473377228,
  1408. -0.0145131722092628,0.137592285871506,-0.990382611751556,0.203746289014816,0.102649919688702,-0.97362756729126,-0.0145084438845515,0.13806226849556,-0.990317285060883,0.0575694479048252,0.127109810709953,-0.990216612815857,-0.0145203992724419,0.136873528361321,-0.990482151508331,-0.0171644352376461,0.136350706219673,-0.990512013435364,-0.160239025950432,0.10653392970562,-0.981312394142151,0.0570497065782547,0.124473489820957,-0.990581572055817,-0.0144796725362539,0.140913680195808,-0.98991596698761,-0.111639678478241,0.162054404616356,-0.980446398258209,-0.114357203245163,0.134063199162483,-0.98435240983963,-0.0145349241793156,0.135426223278046,-0.990680813789368,-0.162437662482262,0.132917195558548,-0.977725446224213,0.156481489539146,-0.910623610019684,-0.382463544607162,-0.011588872410357,-0.925355315208435,-0.378923982381821,0.208970800042152,-0.900518357753754,-0.381310969591141,0.154013127088547,-0.902630984783173,-0.401917159557343,-0.0151045918464661,-0.924828231334686,-0.380085051059723,-0.0115640088915825,-0.924643576145172,-0.380658060312271,0.206724986433983,-0.91692042350769,-0.341352999210358,-0.011574624106288,-0.924947679042816,-0.379918217658997,0.062402069568634,-0.927354216575623,-0.368944823741913,-0.0115725873038173,-0.924889326095581,-0.380060225725174,-0.0149728450924158,-0.925101935863495,-0.379423528909683,-0.15824843943119,-0.923894882202148,-0.348390102386475,0.0611671507358551,-0.92968761920929,-0.363234728574753,-0.0115824090316892,-0.925170421600342,-0.379375129938126,-0.119004726409912,-0.909038782119751,-0.399357587099075,-0.122029982507229,-0.920247197151184,-0.371824949979782,-0.011643492616713,-0.926911473274231,-0.375099420547485,-0.160102471709251,-0.915286600589752,-0.369618147611618,0.156649053096771,-0.911159455776215,-0.381116092205048,-0.0116077130660415,-0.925893187522888,-0.377606928348541,0.208900973200798,-0.901102542877197,-0.379966467618942,0.154324516654015,-0.903649210929871,-0.399502545595169,-0.0146311149001122,-0.925809562206268,-0.377707064151764,-0.0115992752835155,-0.92565244436264,-0.378196984529495,
  1409. 0.206840232014656,-0.916181027889252,-0.343262881040573,-0.0115479556843638,-0.924182891845703,-0.381775557994843,0.0627983808517456,-0.926596522331238,-0.370776623487473,-0.0116094769909978,-0.925943553447723,-0.377483636140823,-0.0144794881343842,-0.926122426986694,-0.376945108175278,-0.158020794391632,-0.924893140792847,-0.345835417509079,0.0616184175014496,-0.92883974313736,-0.365321666002274,-0.0115511259064078,-0.92427396774292,-0.381555020809174,-0.118766367435455,-0.90813821554184,-0.401471734046936,-0.122029453516006,-0.920245289802551,-0.371829867362976,-0.0116434134542942,-0.926909208297729,-0.375105023384094,-0.160102859139442,-0.915284752845764,-0.369622737169266,0.113198421895504,0.787012815475464,-0.606462776660919,-0.0127370022237301,0.808799624443054,-0.587946355342865,-0.0514437854290009,0.812792062759399,-0.580278038978577,0.115565836429596,0.795408189296722,-0.594954073429108,0.182609617710114,0.782656490802765,-0.595065236091614,-0.0127461198717356,0.809378564357758,-0.587148904800415,-0.0517720356583595,0.811870515346527,-0.581537544727325,-0.0127290422096848,0.808294177055359,-0.588641345500946,-0.187133610248566,0.814228534698486,-0.549557030200958,-0.012732021510601,0.808483362197876,-0.588381350040436,0.181584790349007,0.808972358703613,-0.559098124504089,0.0865303725004196,0.812663197517395,-0.576273381710052,-0.189145386219025,0.794866025447845,-0.576551973819733,-0.0127799082547426,0.811524152755737,-0.584179103374481,-0.0921785160899162,0.807203054428101,-0.583032071590424,-0.0900573134422302,0.79648756980896,-0.597910702228546,-0.0127344522625208,0.808637738227844,-0.588169157505035,0.0853800475597382,0.816804528236389,-0.570561707019806,0.158230513334274,-0.905937075614929,-0.392735421657562,-0.0114388661459088,-0.92102986574173,-0.389323830604553,0.209486365318298,-0.896016836166382,-0.391496121883392,0.156383916735649,-0.8994961977005,-0.407983660697937,-0.0162712391465902,-0.922382235527039,-0.385935455560684,-0.0114767802879214,-0.922130167484283,-0.38670939207077,0.207167685031891,-0.914028286933899,-0.348760664463043,
  1410. -0.0114651443436742,-0.921793043613434,-0.387512922286987,0.0567853190004826,-0.92427921295166,-0.377469897270203,-0.0114815896376967,-0.922269463539124,-0.386377036571503,-0.0161836184561253,-0.922567367553711,-0.385496526956558,-0.161504402756691,-0.92125391960144,-0.353846788406372,0.0557035207748413,-0.926339507102966,-0.372548311948776,-0.0114675667136908,-0.921863317489624,-0.38734570145607,-0.11340207606554,-0.906675636768341,-0.406299769878387,-0.116148769855499,-0.918222427368164,-0.378651559352875,-0.0115488031879067,-0.924207270145416,-0.381716579198837,-0.16357909142971,-0.912123203277588,-0.37586322426796,0.0998281687498093,0.281708091497421,0.954292953014374,-0.074875146150589,0.272858142852783,0.959136188030243,0.153618112206459,0.282705545425415,0.946825861930847,0.099780447781086,0.27035728096962,0.957575559616089,-0.0777355059981346,0.280787795782089,0.956616640090942,-0.0758430808782578,0.280722975730896,0.956787586212158,0.146702244877815,0.325295627117157,0.934163331985474,-0.0747775658965111,0.272066473960876,0.959368586540222,-0.00208588666282594,0.291231006383896,0.956650495529175,-0.0759051367640495,0.281228005886078,0.956634402275085,-0.0776941850781441,0.281338661909103,0.956458210945129,-0.220908060669899,0.287240564823151,0.932036757469177,-0.00372616900131106,0.296144872903824,0.955135762691498,-0.074735976755619,0.271729171276093,0.959467470645905,-0.169844686985016,0.236360222101212,0.956706166267395,-0.177308276295662,0.270447850227356,0.946266174316406,-0.0762655884027481,0.284163177013397,0.955737948417664,-0.220301881432533,0.263659626245499,0.939122319221497,0.059923343360424,0.87140941619873,-0.48688280582428,-0.107545748353004,0.856495201587677,-0.504826605319977,0.114635705947876,0.870878517627716,-0.477942764759064,0.0576576329767704,0.876831412315369,-0.477328300476074,-0.110047101974487,0.851669907569885,-0.512394547462463,-0.106879889965057,0.852388560771942,-0.511869549751282,0.116479605436325,0.848826229572296,-0.515680730342865,-0.10763668268919,0.857054948806763,-0.503856241703033,
  1411. -0.0335159823298454,0.859141886234283,-0.51063871383667,-0.106957666575909,0.852868854999542,-0.51105272769928,-0.110268391668797,0.85206550359726,-0.511688828468323,-0.235647767782211,0.813714802265167,-0.531355202198029,-0.0341575145721436,0.856340646743774,-0.515280604362488,-0.107655301690102,0.857169508934021,-0.503657460212708,-0.209272444248199,0.850380659103394,-0.482760578393936,-0.209636762738228,0.837296605110168,-0.504962205886841,-0.107488311827183,0.856141448020935,-0.505438506603241,-0.241171479225159,0.829535961151123,-0.503692984580994,0.0397176668047905,0.99428528547287,-0.0990926250815392,-0.131060272455215,0.984798908233643,-0.113993093371391,0.0943921506404877,0.991117596626282,-0.0936808213591576,0.0359721966087818,0.996508121490479,-0.0753500163555145,-0.136695295572281,0.984422564506531,-0.110574141144753,-0.13119812309742,0.985291063785553,-0.109492972493172,0.0938982218503952,0.98593133687973,-0.138284534215927,-0.13107068836689,0.984836399555206,-0.113656207919121,-0.0514152944087982,0.991057336330414,-0.123134128749371,-0.13117341697216,0.985203623771667,-0.110305719077587,-0.136488437652588,0.984347462654114,-0.111495077610016,-0.276560395956039,0.950458168983459,-0.141928344964981,-0.0523384921252728,0.990253984928131,-0.12906476855278,-0.131073385477066,0.984846174716949,-0.11356908082962,-0.228194788098335,0.969145536422729,-0.093188501894474,-0.229489147663116,0.966215491294861,-0.117313139140606,-0.131029307842255,0.984686851501465,-0.114992052316666,-0.279649376869202,0.952816724777222,-0.118053376674652,0.274408727884293,-0.937705516815186,-0.213092252612114,0.106947258114815,-0.971558213233948,-0.211274445056915,0.324358433485031,-0.92177939414978,-0.212401375174522,0.271625548601151,-0.932972252368927,-0.236183032393456,0.106193646788597,-0.970760464668274,-0.215283691883087,0.10698427259922,-0.970648348331451,-0.215397492051125,0.322457909584045,-0.931235373020172,-0.169769302010536,0.106955498456955,-0.971361100673676,-0.212174773216248,0.18146376311779,-0.963087439537048,-0.198830842971802,
  1412. 0.106976486742496,-0.970845222473145,-0.214512288570404,0.106360465288162,-0.970936059951782,-0.214407548308373,-0.0320705361664295,-0.98147177696228,-0.188904017210007,0.180393174290657,-0.964356899261475,-0.193582788109779,0.106958322227001,-0.971292853355408,-0.212485536932945,0.00705201737582684,-0.971727311611176,-0.236000716686249,0.00459875585511327,-0.977433741092682,-0.211192563176155,0.106938913464546,-0.97175520658493,-0.210371285676956,-0.0339208543300629,-0.976913034915924,-0.210927397012711,-0.157291799783707,-0.974305987358093,-0.161205261945724,0.0143418507650495,-0.987905144691467,-0.154395326972008,-0.207577273249626,-0.964658856391907,-0.162311151623726,-0.154729664325714,-0.970801532268524,-0.183311522006989,0.0207986123859882,-0.987542450428009,-0.155972555279732,0.014314123429358,-0.987483263015747,-0.157072886824608,-0.205978840589523,-0.969997048377991,-0.129145070910454,0.0142309339717031,-0.986184239387512,-0.16503980755806,-0.0639404281973839,-0.986118912696838,-0.153236031532288,0.0143355140462518,-0.987809181213379,-0.155008181929588,0.0203975103795528,-0.987890303134918,-0.153807774186134,0.155164301395416,-0.979877829551697,-0.12555256485939,-0.0627284422516823,-0.987100005149841,-0.147304862737656,0.0142312096431851,-0.986188650131226,-0.165013641119003,0.117656052112579,-0.975246787071228,-0.18721878528595,0.121671006083488,-0.981520235538483,-0.147696703672409,0.014392807148397,-0.988665461540222,-0.149444460868835,0.157068580389023,-0.976625800132751,-0.146736308932304,0.163575977087021,-0.203927427530289,-0.965223670005798,-0.0170755367726088,-0.216188549995422,-0.976202368736267,0.208468660712242,-0.199759468436241,-0.957411646842957,0.161522716283798,-0.187190189957619,-0.968953192234039,-0.0235739201307297,-0.220629200339317,-0.975072860717773,-0.0170903448015451,-0.219587713479996,-0.975443065166473,0.20628733932972,-0.244725823402405,-0.947393715381622,-0.017078535631299,-0.216873198747635,-0.97605037689209,0.0520690381526947,-0.226707890629768,-0.972570061683655,-0.0170924495905638,-0.220074489712715,-0.975333333015442,
  1413. -0.0234520807862282,-0.221269726753235,-0.974930644035339,-0.15670670568943,-0.244200766086578,-0.956979155540466,0.0510610528290272,-0.231571838259697,-0.971476852893829,-0.017077449709177,-0.216625109314919,-0.976105451583862,-0.108308330178261,-0.194921582937241,-0.974820494651794,-0.111084938049316,-0.222883582115173,-0.96849524974823,-0.0171082373708487,-0.223755732178688,-0.974495112895966,-0.15869277715683,-0.221676304936409,-0.962120711803436,-0.163619413971901,0.965140581130981,-0.204285204410553,0.0170771386474371,0.976121246814728,-0.216554269194603,-0.208453014492989,0.957339763641357,-0.200119704008102,-0.161545410752296,0.968913972377777,-0.187373355031013,0.0235389992594719,0.975032210350037,-0.220812827348709,0.0170911643654108,0.975400388240814,-0.219777077436447,-0.206267818808556,0.947304010391235,-0.24508960545063,0.0170802138745785,0.975964963436127,-0.217257082462311,-0.0519923940300941,0.972487688064575,-0.22707810997963,0.0170933846384287,0.975284576416016,-0.220290705561638,0.0234124157577753,0.974884331226349,-0.221478283405304,0.156687766313553,0.956928789615631,-0.244410380721092,-0.0509771332144737,0.971384763717651,-0.231976225972176,0.0170793104916811,0.976010918617249,-0.217050656676292,0.108350321650505,0.974732220172882,-0.195339024066925,0.111135631799698,0.968370199203491,-0.22340115904808,0.0171104539185762,0.974375128746033,-0.224277392029762,0.158648312091827,0.962008833885193,-0.222192898392677,-0.15329697728157,0.298748701810837,0.941939175128937,0.0174136646091938,0.311100542545319,0.950217425823212,-0.202977120876312,0.29341122508049,0.93418961763382,-0.151845082640648,0.286947041749954,0.945835411548615,0.0222928561270237,0.318561553955078,0.947640001773834,0.0174314901232719,0.317812949419022,0.947993159294128,-0.200815290212631,0.340904325246811,0.918399393558502,0.0174278076738119,0.316399842500687,0.948465824127197,-0.0587711967527866,0.326744198799133,0.94328373670578,0.0174334589391947,0.318573653697968,0.947737753391266,0.0221254397183657,0.319422036409378,0.947354197502136,
  1414. 0.162158757448196,0.341392517089844,0.925827026367188,-0.0582260191440582,0.329341918230057,0.942413747310638,0.0174199584871531,0.313434630632401,0.949449956417084,0.112333469092846,0.290765345096588,0.950177192687988,0.11504539847374,0.317752152681351,0.941168487071991,0.0174355059862137,0.319369286298752,0.947469890117645,0.164368703961372,0.315758854150772,0.934494137763977,0.113113634288311,0.0937338620424271,0.989150822162628,-0.00678814109414816,0.067791260778904,0.997676432132721,-0.0450775548815727,0.0592861473560333,0.997222781181335,0.115301437675953,0.0794287547469139,0.990149796009064,0.182958766818047,0.0863812193274498,0.979318380355835,-0.00681595923379064,0.0660820156335831,0.997790932655334,-0.0453896336257458,0.0607344210147858,0.997121453285217,-0.00677585368975997,0.0685457736253738,0.997624933719635,-0.192269146442413,0.0300178602337837,0.980883121490479,-0.00680927140638232,0.0664931088685989,0.997763633728027,0.182104855775833,0.0421087890863419,0.982377052307129,0.0809701308608055,0.0554627738893032,0.995172202587128,-0.194640174508095,0.0645402148365974,0.978749096393585,-0.00688290596008301,0.0619629137217999,0.998054802417755,-0.10404410213232,0.0635737925767899,0.992538869380951,-0.101627290248871,0.0838923677802086,0.991278946399689,-0.00681944750249386,0.0658675953745842,0.997805058956146,0.079891063272953,0.0488539412617683,0.995605707168579,-0.150506228208542,0.986394345760345,-0.0661362335085869,0.0162963829934597,0.997002303600311,-0.0756359100341797,-0.210428699851036,0.975628435611725,-0.0622018501162529,-0.147988319396973,0.987979233264923,-0.0446822009980679,0.01837451569736,0.997122168540955,-0.0735510364174843,0.0162800699472427,0.9971843957901,-0.0732001140713692,-0.20848149061203,0.972646772861481,-0.1024389564991,0.0162621289491653,0.997376620769501,-0.0705369189381599,-0.0642541646957397,0.994525372982025,-0.0824057161808014,0.01628577709198,0.997121512889862,-0.0740505456924438,0.018211392685771,0.997060179710388,-0.0744268000125885,0.157757759094238,0.982303202152252,-0.10096076130867,
  1415. -0.0630028247833252,0.994065701961517,-0.0886794030666351,0.0162634402513504,0.997362852096558,-0.0707312747836113,0.116414994001389,0.992071509361267,-0.0473480448126793,0.119415804743767,0.989907801151276,-0.0763046890497208,0.0163011029362679,0.99694836139679,-0.076343446969986,0.159869506955147,0.984203279018402,-0.0760644003748894,0.161581099033356,0.874586760997772,0.457153648138046,-0.0104372343048453,0.890346348285675,0.455164164304733,0.202283218502998,0.86689817905426,0.455597460269928,0.158836245536804,0.86421149969101,0.477398663759232,-0.0164004862308502,0.889317452907562,0.456996232271194,-0.0103929946199059,0.888923764228821,0.457937270402908,0.200408905744553,0.884591817855835,0.421110033988953,-0.0103820683434606,0.888571619987488,0.458620607852936,0.0546280220150948,0.891710758209229,0.44929713010788,-0.0104028386995196,0.889240801334381,0.457321107387543,-0.0162436775863171,0.889697790145874,0.456260859966278,-0.157373741269112,0.891094386577606,0.425657361745834,0.0535284541547298,0.894251942634583,0.444351494312286,-0.0103913983330131,0.88887232542038,0.458037197589874,-0.116295173764229,0.871512055397034,0.476384460926056,-0.119115263223648,0.884773194789886,0.450541973114014,-0.0104522434994578,0.890827834606171,0.454220801591873,-0.159561038017273,0.879791021347046,0.447781294584274,0.164936348795891,-0.984608888626099,0.0578041523694992,-0.0162453521043062,-0.997548818588257,0.068061925470829,0.210746869444847,-0.976000607013702,0.054850947111845,0.161995247006416,-0.986247062683105,0.0327790379524231,-0.0200855564326048,-0.997724890708923,0.064356729388237,-0.0162156000733376,-0.997836947441101,0.0637073218822479,0.209197044372559,-0.973863363265991,0.0884691253304482,-0.0161646958440542,-0.998279809951782,0.056356567889452,0.0587078779935837,-0.995999395847321,0.0673686861991882,-0.0162292513996363,-0.997707426548004,0.065700076520443,-0.0197090823203325,-0.997599720954895,0.0663810148835182,-0.157743096351624,-0.983114659786224,0.0927520170807838,0.0575630962848663,-0.995674610137939,0.0729298815131187,
  1416. -0.0161633621901274,-0.998290717601776,0.0561655201017857,-0.113777294754982,-0.992943346500397,0.0334410108625889,-0.117239825427532,-0.990672469139099,0.0694465041160584,-0.0162543300539255,-0.997457504272461,0.0693850070238113,-0.159889474511147,-0.984702527523041,0.0692567974328995,0.107210606336594,-0.0887895300984383,0.990263819694519,-0.0636622831225395,-0.0921890959143639,0.993704378604889,0.160599142313004,-0.087175227701664,0.983162462711334,0.106735236942768,-0.10014870762825,0.989230990409851,-0.0730006396770477,-0.0831467881798744,0.993859887123108,-0.064358115196228,-0.0840319693088531,0.994382560253143,0.155568152666092,-0.0434701219201088,0.98686820268631,-0.0635968819260597,-0.0929529219865799,0.993637442588806,0.00534380506724119,-0.0778191387653351,0.996953189373016,-0.0644025728106499,-0.0835088863968849,0.994423747062683,-0.0729150772094727,-0.0823910534381866,0.993929207324982,-0.206769615411758,-0.0639061108231544,0.976300358772278,0.00397979421541095,-0.0729467943310738,0.997327983379364,-0.0635689124464989,-0.0932794436812401,0.99360865354538,-0.155777797102928,-0.120432063937187,0.980423152446747,-0.16189569234848,-0.0857264772057533,0.983077228069305,-0.0646681562066078,-0.0803791433572769,0.994664371013641,-0.207136556506157,-0.0879589915275574,0.974349915981293,0.0980872362852097,0.985681474208832,-0.137153550982475,-0.0707010179758072,0.985057950019836,-0.157041817903519,0.145291432738304,0.980702996253967,-0.130813792347908,0.0960255414247513,0.98738956451416,-0.125860899686813,-0.0729454606771469,0.983522772789001,-0.165414750576019,-0.070232667028904,0.983820796012878,-0.164815247058868,0.146016672253609,0.973996818065643,-0.173231825232506,-0.070735402405262,0.985146820545197,-0.156467840075493,0.00151082663796842,0.986638963222504,-0.162914857268333,-0.0702078714966774,0.983753979206085,-0.165224567055702,-0.0728273093700409,0.98345273733139,-0.16588206589222,-0.20363774895668,0.958958089351654,-0.197310000658035,0.000762829440645874,0.985735654830933,-0.168299451470375,-0.0707370787858963,0.985151171684265,-0.156440079212189,
  1417. -0.172675788402557,0.975265443325043,-0.137987524271011,-0.173965781927109,0.969286501407623,-0.173838317394257,-0.0699976906180382,0.983181536197662,-0.168684348464012,-0.207012265920639,0.962543427944183,-0.175089254975319,0.0833347216248512,0.963959813117981,0.252659797668457,-0.0881079807877541,0.967190980911255,0.238282561302185,0.13375535607338,0.957514643669128,0.255489975214005,0.0786470100283623,0.956186890602112,0.281995475292206,-0.0973688811063766,0.964177489280701,0.246740907430649,-0.0883948504924774,0.964526236057281,0.248748078942299,0.133563131093979,0.960998117923737,0.242164179682732,-0.0888823717832565,0.959477365016937,0.267400830984116,-0.0144798047840595,0.965390026569366,0.260408133268356,-0.0883262902498245,0.965182065963745,0.246215343475342,-0.0967719405889511,0.964914083480835,0.244081988930702,-0.232093259692192,0.95039838552475,0.207064494490623,-0.0159848351031542,0.967756927013397,0.251378625631332,-0.0887942090630531,0.960443615913391,0.263938903808594,-0.187640771269798,0.941848933696747,0.278768181800842,-0.190305382013321,0.953296363353729,0.234542012214661,-0.0882196575403214,0.966178297996521,0.242315530776978,-0.235033705830574,0.944313406944275,0.230285316705704,0.242232412099838,-0.804176926612854,-0.542791783809662,0.0696701109409332,-0.83125114440918,-0.551513910293579,0.291991144418716,-0.791424810886383,-0.537017703056335,0.241002529859543,-0.797798097133636,-0.55266261100769,0.0661510825157166,-0.836273372173309,-0.544307768344879,0.0695052072405815,-0.835791051387787,-0.544630646705627,0.28955864906311,-0.816207230091095,-0.499961614608765,0.0696821287274361,-0.830913305282593,-0.552021503448486,0.146501690149307,-0.830661714076996,-0.537157714366913,0.069525234401226,-0.835249304771423,-0.545458436012268,0.0659999549388886,-0.835813164710999,-0.545032620429993,-0.0741335302591324,-0.849405169487,-0.522508323192596,0.145312488079071,-0.833872079849243,-0.532486379146576,0.0696858167648315,-0.830808997154236,-0.552177846431732,-0.0305758118629456,-0.81901490688324,-0.572956919670105,
  1418. -0.0332952067255974,-0.833106875419617,-0.552108943462372,0.0696504190564156,-0.831803500652313,-0.550683200359344,-0.076630562543869,-0.831008791923523,-0.550955653190613
  1419. }
  1420. BinormalsW: *2199 {
  1421. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1422. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1423. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1424. }
  1425. }
  1426. LayerElementTangent: 0 {
  1427. Version: 102
  1428. Name: "UVmap_0"
  1429. MappingInformationType: "ByPolygonVertex"
  1430. ReferenceInformationType: "Direct"
  1431. Tangents: *6597 {
  1432. a: 0.178649827837944,-0.127284482121468,-0.975644886493683,0.0700849890708923,-0.150393769145012,-0.986138939857483,0.369944751262665,-0.0845292285084724,-0.925200462341309,-0.260775417089462,0.424418538808823,-0.867101550102234,-0.060684509575367,0.476419448852539,-0.877121388912201,0.0224983375519514,0.504774510860443,-0.862958014011383,0.11102369427681,-0.365873843431473,-0.924018442630768,0.360851734876633,-0.311095535755157,-0.879207372665405,0.355055451393127,-0.321772366762161,-0.877723276615143,-0.259980916976929,0.421183079481125,-0.868915855884552,-0.298996806144714,0.40945902466774,-0.861942112445831,-0.0596236549317837,0.471683323383331,-0.879749894142151,-0.189316034317017,0.395424783229828,-0.898776233196259,-0.0518161840736866,0.436637133359909,-0.898144245147705,-0.292459487915039,0.374099403619766,-0.880066514015198,-0.289323061704636,0.357784390449524,-0.887852728366852,-0.308755457401276,0.351024001836777,-0.883997857570648,-0.186944380402565,0.37673631310463,-0.907260596752167,0.322618097066879,0.0339873656630516,-0.945918798446655,0.0456262938678265,-0.0265854764729738,-0.998604774475098,0.117084212601185,0.0198708958923817,-0.992923200130463,-0.181055903434753,0.332179099321365,-0.925675868988037,0.0729582533240318,0.3680320084095,-0.926946461200714,-0.0333025902509689,0.352243959903717,-0.935315549373627,0.087866373360157,0.263555198907852,-0.960634231567383,0.235915586352348,0.273631632328033,-0.932453513145447,0.267832458019257,0.289291024208069,-0.919008433818817,0.245179444551468,0.490625858306885,-0.836165845394135,0.202726051211357,0.502175807952881,-0.840667486190796,0.209504321217537,0.482431650161743,-0.850510239601135,0.224211305379868,0.37993061542511,-0.897430777549744,0.402297794818878,0.373635232448578,-0.835794985294342,0.267318159341812,0.376009166240692,-0.887219309806824,0.401164770126343,0.464653849601746,-0.789407134056091,0.211940467357636,0.467086285352707,-0.858435571193695,0.14527316391468,0.480783462524414,-0.864721298217773,0.221628904342651,0.39986863732338,-0.889373779296875,
  1433. 0.069242037832737,0.392467796802521,-0.917155683040619,0.152585670351982,0.389619320631027,-0.908248007297516,0.14605601131916,0.472063630819321,-0.869381129741669,0.37284654378891,0.461261332035065,-0.805123388767242,0.401567786931992,0.452465176582336,-0.796252846717834,-0.18223711848259,0.34092503786087,-0.922257959842682,0.0132394758984447,0.370327591896057,-0.928806841373444,0.0716903507709503,0.376436471939087,-0.923664510250092,0.154326871037483,0.363778352737427,-0.91861230134964,0.0716060325503349,0.376992881298065,-0.923444092273712,0.0139122102409601,0.361750543117523,-0.932171106338501,-0.146249681711197,0.361581325531006,-0.920798659324646,0.0119188036769629,0.387032270431519,-0.921989142894745,-0.18368311226368,0.35175746679306,-0.917892813682556,-0.14752484858036,0.37222421169281,-0.916343569755554,-0.185667470097542,0.366861790418625,-0.911559104919434,-0.307335942983627,0.340900540351868,-0.888443291187286,0.0138799119740725,0.362163364887238,-0.932011306285858,0.0166695006191731,0.367416232824326,-0.929907321929932,0.154309064149857,0.364053547382355,-0.918506264686584,0.0119467778131366,0.386680334806442,-0.922136545181274,-0.14619292318821,0.361110329627991,-0.920992374420166,0.0149411913007498,0.382114112377167,-0.923994362354279,-0.307330250740051,0.340860426425934,-0.888460636138916,-0.161077380180359,0.363634407520294,-0.917509734630585,-0.14750948548317,0.372095346450806,-0.916398406028748,0.014382160268724,0.386840641498566,-0.922034442424774,-0.14678643643856,0.36604717373848,-0.918946802616119,-0.161986321210861,0.377271682024002,-0.911825954914093,-0.160565689206123,0.356147319078445,-0.920531213283539,-0.306435912847519,0.33459734916687,-0.891146242618561,-0.28726527094841,0.337264239788055,-0.896510720252991,-0.287306725978851,0.33817932009697,-0.896152675151825,-0.145826146006584,0.341527998447418,-0.928489804267883,-0.160582199692726,0.35638689994812,-0.920435607433319,-0.139813289046288,0.42356476187706,-0.895011246204376,0.0140467425808311,0.389670073986053,-0.920847415924072,-0.162317872047424,0.382361888885498,-0.909644186496735,
  1434. -0.145453497767448,0.347195208072662,-0.926444172859192,-0.287500828504562,0.342546910047531,-0.894429922103882,-0.203274607658386,0.344155877828598,-0.916643977165222,-0.19868215918541,0.38257971405983,-0.902307152748108,-0.00679231574758887,0.361981570720673,-0.932160615921021,-0.143380284309387,0.377154350280762,-0.914984524250031,-0.00453590555116534,0.391341149806976,-0.920234501361847,0.0150082092732191,0.38154661655426,-0.924227774143219,-0.142197996377945,0.393186032772064,-0.908396780490875,-0.00921975541859865,0.352008372545242,-0.935951471328735,-0.00907149631530046,0.359285145998001,-0.93318384885788,-0.143983960151672,0.36868804693222,-0.918334245681763,0.00585808651521802,0.413201302289963,-0.910620868206024,0.106550164520741,0.388373464345932,-0.915321290493011,-0.0026493591722101,0.404523223638535,-0.914523899555206,0.10538487881422,0.366882473230362,-0.924278795719147,0.0153648843988776,0.378522932529449,-0.925464391708374,-0.00709381839260459,0.373326003551483,-0.927673101425171,0.107486054301262,0.406297862529755,-0.907396733760834,0.00926792155951262,0.426790684461594,-0.904303073883057,0.200212195515633,0.389203310012817,-0.899130642414093,0.154001340270042,0.368770033121109,-0.916674554347992,0.0163437370210886,0.370196461677551,-0.928809702396393,0.105077505111694,0.379226565361023,-0.919318199157715,0.104250065982342,0.346722066402435,-0.932156503200531,0.105022877454758,0.379648983478546,-0.919150054454803,0.0162999220192432,0.370570093393326,-0.928661584854126,0.359312862157822,0.525451481342316,-0.771229565143585,0.137997180223465,0.553388893604279,-0.821411907672882,0.0825366526842117,0.535122752189636,-0.840732634067535,0.20530216395855,0.429118812084198,-0.879606783390045,0.259975373744965,0.418207556009293,-0.870353519916534,0.108977779746056,0.436320632696152,-0.893167495727539,0.100689701735973,0.412386685609818,-0.905427396297455,0.107777960598469,0.412023276090622,-0.904776751995087,0.260400950908661,0.414098113775253,-0.872189283370972,0.0877750292420387,0.501864433288574,-0.860481083393097,
  1435. 0.249001562595367,0.508331298828125,-0.824377059936523,0.364935547113419,0.500240683555603,-0.785226941108704,0.25586125254631,0.455184817314148,-0.852843344211578,0.210609212517738,0.47362294793129,-0.85517543554306,0.291518151760101,0.453634470701218,-0.842159688472748,0.29289910197258,0.444730907678604,-0.846418678760529,0.375701934099197,0.445976585149765,-0.812374889850616,0.257179141044617,0.443837463855743,-0.858409821987152,0.179388821125031,-0.70990777015686,-0.681065797805786,0.0700543224811554,-0.733102202415466,-0.676500976085663,0.368072748184204,-0.645691633224487,-0.669032692909241,-0.264343023300171,-0.212099194526672,-0.940817058086395,-0.0556612387299538,-0.177541941404343,-0.982537865638733,0.0232075788080692,-0.14643719792366,-0.988947808742523,0.109491489827633,-0.863390266895294,-0.492512792348862,0.361242115497589,-0.79298335313797,-0.490593284368515,0.353750377893448,-0.800718426704407,-0.483436316251755,-0.26346880197525,-0.216229856014252,-0.940121710300446,-0.297264903783798,-0.22007055580616,-0.929086923599243,-0.0545305460691452,-0.18340764939785,-0.981523334980011,-0.190065145492554,-0.254344463348389,-0.948253214359283,-0.0469016209244728,-0.222542464733124,-0.973794162273407,-0.290906667709351,-0.259192675352097,-0.920973658561707,-0.287830710411072,-0.276997059583664,-0.916747689247131,-0.306771337985992,-0.279631376266479,-0.909779012203217,-0.187679573893547,-0.274201273918152,-0.943180799484253,0.32340881228447,-0.565358281135559,-0.75879955291748,0.0463741309940815,-0.643430709838867,-0.764098405838013,0.122056074440479,-0.60557633638382,-0.786371171474457,-0.181709632277489,-0.320773780345917,-0.929562151432037,0.0773090571165085,-0.29255810379982,-0.953117549419403,-0.029309369623661,-0.309951931238174,-0.950300335884094,0.0925023853778839,-0.395369470119476,-0.913852572441101,0.237146854400635,-0.369941413402557,-0.898278772830963,0.268917292356491,-0.34951314330101,-0.897509932518005,0.240379706025124,-0.142071709036827,-0.960225641727448,0.203982025384903,-0.134417295455933,-0.96970272064209,
  1436. 0.209607571363449,-0.155623108148575,-0.965321779251099,0.225044056773186,-0.266223639249802,-0.937272846698761,0.403499275445938,-0.232007890939713,-0.885076642036438,0.262611865997314,-0.263531118631363,-0.928216755390167,0.402886658906937,-0.13167679309845,-0.905728220939636,0.212387457489967,-0.174295425415039,-0.961515843868256,0.142223447561264,-0.166670083999634,-0.975701689720154,0.222134485840797,-0.243925765156746,-0.944010853767395,0.0735266506671906,-0.267385482788086,-0.960780322551727,0.149506762623787,-0.265227377414703,-0.952524125576019,0.143005400896072,-0.176447406411171,-0.973866403102875,0.376411318778992,-0.143587380647659,-0.91525799036026,0.403229266405106,-0.145909398794174,-0.90339183807373,-0.182898610830307,-0.31182262301445,-0.932370483875275,0.0132174585014582,-0.292746245861053,-0.956098914146423,0.0760223492980003,-0.283977210521698,-0.955812513828278,0.151240527629852,-0.291863948106766,-0.944426655769348,0.0758820623159409,-0.283042699098587,-0.956100821495056,0.0138922613114119,-0.301948934793472,-0.953222990036011,-0.147326499223709,-0.294579774141312,-0.944202244281769,0.0119252521544695,-0.275094449520111,-0.961343228816986,-0.184334754943848,-0.300804883241653,-0.935701429843903,-0.148587837815285,-0.283576846122742,-0.94736784696579,-0.186393097043037,-0.284596025943756,-0.940352439880371,-0.305315762758255,-0.290372997522354,-0.906899034976959,0.0138640869408846,-0.301564931869507,-0.953344941139221,0.0176536124199629,-0.295343428850174,-0.9552281498909,0.151223093271255,-0.291587978601456,-0.944514691829681,0.0119513869285584,-0.275451838970184,-0.961240589618683,-0.147270143032074,-0.295066386461258,-0.944058954715729,0.0159612745046616,-0.280744522809982,-0.959649801254272,-0.305312037467957,-0.290399968624115,-0.906891644001007,-0.161348596215248,-0.290528148412704,-0.943165004253387,-0.148572787642479,-0.283709317445755,-0.94733053445816,0.0153842717409134,-0.275759160518646,-0.961103737354279,-0.147864788770676,-0.28990963101387,-0.945562481880188,-0.162217989563942,-0.277528613805771,-0.946923017501831,
  1437. -0.160816535353661,-0.298247218132019,-0.94084358215332,-0.304401636123657,-0.296960115432739,-0.905071437358856,-0.292614877223969,-0.298029154539108,-0.908600687980652,-0.292655497789383,-0.297146558761597,-0.908876597881317,-0.145294353365898,-0.314777433872223,-0.937979161739349,-0.16082789003849,-0.298084378242493,-0.940893352031708,-0.139563605189323,-0.230901211500168,-0.96291571855545,0.0150539930909872,-0.272903859615326,-0.961923539638519,-0.162556052207947,-0.272335469722748,-0.948371827602386,-0.144936606287956,-0.309096038341522,-0.939921796321869,-0.292857140302658,-0.292677134275436,-0.910260856151581,-0.208932876586914,-0.304326832294464,-0.929372072219849,-0.204596728086472,-0.266117364168167,-0.941977679729462,-0.00422982592135668,-0.301894694566727,-0.953332006931305,-0.142965510487556,-0.27898234128952,-0.949594616889954,-0.0038737750146538,-0.271139055490494,-0.9625324010849,0.0160045195370913,-0.281117856502533,-0.959539890289307,-0.141845256090164,-0.26265949010849,-0.954405546188354,-0.00665726093575358,-0.312066614627838,-0.950037002563477,-0.0083867097273469,-0.304189056158066,-0.952574789524078,-0.143547236919403,-0.287673771381378,-0.946909725666046,0.00836962088942528,-0.248549222946167,-0.968583106994629,0.109580837190151,-0.270301640033722,-0.956519246101379,-0.00199326127767563,-0.257280558347702,-0.966334700584412,0.108465984463692,-0.292454749345779,-0.950108170509338,0.0163498520851135,-0.284099370241165,-0.958655416965485,-0.00641531171277165,-0.289787918329239,-0.957069396972656,0.110483191907406,-0.251344263553619,-0.961571395397186,0.0117660323157907,-0.234011545777321,-0.97216272354126,0.205546662211418,-0.259913682937622,-0.943501710891724,0.15091697871685,-0.286770582199097,-0.946037352085114,0.0173316281288862,-0.292568385601044,-0.956087529659271,0.103494554758072,-0.278894275426865,-0.954728662967682,0.107372403144836,-0.313005834817886,-0.943662285804749,0.103432424366474,-0.278424978256226,-0.954872369766235,0.0172851663082838,-0.292167842388153,-0.956210851669312,0.362966060638428,-0.0718633905053139,-0.929027080535889,
  1438. 0.134990692138672,-0.0827439054846764,-0.987385928630829,0.0804238691926003,-0.112076967954636,-0.990439772605896,0.210681796073914,-0.216447547078133,-0.953291058540344,0.257817149162292,-0.219190433621407,-0.941002607345581,0.111900962889194,-0.219330430030823,-0.969212234020233,0.0990460216999054,-0.245598077774048,-0.96429854631424,0.110763445496559,-0.24524649977684,-0.963112473487854,0.258282601833344,-0.224162846803665,-0.939702689647675,0.0857838541269302,-0.149624362587929,-0.98501455783844,0.247171252965927,-0.119417048990726,-0.961585223674774,0.368575692176819,-0.100553944706917,-0.924143314361572,0.253841131925583,-0.179147809743881,-0.950510799884796,0.216011494398117,-0.16643813252449,-0.962100625038147,0.294493407011032,-0.172931015491486,-0.939876854419708,0.295874655246735,-0.182534232735634,-0.937624335289001,0.379277139902115,-0.160371094942093,-0.911279439926147,0.255139976739883,-0.191789835691452,-0.947692036628723,0.189727336168289,-0.309870779514313,-0.931656420230865,0.0823302268981934,-0.337554007768631,-0.937698781490326,0.374432355165482,-0.250519067049026,-0.892771422863007,-0.26800948381424,0.23610907793045,-0.934036076068878,-0.0712021440267563,0.291928827762604,-0.953786015510559,0.00746670365333557,0.325390934944153,-0.945550203323364,0.130612447857857,-0.535511136054993,-0.834367096424103,0.377439886331558,-0.463838845491409,-0.801494002342224,0.36913475394249,-0.473976880311966,-0.799428224563599,-0.267020553350449,0.232365310192108,-0.935257375240326,-0.313536256551743,0.218394786119461,-0.924120545387268,-0.0698851644992828,0.286529213190079,-0.955519378185272,-0.197376668453217,0.203999325633049,-0.958867430686951,-0.0606686547398567,0.248741537332535,-0.96666806936264,-0.305522531270981,0.180399745702744,-0.934939622879028,-0.301700204610825,0.162961974740028,-0.939372360706329,-0.312748372554779,0.158541917800903,-0.936511039733887,-0.194132298231125,0.184329807758331,-0.963501513004303,0.326983720064163,-0.139688968658447,-0.934648931026459,0.0534504577517509,-0.219146966934204,-0.974226713180542,
  1439. 0.130139991641045,-0.169942900538445,-0.976822912693024,-0.185790479183197,0.135531231760979,-0.973197400569916,0.0713130757212639,0.182558715343475,-0.98060530424118,-0.039126954972744,0.160420507192612,-0.986273050308228,0.0908750295639038,0.0738651975989342,-0.993119180202484,0.234162122011185,0.095061756670475,-0.967538833618164,0.262905895709991,0.11314868927002,-0.958163797855377,0.233538180589676,0.326064318418503,-0.916046917438507,0.189650565385818,0.334598809480667,-0.923079907894135,0.197160944342613,0.315053820610046,-0.928368926048279,0.217470854520798,0.203925058245659,-0.954526603221893,0.396089464426041,0.217867746949196,-0.891990482807159,0.260131508111954,0.205228924751282,-0.943510830402374,0.391018003225327,0.31606537103653,-0.86441171169281,0.200911939144135,0.295884728431702,-0.933855891227722,0.128719940781593,0.307406067848206,-0.942832291126251,0.213421866297722,0.227643519639969,-0.950068175792694,0.0665042102336884,0.208219707012177,-0.975818514823914,0.139831006526947,0.208809539675713,-0.967908084392548,0.12988369166851,0.297758460044861,-0.945764303207397,0.364855051040649,0.309163212776184,-0.878236353397369,0.391954243183136,0.302802920341492,-0.868724524974823,-0.187380060553551,0.144646510481834,-0.971579194068909,0.00475251954048872,0.180896490812302,-0.983490645885468,0.0696732997894287,0.191353589296341,-0.979045271873474,0.142627596855164,0.181335717439651,-0.973023593425751,0.0694922134280205,0.192321985960007,-0.978868365287781,0.00582862691953778,0.170878544449806,-0.985274851322174,-0.155374437570572,0.167738944292068,-0.973510384559631,0.00275773741304874,0.199404746294022,-0.979913353919983,-0.189206317067146,0.155222088098526,-0.969591200351715,-0.156956419348717,0.178193166851997,-0.971396863460541,-0.192352116107941,0.173709034919739,-0.965829193592072,-0.310934841632843,0.147908449172974,-0.938851773738861,0.00579065689817071,0.17123244702816,-0.98521363735199,0.0135542899370193,0.178414955735207,-0.983861982822418,0.142600879073143,0.181604132056236,-0.972977459430695,
  1440. 0.00279583013616502,0.199052050709724,-0.979984939098358,-0.155299752950668,0.167247906327248,-0.973606765270233,0.0111804557964206,0.194208115339279,-0.980896651744843,-0.310927033424377,0.147862955927849,-0.938861608505249,-0.169203355908394,0.168821111321449,-0.971014857292175,-0.156935200095177,0.178052350878716,-0.971426129341125,0.0104248858988285,0.199220076203346,-0.979899346828461,-0.156092092394829,0.172468826174736,-0.97256863117218,-0.170829951763153,0.185483768582344,-0.967684328556061,-0.168402850627899,0.160783380270004,-0.97251695394516,-0.309765070676804,0.141155496239662,-0.940276920795441,-0.292408585548401,0.142953351140022,-0.945548295974731,-0.292491614818573,0.143977388739586,-0.945367217063904,-0.147500574588776,0.146435678005219,-0.978161633014679,-0.168444603681564,0.161200106143951,-0.972440719604492,-0.144985258579254,0.233523309230804,-0.961481213569641,0.00996629800647497,0.202258557081223,-0.979281425476074,-0.171371385455132,0.191133946180344,-0.966488420963287,-0.147365763783455,0.152418434619904,-0.977267622947693,-0.292864292860031,0.148620381951332,-0.944533050060272,-0.213195532560349,0.149482920765877,-0.965506374835968,-0.210464879870415,0.1892911195755,-0.959100306034088,-0.00809944327920675,0.170193761587143,-0.985377430915833,-0.146559327840805,0.184098929166794,-0.971919715404511,-0.0133990803733468,0.202582731842995,-0.979173481464386,0.0112846903502941,0.193516120314598,-0.981032192707062,-0.146061718463898,0.201101034879684,-0.968619823455811,-0.0101294629275799,0.159543961286545,-0.987138867378235,-0.0165845807641745,0.168422192335129,-0.985575437545776,-0.146804094314575,0.175107643008232,-0.973542928695679,0.00249273260124028,0.225346475839615,-0.974275529384613,0.0992430970072746,0.205011919140816,-0.973715126514435,-0.0120678041130304,0.216734632849693,-0.976155936717987,0.0989487841725349,0.181920990347862,-0.978321969509125,0.0117753120139241,0.190257176756859,-0.981663644313812,-0.0151953464373946,0.183371886610985,-0.982926189899445,0.0994456857442856,0.224105641245842,-0.969477832317352,
  1441. 0.00532455835491419,0.23997363448143,-0.970764815807343,0.195576325058937,0.212638959288597,-0.957358121871948,0.142100393772125,0.18661142885685,-0.972102701663971,0.0131121007725596,0.181362226605415,-0.983328938484192,0.0966830998659134,0.195991888642311,-0.975827634334564,0.0986270681023598,0.160430580377579,-0.982107400894165,0.096604235470295,0.196462422609329,-0.975740790367126,0.0130527224391699,0.181757807731628,-0.983256697654724,0.348469078540802,0.377757787704468,-0.857827723026276,0.118435144424438,0.387082904577255,-0.914406895637512,0.0671640262007713,0.36053740978241,-0.930323481559753,0.198757842183113,0.255278736352921,-0.946217775344849,0.250034958124161,0.249177098274231,-0.935624539852142,0.0997044891119003,0.256637006998062,-0.96135139465332,0.0908800736069679,0.230137571692467,-0.968905329704285,0.099503181874752,0.230274870991707,-0.968025088310242,0.250610768795013,0.245030105113983,-0.936565279960632,0.0739224851131439,0.324779629707336,-0.94289642572403,0.235075011849403,0.34589409828186,-0.908348500728607,0.355180472135544,0.350847244262695,-0.866460084915161,0.244295656681061,0.288604974746704,-0.925757527351379,0.201939344406128,0.303739607334137,-0.931108355522156,0.283142387866974,0.290975242853165,-0.913872957229614,0.284897774457932,0.281590938568115,-0.916264057159424,0.368335962295532,0.293196171522141,-0.882249772548676,0.246102184057236,0.276546984910965,-0.928953945636749,0.183077976107597,0.0438454188406467,-0.982120275497437,0.0678334608674049,0.0245737545192242,-0.99739396572113,0.365536600351334,0.0776512920856476,-0.927552402019501,-0.259478747844696,0.569153785705566,-0.780214548110962,-0.0585287995636463,0.621304154396057,-0.781380534172058,0.0220617242157459,0.64813756942749,-0.761203646659851,0.107691153883934,-0.199478447437286,-0.973966598510742,0.360068738460541,-0.154088646173477,-0.920112609863281,0.351027339696884,-0.16412553191185,-0.921869099140167,-0.258649528026581,0.566122710704803,-0.782691240310669,-0.298350244760513,0.553299009799957,-0.77771931886673,-0.0573970228433609,0.61666864156723,-0.785127639770508,
  1442. -0.193216741085052,0.544913709163666,-0.815926671028137,-0.0497693121433258,0.58506566286087,-0.809457361698151,-0.292044132947922,0.521332263946533,-0.801824867725372,-0.288985937833786,0.506357967853546,-0.812458455562592,-0.307664811611176,0.499554485082626,-0.809807181358337,-0.190804585814476,0.528075337409973,-0.82748419046402,0.323203235864639,0.198219522833824,-0.925337076187134,0.0439799055457115,0.149419531226158,-0.987795412540436,0.117104850709438,0.192479506134987,-0.974288523197174,-0.184668406844139,0.486635208129883,-0.853864014148712,0.0735808238387108,0.523388624191284,-0.848911166191101,-0.0321585796773434,0.509781956672668,-0.859702408313751,0.088302843272686,0.426498889923096,-0.900167405605316,0.233685165643692,0.431642770767212,-0.871249675750732,0.269621759653091,0.444294929504395,-0.854345440864563,0.243435770273209,0.627983033657074,-0.73917281627655,0.205385565757751,0.640447318553925,-0.740029752254486,0.206374958157539,0.623249471187592,-0.754300653934479,0.221635609865189,0.529546320438385,-0.818815231323242,0.400945067405701,0.513358652591705,-0.758752882480621,0.265083014965057,0.524667084217072,-0.808984220027924,0.400229394435883,0.594974994659424,-0.697008728981018,0.209065109491348,0.608440458774567,-0.765566468238831,0.14279443025589,0.624980747699738,-0.767469108104706,0.218802392482758,0.548944711685181,-0.806712627410889,0.0699088647961617,0.545719027519226,-0.835047006607056,0.149736970663071,0.540844857692719,-0.827687084674835,0.143561661243439,0.61682802438736,-0.773894846439362,0.374501019716263,0.593894183635712,-0.712066471576691,0.400583148002625,0.583885312080383,-0.706124007701874,-0.18587338924408,0.494629144668579,-0.848995327949524,0.0111934654414654,0.525896847248077,-0.850474715232849,0.072323314845562,0.531113147735596,-0.844208598136902,0.151366919279099,0.516643166542053,-0.842714607715607,0.0722667053341866,0.531458973884583,-0.843995749950409,0.0118662593886256,0.517884790897369,-0.855368077754974,-0.151442691683769,0.515422999858856,-0.843447864055634,0.00988504104316235,0.541311800479889,-0.840763866901398,
  1443. -0.18730203807354,0.50419408082962,-0.843033969402313,-0.15263606607914,0.524619519710541,-0.837541997432709,-0.189488589763641,0.519027352333069,-0.83348947763443,-0.30619889497757,0.490275025367737,-0.816010177135468,0.0118356421589851,0.518250644207001,-0.855146884918213,0.0193522665649652,0.52304071187973,-0.852088093757629,0.151354402303696,0.516838312149048,-0.842597305774689,0.00991224497556686,0.540993511676788,-0.840968370437622,-0.151386916637421,0.514995038509369,-0.843719184398651,0.0175683051347733,0.537443995475769,-0.843116402626038,-0.306194871664047,0.490249693393707,-0.816026926040649,-0.161921814084053,0.517732918262482,-0.840079724788666,-0.152620196342468,0.524496674537659,-0.837621808052063,0.0170382633805275,0.541685461997986,-0.840408563613892,-0.151971518993378,0.519488513469696,-0.840854644775391,-0.162781178951263,0.528838396072388,-0.832965910434723,-0.161384582519531,0.510925114154816,-0.844340324401855,-0.305284798145294,0.484578728675842,-0.819746732711792,-0.290028661489487,0.487183153629303,-0.823732972145081,-0.290071368217468,0.488145112991333,-0.823148190975189,-0.138118475675583,0.497693210840225,-0.856285452842712,-0.16139417886734,0.511045753955841,-0.844265460968018,-0.132156312465668,0.572496056556702,-0.809186637401581,0.0166962072253227,0.544413447380066,-0.838650822639465,-0.163122415542603,0.533326864242554,-0.830032289028168,-0.137745544314384,0.502929627895355,-0.85328072309494,-0.290247768163681,0.4922034740448,-0.820665538311005,-0.205032542347908,0.498466640710831,-0.842313885688782,-0.20086607336998,0.532672047615051,-0.822139501571655,-0.00331231602467597,0.517633736133575,-0.855595886707306,-0.135681107640266,0.530422925949097,-0.836804866790771,-0.00368152325972915,0.5448397397995,-0.838532090187073,0.0176785383373499,0.536559820175171,-0.843677222728729,-0.134510740637779,0.545009613037109,-0.827569544315338,-0.00575058814138174,0.508456349372864,-0.861068546772003,-0.00792304705828428,0.516144633293152,-0.856464922428131,-0.136281952261925,0.522666275501251,-0.841574251651764,
  1444. 0.00939364638179541,0.564427316188812,-0.825429320335388,0.108781017363071,0.541223585605621,-0.833812773227692,-0.00192280800547451,0.556543827056885,-0.830816030502319,0.107536032795906,0.521309018135071,-0.846565365791321,0.0180496014654636,0.533577620983124,-0.84555846452713,-0.00607790471985936,0.52870899438858,-0.848781406879425,0.109762422740459,0.557428121566772,-0.822937488555908,0.0128008564934134,0.576681077480316,-0.81686919927597,0.204585060477257,0.538397192955017,-0.817479908466339,0.151064738631248,0.521304070949554,-0.839893758296967,0.0190272685140371,0.525679349899292,-0.850469946861267,0.10851638764143,0.534068703651428,-0.838447988033295,0.106330581009388,0.502625405788422,-0.857940316200256,0.108455643057823,0.534482002258301,-0.838192284107208,0.0189856719225645,0.526016652584076,-0.850262343883514,0.360911160707474,0.651093900203705,-0.667697429656982,0.135921224951744,0.689252853393555,-0.711657166481018,0.085554800927639,0.671402275562286,-0.736138224601746,0.209718555212021,0.574416100978851,-0.791242241859436,0.260149747133255,0.562989473342896,-0.784452021121979,0.111355639994144,0.584859609603882,-0.803454637527466,0.104073159396648,0.563527464866638,-0.819515466690063,0.110072493553162,0.562651097774506,-0.819333732128143,0.260569661855698,0.559328258037567,-0.786927938461304,0.0908866077661514,0.642574608325958,-0.76081371307373,0.249137476086617,0.64372593164444,-0.723565876483917,0.366535604000092,0.62883049249649,-0.68572872877121,0.256024539470673,0.596315324306488,-0.760828137397766,0.215042427182198,0.613963663578033,-0.759477078914642,0.295514732599258,0.592664778232574,-0.749279320240021,0.296890199184418,0.584894299507141,-0.754821240901947,0.377348452806473,0.580238401889801,-0.721755981445313,0.257344096899033,0.586134493350983,-0.768258035182953,0.0994604676961899,-0.716540515422821,-0.690418243408203,-0.0401582084596157,-0.707361876964569,-0.705709934234619,0.141308844089508,-0.721653819084167,-0.677678048610687,0.245320841670036,-0.692516565322876,-0.678408801555634,0.100314281880856,-0.705940186977386,-0.701131582260132,
  1445. 0.145537868142128,-0.699444353580475,-0.699711620807648,-0.0276164151728153,-0.668877124786377,-0.742859840393066,0.100406490266323,-0.704768478870392,-0.702296197414398,-0.0557212866842747,-0.678059458732605,-0.732891976833344,-0.242326065897942,-0.699417412281036,-0.672378897666931,-0.054963693022728,-0.75048553943634,-0.658597350120544,-0.0697737634181976,-0.738079369068146,-0.671096444129944,0.10040757060051,-0.704754590988159,-0.702309966087341,0.245310828089714,-0.691693127155304,-0.679251968860626,0.133720055222511,-0.708623826503754,-0.69279956817627,0.323664009571075,-0.672599792480469,-0.665470600128174,0.133725196123123,-0.708798766136169,-0.692619621753693,0.245308741927147,-0.691526174545288,-0.679422676563263,-0.0669130310416222,-0.726135849952698,-0.684287548065186,-0.118390239775181,-0.713663041591644,-0.690412044525146,-0.237894013524055,-0.685209393501282,-0.688400030136108,-0.306123971939087,-0.679403364658356,-0.666857779026031,-0.241765022277832,-0.697616755962372,-0.674448311328888,-0.118904374539852,-0.718034684658051,-0.685775518417358,-0.0630805939435959,-0.709911048412323,-0.701460719108582,0.0994182899594307,-0.717052936553955,-0.689892113208771,0.000131186316139065,-0.715388059616089,-0.698727428913116,-0.117139920592308,-0.703080058097839,-0.701396226882935,-0.0614757984876633,-0.703042387962341,-0.708485782146454,0.000183757190825418,-0.718679130077362,-0.695341885089874,0.0993408784270287,-0.717990458011627,-0.688927471637726,0.133644610643387,-0.70608788728714,-0.695398509502411,0.000122726705740206,-0.714856922626495,-0.699270725250244,-0.306173294782639,-0.682134807109833,-0.664040803909302,-0.119743213057518,-0.725193738937378,-0.67805278301239,-0.177948221564293,-0.701312303543091,-0.69028651714325,-0.177623122930527,-0.710606157779694,-0.680800199508667,-0.116928160190582,-0.701294362545013,-0.703216910362244,0.00017446672427468,-0.718098640441895,-0.695941269397736,-0.285585224628448,-0.677974581718445,-0.677341520786285,-0.306220054626465,-0.684995532035828,-0.661067605018616,
  1446. -0.177929937839508,-0.70186322927475,-0.689731061458588,0.00012291876191739,-0.714869022369385,-0.699258387088776,0.133644104003906,-0.706071019172668,-0.695415735244751,0.0896163731813431,-0.710205614566803,-0.698267161846161,0.133657351136208,-0.706514358520508,-0.694962799549103,0.323528945446014,-0.67078709602356,-0.667363226413727,0.0896335691213608,-0.710768103599548,-0.697692334651947,-0.0550817549228668,-0.716642498970032,-0.69526219367981,-0.177725419402123,-0.70779025554657,-0.683700680732727,0.00013500674685929,-0.715627789497375,-0.698481857776642,-0.28353625535965,-0.695397675037384,-0.660325109958649,-0.177672922611237,-0.709246635437012,-0.682203531265259,-0.0550988726317883,-0.716292500495911,-0.695621430873871,0.222447022795677,-0.693544447422028,-0.685210525989532,0.0896572843194008,-0.711543083190918,-0.696898877620697,0.323656290769577,-0.672495365142822,-0.665579915046692,0.324014276266098,-0.677424669265747,-0.660386681556702,0.336591869592667,-0.674719095230103,-0.656856238842011,0.222461923956871,-0.694660305976868,-0.684074401855469,-0.000168948608916253,-0.717753708362579,-0.6962970495224,0.00014401254884433,-0.716192364692688,-0.697902917861938,0.0896485075354576,-0.711252987384796,-0.697196125984192,0.0896117985248566,-0.710056841373444,-0.698418915271759,0.222477316856384,-0.695857524871826,-0.682851433753967,-0.00014898223162163,-0.716503977775574,-0.697583079338074,-0.00032974177156575,-0.727735161781311,-0.685858190059662,-0.0542316026985645,-0.733464896678925,-0.677560448646545,0.000372535199858248,-0.730367064476013,-0.683054864406586,0.336131304502487,-0.669483840465546,-0.662425220012665,0.0711885988712311,-0.730427742004395,-0.679269909858704,0.222453385591507,-0.694013774394989,-0.684733152389526,0.222462356090546,-0.694692969322205,-0.684041082859039,0.0666581615805626,-0.702156782150269,-0.708895325660706,-0.000124911515740678,-0.714994251728058,-0.699130415916443,0.00897867418825626,-0.746024489402771,-0.665857970714569,0.0709629580378532,-0.729031383991241,-0.680791854858398,
  1447. 0.336067587137222,-0.668773770332336,-0.663174331188202,-0.12821190059185,-0.685284852981567,-0.716900587081909,0.0620289444923401,-0.672785937786102,-0.737232327461243,-0.00666807638481259,-0.676696002483368,-0.736232340335846,-0.161201104521751,-0.709857821464539,-0.685650110244751,-0.283837109804153,-0.692952156066895,-0.66276228427887,-0.0550967268645763,-0.716336369514465,-0.695576429367065,-0.159159228205681,-0.740869164466858,-0.652519106864929,-0.0536759719252586,-0.743901014328003,-0.666130781173706,-0.00049148133257404,-0.737626552581787,-0.675208687782288,-0.282679796218872,-0.702169001102448,-0.653491377830505,-0.160776376724243,-0.716871500015259,-0.678414523601532,-0.209545955061913,-0.711043059825897,-0.671199202537537,0.0695563703775406,-0.72029846906662,-0.690168142318726,-0.0907973498106003,-0.7311030626297,-0.676198303699493,-0.000291727919830009,-0.725388765335083,-0.688339352607727,-0.0871621146798134,-0.753210008144379,-0.651979804039001,-0.159204736351967,-0.740244150161743,-0.653217077255249,-0.000528936099726707,-0.739895880222321,-0.672721207141876,0.0657544732093811,-0.696460425853729,-0.714576244354248,-0.122552588582039,-0.709782004356384,-0.693678855895996,-0.0944330617785454,-0.707536280155182,-0.700339078903198,-0.0917658433318138,-0.724972724914551,-0.682637214660645,-0.208463475108147,-0.720033407211304,-0.661887347698212,-0.160332843661308,-0.723849952220917,-0.671069800853729,-0.209564462304115,-0.710885405540466,-0.671360373497009,-0.0932186618447304,-0.715577900409698,-0.692285060882568,-0.121764309704304,-0.713080823421478,-0.690426826477051,0.0989338308572769,0.191606819629669,-0.976472675800323,-0.0411432683467865,0.209094777703285,-0.977029502391815,0.137697488069534,0.178648322820663,-0.974230051040649,0.247154206037521,0.194076463580132,-0.949341416358948,0.0996672138571739,0.205397427082062,-0.973590433597565,0.141759917140007,0.208633825182915,-0.967665255069733,-0.0288256909698248,0.260753333568573,-0.964975118637085,0.0997491627931595,0.20695935189724,-0.973251223564148,
  1448. -0.0572850406169891,0.2470583319664,-0.967305958271027,-0.238821819424629,0.184961438179016,-0.953285574913025,-0.0556706413626671,0.146689102053642,-0.987614870071411,-0.0708334445953369,0.164039090275764,-0.983907401561737,0.0997519642114639,0.207012534141541,-0.973239719867706,0.247142225503922,0.195233657956123,-0.949107229709625,0.13109128177166,0.196911081671715,-0.971617758274078,0.325490444898605,0.19440783560276,-0.925344049930573,0.131104037165642,0.196435645222664,-0.971712291240692,0.247140437364578,0.195406779646873,-0.949072182178497,-0.0680753290653229,0.181300461292267,-0.981068849563599,-0.120663166046143,0.192923918366432,-0.973766267299652,-0.234723016619682,0.205391585826874,-0.950115442276001,-0.309686601161957,0.191381439566612,-0.93137925863266,-0.23827363550663,0.187729761004448,-0.952881634235382,-0.121156230568886,0.186798676848412,-0.97489869594574,-0.0643830150365829,0.204114228487015,-0.976827621459961,0.0989041328430176,0.191054806113243,-0.976583957672119,-0.00156431482173502,0.198668003082275,-0.980065584182739,-0.119462199509144,0.207574427127838,-0.970897436141968,-0.0628457814455032,0.21351532638073,-0.974916219711304,-0.00153025053441525,0.194341748952866,-0.980932712554932,0.0988404303789139,0.189873725175858,-0.976820647716522,0.130949169397354,0.202131137251854,-0.970564424991608,-0.00156936270650476,0.199309125542641,-0.97993540763855,-0.309743165969849,0.187451377511024,-0.932159423828125,-0.121962174773216,0.176641553640366,-0.97668981552124,-0.182225212454796,0.199627175927162,-0.962778747081757,-0.181824266910553,0.185278937220573,-0.9657182097435,-0.119258053600788,0.210027888417244,-0.970394670963287,-0.0015370094915852,0.195200115442276,-0.980762243270874,-0.285486489534378,0.201240092515945,-0.937016487121582,-0.309797823429108,0.18327397108078,-0.932971596717834,-0.182212218642235,0.199139401316643,-0.962882339954376,-0.0015691239386797,0.199278801679611,-0.979941606521606,0.130947828292847,0.20217989385128,-0.97055447101593,0.0835945159196854,0.201699748635292,-0.975873529911041,
  1449. 0.131019994616508,0.199547410011292,-0.971089363098145,0.325345873832703,0.19687981903553,-0.924872100353241,0.0836470350623131,0.199656099081039,-0.976289212703705,-0.0539654977619648,0.19571341574192,-0.97917515039444,-0.181941166520119,0.189325094223022,-0.964911103248596,-0.00156359781976789,0.198576867580414,-0.98008406162262,-0.283416599035263,0.177357062697411,-0.942454099655151,-0.181906580924988,0.18811696767807,-0.965153872966766,-0.0539397336542606,0.194851070642471,-0.979348540306091,0.223479583859444,0.199615776538849,-0.954049587249756,0.0836790800094604,0.198401689529419,-0.976542174816132,0.325502812862396,0.194194540381432,-0.92538446187973,0.325946420431137,0.186357975006104,-0.926838517189026,0.342133224010468,0.185837879776955,-0.921091258525848,0.22348715364933,0.198436111211777,-0.954293787479401,0.00154144479893148,0.195763379335403,-0.980649948120117,-0.00155343359801918,0.197286173701286,-0.980344712734222,0.0836284458637238,0.200380712747574,-0.976142346858978,0.0835855230689049,0.202047914266586,-0.975802302360535,0.223507806658745,0.194924682378769,-0.955012381076813,0.00155524944420904,0.197516575455666,-0.980298340320587,0.00142247078474611,0.180653974413872,-0.983545780181885,-0.0532531552016735,0.172306567430496,-0.983602941036224,-0.00140174059197307,0.178020864725113,-0.984025716781616,0.341699153184891,0.193128749728203,-0.919751584529877,0.0691582560539246,0.174251571297646,-0.982269585132599,0.223483979701996,0.198934406042099,-0.954190790653229,0.223497942090034,0.196660593152046,-0.95465874671936,0.0646873861551285,0.214206486940384,-0.974644124507904,0.00157122546806932,0.199545562267303,-0.979887306690216,0.00719242263585329,0.152696654200554,-0.988246917724609,0.0689350515604019,0.176278173923492,-0.981923699378967,0.341639161109924,0.194111704826355,-0.919566929340363,-0.130076587200165,0.23002116382122,-0.964453399181366,0.0600959248840809,0.253906488418579,-0.965360045433044,-0.00923725590109825,0.251305609941483,-0.967863738536835,-0.160920321941376,0.190649390220642,-0.968378782272339,
  1450. -0.283721029758453,0.180756032466888,-0.941716313362122,-0.0539282821118832,0.194468051195145,-0.979425311088562,-0.158956810832024,0.146555796265602,-0.976347327232361,-0.0527769513428211,0.157135590910912,-0.986165821552277,0.00130942289251834,0.166296914219856,-0.986074864864349,-0.282555937767029,0.167938426136971,-0.944435715675354,-0.16050985455513,0.18083444237709,-0.970327496528625,-0.207713007926941,0.178171843290329,-0.96182644367218,0.0675622746348381,0.18866753578186,-0.979714214801788,-0.0917715132236481,0.170883685350418,-0.981008052825928,0.00145274552050978,0.184498712420464,-0.98283177614212,-0.0880319327116013,0.138367250561714,-0.98646080493927,-0.15899832546711,0.1474220007658,-0.976210176944733,0.00128536985721439,0.163242101669312,-0.986585199832916,0.0637924745678902,0.222047224640846,-0.97294682264328,-0.124435432255268,0.19721919298172,-0.972430169582367,-0.0955172926187515,0.204175665974617,-0.974263191223145,-0.0928178057074547,0.180107727646828,-0.979257941246033,-0.206673175096512,0.165638357400894,-0.964287400245667,-0.160082086920738,0.170974150300026,-0.9721839427948,-0.207743048667908,0.178539663553238,-0.961751759052277,-0.0943072810769081,0.193338423967361,-0.976589262485504,-0.123645700514317,0.192675590515137,-0.973441243171692,0.100372418761253,-0.262695997953415,-0.95964378118515,-0.0347610898315907,-0.248765334486961,-0.967939794063568,0.141111999750137,-0.274112284183502,-0.951288521289825,0.246647611260414,-0.248557597398758,-0.93668794631958,0.10108158737421,-0.249259665608406,-0.963146984577179,0.145377948880196,-0.243643209338188,-0.958907306194305,-0.0223678108304739,-0.197035640478134,-0.98014110326767,0.101160608232021,-0.247736036777496,-0.963531732559204,-0.0586943328380585,-0.209949821233749,-0.975948810577393,-0.240512639284134,-0.258073538541794,-0.935709238052368,-0.0494590923190117,-0.309708923101425,-0.949544310569763,-0.0715966373682022,-0.28982800245285,-0.954397022724152,0.101163730025291,-0.247675687074661,-0.963546931743622,0.246638312935829,-0.247410863637924,-0.936993837356567,
  1451. 0.135737463831902,-0.255021631717682,-0.957360625267029,0.323705554008484,-0.238102272152901,-0.915708601474762,0.135742664337158,-0.255264908075333,-0.957295119762421,0.246636167168617,-0.247151672840118,-0.937062799930573,-0.0689639151096344,-0.273440390825272,-0.959413647651672,-0.120178513228893,-0.260491967201233,-0.957967162132263,-0.236175462603569,-0.237881153821945,-0.942143261432648,-0.305616766214371,-0.243235468864441,-0.920562267303467,-0.239961504936218,-0.255485057830811,-0.93656063079834,-0.120693005621433,-0.266625642776489,-0.956213355064392,-0.0654570236802101,-0.251683175563812,-0.965593576431274,0.100344702601433,-0.26321268081665,-0.959505081176758,0.00203151069581509,-0.258001804351807,-0.966142296791077,-0.118926197290421,-0.245757222175598,-0.96200829744339,-0.0640077888965607,-0.242715373635292,-0.967983722686768,0.00206491560675204,-0.262244343757629,-0.964999318122864,0.10028425604105,-0.264337807893753,-0.959202170372009,0.135661512613297,-0.251503646373749,-0.958301544189453,0.00202649715356529,-0.257365077733994,-0.966312229633331,-0.305681020021439,-0.247243225574493,-0.919472634792328,-0.12152673304081,-0.276669383049011,-0.953249871730804,-0.181013211607933,-0.250123023986816,-0.951142847537994,-0.180699184536934,-0.262773215770721,-0.947785973548889,-0.11871550232172,-0.24330447614193,-0.962657570838928,0.00205819727852941,-0.261391133069992,-0.965230762958527,-0.289298266172409,-0.237044677138329,-0.927424550056458,-0.305743247270584,-0.251476615667343,-0.918303072452545,-0.180994406342506,-0.250918567180634,-0.950936853885651,0.0020267425570637,-0.257396221160889,-0.966303825378418,0.135661005973816,-0.251480519771576,-0.958307683467865,0.0885126739740372,-0.253149837255478,-0.963369429111481,0.135674402117729,-0.252095341682434,-0.958144247531891,0.323569416999817,-0.235571876168251,-0.916410803794861,0.0885700881481171,-0.255321025848389,-0.96279102563858,-0.056609321385622,-0.26052862405777,-0.963805079460144,-0.180799141526222,-0.258884876966476,-0.948836386203766,0.00203202362172306,-0.258067041635513,-0.966124892234802,
  1452. -0.287335634231567,-0.260283827781677,-0.921786725521088,-0.180744171142578,-0.261037111282349,-0.948257029056549,-0.0566016659140587,-0.260762959718704,-0.963742136955261,0.221343636512756,-0.24583412706852,-0.943701505661011,0.0886030346155167,-0.256573081016541,-0.962455093860626,0.323697924613953,-0.237960174679756,-0.915748119354248,0.32406023144722,-0.24489688873291,-0.913789093494415,0.343718826770782,-0.243244767189026,-0.90702223777771,0.221352607011795,-0.247072324156761,-0.943376004695892,-0.00205381726846099,-0.260834902524948,-0.965381264686584,0.00204219063743949,-0.259358108043671,-0.965779066085815,0.0885465890169144,-0.254428565502167,-0.963029384613037,0.0885030478239059,-0.252787560224533,-0.963465452194214,0.221373289823532,-0.250108063220978,-0.942570865154266,-0.00204025884158909,-0.259112954139709,-0.965844869613647,-0.00217094202525914,-0.275709450244904,-0.961238563060761,-0.0558317080140114,-0.28376042842865,-0.957268416881561,0.00219071772880852,-0.27822133898735,-0.960514605045319,0.343254804611206,-0.235877081751823,-0.909141421318054,0.0662263110280037,-0.282270729541779,-0.957046151161194,0.221348479390144,-0.246489480137825,-0.943529546260834,0.221362173557281,-0.248428180813789,-0.943017601966858,0.06142533197999,-0.241618052124977,-0.968425452709198,-0.00202459516003728,-0.257123678922653,-0.966376483440399,0.00759253604337573,-0.30090457201004,-0.953624129295349,0.0659862235188484,-0.28022575378418,-0.957663476467133,0.343190252780914,-0.234875693917274,-0.909425020217896,-0.127194970846176,-0.222491234540939,-0.966601848602295,0.0566717423498631,-0.201845824718475,-0.977776348590851,-0.00786035507917404,-0.205803379416466,-0.978561818599701,-0.159997388720512,-0.259616762399673,-0.952365458011627,-0.287617385387421,-0.257073611021042,-0.922599375247955,-0.0565939843654633,-0.260997951030731,-0.963679015636444,-0.157834783196449,-0.304042220115662,-0.939492702484131,-0.0553173013031483,-0.298532068729401,-0.952795147895813,-0.00228115078061819,-0.289705961942673,-0.957113087177277,
  1453. -0.286498099565506,-0.269604682922363,-0.919365108013153,-0.159550189971924,-0.269456803798676,-0.949703514575958,-0.213215678930283,-0.268319398164749,-0.939437985420227,0.0644376426935196,-0.267066031694412,-0.961521565914154,-0.091206394135952,-0.282972186803818,-0.954781830310822,-0.00214117532595992,-0.271929234266281,-0.96231484413147,-0.087592788040638,-0.31426128745079,-0.945286929607391,-0.157890677452087,-0.30298313498497,-0.939825415611267,-0.00230429018847644,-0.292644739151001,-0.956218481063843,0.0605005323886871,-0.233844146132469,-0.970389902591705,-0.121763974428177,-0.25528809428215,-0.959167122840881,-0.0948289856314659,-0.250389516353607,-0.963489770889282,-0.0921708196401596,-0.274420917034149,-0.957182168960571,-0.212110966444016,-0.280871391296387,-0.936012923717499,-0.159084543585777,-0.27930673956871,-0.946931838989258,-0.213230833411217,-0.268143951892853,-0.939484655857086,-0.093619130551815,-0.261413276195526,-0.960676193237305,-0.120905011892319,-0.260371685028076,-0.957908451557159,-0.0475482642650604,-0.470820099115372,0.88094699382782,-0.0862249955534935,-0.478490024805069,0.873849272727966,-0.0274665206670761,-0.464017748832703,0.885399997234344,0.0988881215453148,-0.420935243368149,0.90168434381485,-0.049524512141943,-0.463928997516632,0.884486973285675,-0.0280636269599199,-0.462265938520432,0.886297166347504,0.102895870804787,-0.430082410573959,0.896906793117523,-0.155116990208626,-0.537100613117218,0.829133093357086,0.229883193969727,-0.374938458204269,0.89809513092041,-0.0314618200063705,-0.452252238988876,0.891335010528564,-0.288346707820892,-0.516223549842834,0.806454837322235,0.100742362439632,-0.425170302391052,0.899489521980286,-0.156902939081192,-0.533655166625977,0.831019639968872,0.101452082395554,-0.426789909601212,0.898642241954803,-0.287462294101715,-0.518568217754364,0.805265426635742,-0.189935550093651,-0.467026025056839,0.863603591918945,-0.288019061088562,-0.517092764377594,0.806014955043793,-0.492687225341797,-0.533943831920624,0.687141358852386,-0.0344952493906021,-0.443250238895416,0.895734071731567,
  1454. -0.505990624427795,-0.494834125041962,0.706479072570801,-0.296429574489594,-0.494326859712601,0.817172229290009,-0.495279371738434,-0.529297709465027,0.688870310783386,-0.289813935756683,-0.512311458587646,0.808421194553375,-0.499195158481598,-0.529393672943115,0.685963928699493,-0.289775520563126,-0.512414157390594,0.808369874954224,-0.495337039232254,-0.530781865119934,0.687685966491699,-0.499176204204559,-0.529444098472595,0.685938835144043,-0.49997690320015,-0.527309238910675,0.686999320983887,-0.496645301580429,-0.526569604873657,0.689976751804352,-0.504344761371613,-0.526207566261292,0.684647381305695,-0.0479550920426846,0.184327378869057,0.981694340705872,-0.0882656499743462,0.173636734485626,0.980846285820007,-0.0265832934528589,0.192971751093864,0.980844140052795,0.101652130484581,0.237742468714714,0.965994596481323,-0.0499356798827648,0.191940262913704,0.980135381221771,-0.02708550542593,0.194578319787979,0.980512976646423,0.106165289878845,0.226536780595779,0.968199372291565,-0.152192428708076,0.100940823554993,0.983182787895203,0.227256581187248,0.269320428371429,0.935853183269501,-0.0303401593118906,0.204982206225395,0.97829532623291,-0.281816869974136,0.103166870772839,0.953905701637268,0.104015700519085,0.231883153319359,0.967166423797607,-0.153966337442398,0.104765236377716,0.982506394386292,0.104715339839458,0.230144962668419,0.967506170272827,-0.28093957901001,0.100640498101711,0.954434096813202,-0.187747478485107,0.178412288427353,0.965877830982208,-0.282280892133713,0.104505233466625,0.953622758388519,-0.494860917329788,0.0123541140928864,0.868884384632111,-0.0338059663772583,0.216046258807182,0.975797712802887,-0.505276560783386,0.056189700961113,0.861126184463501,-0.290492504835129,0.128441825509071,0.948217689990997,-0.497410446405411,0.0170155167579651,0.867348432540894,-0.284076273441315,0.109697975218296,0.952505648136139,-0.500019907951355,0.01629395224154,0.865860641002655,-0.284062147140503,0.109657026827335,0.952514588832855,-0.494705200195313,0.0169812459498644,0.868894934654236,-0.500015437602997,0.0162810366600752,0.865863442420959,
  1455. -0.500790476799011,0.0185239613056183,0.865370273590088,-0.495995938777924,0.021606607362628,0.868056118488312,-0.504880547523499,0.0181932561099529,0.862997472286224,-0.0388101600110531,-0.291031807661057,0.95592588186264,-0.074582614004612,-0.300672560930252,0.950806736946106,-0.012674966827035,-0.28088590502739,0.959657490253448,0.106037475168705,-0.232082009315491,0.966899275779724,-0.0411510542035103,-0.283377319574356,0.958125293254852,-0.0134786991402507,-0.278628528118134,0.960304379463196,0.110811419785023,-0.242530673742294,0.963794529438019,-0.140863180160522,-0.368239641189575,0.918998003005981,0.238038003444672,-0.181476309895515,0.954151093959808,-0.0174880288541317,-0.267338633537292,0.96344393491745,-0.26804181933403,-0.358492940664291,0.894223928451538,0.108456283807755,-0.237376034259796,0.965344429016113,-0.142766743898392,-0.364591866731644,0.920157849788666,0.109227493405342,-0.239063963294029,0.964840829372406,-0.267064690589905,-0.360950738191605,0.893527269363403,-0.177326232194901,-0.296282172203064,0.938494682312012,-0.268356382846832,-0.357699543237686,0.894447267055511,-0.477685987949371,-0.408150345087051,0.777965068817139,-0.0203202571719885,-0.259334087371826,0.965573906898499,-0.492349922657013,-0.368318617343903,0.78862726688385,-0.277540057897568,-0.334189802408218,0.90071576833725,-0.480430334806442,-0.403445303440094,0.778728842735291,-0.270343482494354,-0.352672189474106,0.895844161510468,-0.483958661556244,-0.403981357812881,0.776262223720551,-0.27032145857811,-0.352728068828583,0.895828783512115,-0.480549097061157,-0.404701799154282,0.778003215789795,-0.48394638299942,-0.404012441635132,0.776253700256348,-0.484826296567917,-0.401779919862747,0.776863157749176,-0.48198738694191,-0.400422662496567,0.779326558113098,-0.489628463983536,-0.401256233453751,0.774117171764374,-0.0480048879981041,-0.61675763130188,0.785687923431396,-0.0869711339473724,-0.623028635978699,0.777349054813385,-0.0272379014641047,-0.61070328950882,0.79139107465744,0.100145190954208,-0.570544064044952,0.815138399600983,
  1456. -0.0500094778835773,-0.6104696393013,0.790459275245667,-0.0278625916689634,-0.609057188034058,0.792636752128601,0.104261673986912,-0.578906416893005,0.808700740337372,-0.152396678924561,-0.671904981136322,0.724788904190063,0.229983270168304,-0.525104284286499,0.819373786449432,-0.0312907993793488,-0.599967360496521,0.799412310123444,-0.286006510257721,-0.648761987686157,0.705200791358948,0.102132551372051,-0.574587106704712,0.812045931816101,-0.154150605201721,-0.668886303901672,0.727206110954285,0.102833911776543,-0.57601135969162,0.81094765663147,-0.28513041138649,-0.650836527347565,0.703642308712006,-0.186884298920631,-0.609354734420776,0.770558953285217,-0.285965859889984,-0.648858428001404,0.70512855052948,-0.495772421360016,-0.645348131656647,0.58115029335022,-0.0341934263706207,-0.59219616651535,0.805068016052246,-0.505367994308472,-0.610571444034576,0.609758734703064,-0.294286161661148,-0.628653705120087,0.719854354858398,-0.49837127327919,-0.641065418720245,0.58366185426712,-0.287770539522171,-0.644554674625397,0.708334267139435,-0.498918324708939,-0.640480637550354,0.583836495876312,-0.287741124629974,-0.644625246524811,0.708282053470612,-0.494822263717651,-0.642165958881378,0.585468888282776,-0.49890074133873,-0.640522718429565,0.58380538225174,-0.499689757823944,-0.638632714748383,0.585199475288391,-0.496109932661057,-0.638495981693268,0.588385760784149,-0.507300078868866,-0.636525750160217,0.580931663513184,0.0287459529936314,0.664775133132935,0.746490240097046,0.000605212640948594,0.664740741252899,0.747073888778687,-0.0372272431850433,0.663423776626587,0.74731719493866,-0.0696028470993042,0.655746579170227,0.751765847206116,0.0287458542734385,0.664780080318451,0.746485829353333,-0.0372274108231068,0.663427948951721,0.747313499450684,0.350590318441391,0.649855852127075,0.674369275569916,0.0282437261193991,0.688604772090912,0.724586606025696,-0.0678238570690155,0.646239697933197,0.76011461019516,-0.0712520703673363,0.664518177509308,0.743867456912994,-0.0363046005368233,0.640613675117493,0.767004668712616,
  1457. -0.264202684164047,0.629167079925537,0.730989515781403,0.350869953632355,0.648234903812408,0.675782382488251,-0.0673384666442871,0.643637835979462,0.76236218214035,0.151362776756287,0.61551821231842,0.773451268672943,0.115732297301292,0.695302963256836,0.709337651729584,-0.0694491043686867,0.654926776885986,0.752494335174561,-0.254570245742798,0.598519921302795,0.759584009647369,0.352780908346176,0.935434281826019,0.0225456524640322,0.535454928874969,0.844070971012115,-0.0288480278104544,0.372106641530991,0.928173780441284,-0.00548088178038597,0.35303983092308,0.935308337211609,0.0236891470849514,0.374423444271088,0.927144706249237,0.0144838662818074,0.186200320720673,0.980968058109283,0.0550559349358082,-0.166616126894951,0.973283588886261,0.157981514930725,0.353295147418976,0.935182750225067,0.0248187202960253,0.190852507948875,0.978237807750702,0.0814011543989182,0.375225573778152,0.926679074764252,0.021717045456171,0.271348088979721,0.961904883384705,0.0333083942532539,0.186697110533714,0.980713665485382,0.0578351877629757,-0.175866395235062,0.975149393081665,0.134739384055138,0.192218765616417,0.977282702922821,0.0892786458134651,-0.00714087672531605,0.990393221378326,0.138095170259476,0.189446240663528,0.979146718978882,0.073360800743103,0.275053679943085,0.957896530628204,0.0823390409350395,-0.0108135575428605,0.994093716144562,0.107984870672226,0.0366258658468723,-0.266198694705963,0.963222205638886,-0.00301844743080437,-0.267244040966034,0.963624179363251,-0.0391466431319714,-0.268024832010269,0.962616324424744,-0.0666657537221909,-0.275559037923813,0.958969712257385,0.0366257652640343,-0.266192197799683,0.963223874568939,-0.0391468293964863,-0.268019884824753,0.962617814540863,0.350333124399185,-0.21395255625248,0.911861300468445,0.0361394286155701,-0.234712719917297,0.971392750740051,-0.0646779015660286,-0.288847029209137,0.955188035964966,-0.0685285925865173,-0.262978106737137,0.962365090847015,-0.0381387434899807,-0.294957160949707,0.954749047756195,-0.267196655273438,-0.272451668977737,0.924324631690979,
  1458. 0.350594639778137,-0.215906113386154,0.911300122737885,-0.0641378238797188,-0.292433083057404,0.954132735729218,0.150965839624405,-0.315959811210632,0.936684966087341,0.115274153649807,-0.218706488609314,0.968957960605621,-0.0665294229984283,-0.276474893093109,0.958715558052063,-0.256799727678299,-0.315104246139526,0.913653790950775,0.349510490894318,0.490098655223846,0.798527240753174,0.532479703426361,0.482562631368637,0.695412576198578,0.374503165483475,0.509075999259949,0.774976789951324,0.350051403045654,0.48787933588028,0.799648523330688,0.376824259757996,0.490757435560226,0.785595715045929,0.190266460180283,0.486194491386414,0.852885484695435,-0.166265696287155,0.395881235599518,0.903124451637268,0.351253181695938,0.482903510332108,0.802138030529022,0.194896027445793,0.46272486448288,0.864812850952148,0.377623200416565,0.484064012765884,0.789355933666229,0.269551128149033,0.493889659643173,0.826689302921295,0.190757885575294,0.483751863241196,0.854163646697998,-0.175165057182312,0.415912240743637,0.892375588417053,0.196252420544624,0.455647677183151,0.868257105350494,-0.0106820780783892,0.420199185609818,0.907369017601013,0.193481460213661,0.4700066447258,0.861196100711823,0.273301094770432,0.451286435127258,0.849498271942139,-0.0143685759976506,0.448486477136612,0.89367413520813,0.0294128004461527,0.189970672130585,0.981349110603333,-0.00393531611189246,0.189208313822746,0.981929183006287,-0.0383217670023441,0.188278585672379,0.981367826461792,-0.0666017681360245,0.179899081587791,0.981427788734436,0.0294127073138952,0.189977303147316,0.981347799301147,-0.0383219420909882,0.188283860683441,0.981366813182831,0.350475698709488,0.214013993740082,0.911792099475861,0.0289469379931688,0.222109034657478,0.97459203004837,-0.0647274106740952,0.166932642459869,0.983841359615326,-0.0683507770299912,0.19204369187355,0.979003369808197,-0.0373544245958328,0.159626260399818,0.986470520496368,-0.263446062803268,0.167654305696487,0.949993908405304,0.350753575563431,0.211910560727119,0.912176549434662,-0.0642181560397148,0.163418278098106,0.984464585781097,
  1459. 0.154021695256233,0.135790348052979,0.978692233562469,0.119196452200413,0.235853657126427,0.964450776576996,-0.0664588809013367,0.178908810019493,0.981618463993073,-0.25370317697525,0.126413375139236,0.958986103534698,0.349730968475342,0.793513178825378,0.498021155595779,0.534137070178986,0.740841567516327,0.4072485268116,0.377326428890228,0.799373507499695,0.467575371265411,0.350101888179779,0.792509734630585,0.499356597661972,0.379643946886063,0.788137912750244,0.484468132257462,0.188883453607559,0.815057098865509,0.547727048397064,-0.168372720479965,0.755147218704224,0.633563995361328,0.350751459598541,0.790740132331848,0.501700520515442,0.193595066666603,0.798970937728882,0.569356143474579,0.380446374416351,0.783976197242737,0.49055290222168,0.272008270025253,0.809603869915009,0.520147204399109,0.189387127757072,0.813389122486115,0.550027906894684,-0.177728325128555,0.768731415271759,0.614381492137909,0.194974005222321,0.794051051139832,0.57573264837265,-0.0135706588625908,0.780479669570923,0.625033855438232,0.192151859402657,0.804015100002289,0.562705397605896,0.275761544704437,0.781619727611542,0.559487640857697,-0.017243716865778,0.79882937669754,0.601310431957245,0.0634041652083397,0.687863349914551,0.723065674304962,0.152130991220474,0.68507707118988,0.712408304214478,0.0531955063343048,0.691080033779144,0.720818102359772,0.305343419313431,0.674051642417908,0.672621548175812,0.152058839797974,0.685981810092926,0.711552560329437,0.0634699910879135,0.687188863754272,0.723700940608978,-0.107557751238346,0.687582850456238,0.718095541000366,0.0635765865445137,0.686095058917999,0.724728643894196,0.0513036251068115,0.681027412414551,0.730458557605743,0.0611044876277447,0.710712552070618,0.700823724269867,-0.136874586343765,0.65898722410202,0.739595293998718,0.301620960235596,0.688829660415649,0.659195363521576,-0.108050391077995,0.682403087615967,0.722946166992188,-0.14374403655529,0.687429547309875,0.71188360452652,0.0620551258325577,0.701430976390839,0.710030794143677,0.0440386645495892,0.673401057720184,0.737964510917664,
  1460. 0.30291211605072,0.683791518211365,0.663832366466522,-0.135573640465736,0.653584182262421,0.744612276554108,-0.42002746462822,0.579140484333038,0.698693931102753,-0.140298888087273,0.673183858394623,0.726043879985809,-0.113634526729584,0.616224408149719,0.779329657554626,0.0315145254135132,0.715449333190918,0.697953462600708,-0.140172898769379,0.672662198543549,0.726551532745361,-0.419842749834061,0.578429937362671,0.699393332004547,0.462478011846542,0.73834890127182,0.490871638059616,0.00222963560372591,0.746883869171143,0.664950847625732,0.272263526916504,0.738001763820648,0.617434978485107,0.462059944868088,0.739738166332245,0.48917093873024,0.247999712824821,0.797059655189514,0.550628781318665,-0.000153421235154383,0.752965986728668,0.658059418201447,0.231921777129173,0.805981934070587,0.544614970684052,-0.00905981101095676,0.775096595287323,0.631777942180634,-0.197996243834496,0.712709844112396,0.672935485839844,-0.00555963208898902,0.766512513160706,0.642205476760864,0.24939127266407,0.7840296626091,0.568420171737671,-0.0858659520745277,0.767027914524078,0.635842144489288,-0.0150975147262216,0.789558947086334,0.613489031791687,-0.0871170908212662,0.77124285697937,0.630551397800446,-0.211360171437263,0.737425804138184,0.641506135463715,0.249715402722359,0.780760645866394,0.572760879993439,0.14740626513958,0.794964253902435,0.588475346565247,-0.0860201269388199,0.767548561096191,0.635192692279816,-0.182797610759735,0.740204811096191,0.64705628156662,-0.227344214916229,0.766137540340424,0.601122140884399,-0.0881606563925743,0.774741113185883,0.626102149486542,-0.0869966223835945,0.770837962627411,0.631062924861908,0.148520082235336,0.766179919242859,0.625228047370911,-0.1850845515728,0.751858830451965,0.632812798023224,0.23132187128067,0.602296888828278,0.764021515846252,-0.236112117767334,0.48846697807312,0.840030550956726,0.0331418737769127,0.535820782184601,0.843681037425995,0.230795234441757,0.604364335536957,0.762546598911285,0.00885012373328209,0.607183635234833,0.794512271881104,-0.238707631826401,0.496083974838257,0.834817111492157,
  1461. -0.00857668556272984,0.615912675857544,0.787767767906189,-0.24825057387352,0.524257123470306,0.814571142196655,-0.426366090774536,0.426080137491226,0.797914564609528,-0.244523867964745,0.513222634792328,0.822685122489929,0.0103064635768533,0.589528381824493,0.807681918144226,-0.326025635004044,0.504103362560272,0.799741864204407,-0.326903104782104,0.5078444480896,0.797012150287628,-0.439412832260132,0.456646263599396,0.773557066917419,-0.254544824361801,0.542993128299713,0.800228476524353,0.0106659401208162,0.585116744041443,0.810878932476044,-0.101860411465168,0.577844083309174,0.809765815734863,-0.326131224632263,0.5045525431633,0.799415647983551,-0.423380970954895,0.45686012506485,0.782321810722351,-0.454509973526001,0.493360549211502,0.741630673408508,-0.327645123004913,0.511023640632629,0.794671952724457,-0.326840043067932,0.507574915885925,0.797209680080414,-0.100177235901356,0.539464116096497,0.836028099060059,-0.425939440727234,0.472071617841721,0.771831750869751,0.151784658432007,0.619123756885529,0.770485043525696,0.235396131873131,0.611952543258667,0.755051493644714,0.136985585093498,0.623339235782623,0.769859194755554,0.39033031463623,0.59420371055603,0.703252553939819,0.235344633460045,0.612808346748352,0.754373133182526,0.151757135987282,0.61955201625824,0.770146131515503,-0.0252331141382456,0.630079627037048,0.77612042427063,0.151932209730148,0.616813182830811,0.772306978702545,0.135009467601776,0.612755000591278,0.778655111789703,0.149971976876259,0.645600259304047,0.748804926872253,-0.0559438727796078,0.599210739135742,0.79863429069519,0.38689312338829,0.610214829444885,0.691340446472168,-0.0258127637207508,0.624512255191803,0.780588328838348,-0.062938928604126,0.632083237171173,0.77234023809433,0.150932714343071,0.631983458995819,0.760142385959625,0.125493064522743,0.602691471576691,0.78804475069046,0.388093113899231,0.604736685752869,0.695469081401825,-0.054677601903677,0.593195259571075,0.803199708461761,-0.341955244541168,0.543368697166443,0.766692280769348,-0.0598132610321045,0.61747020483017,0.784316837787628,
  1462. -0.0327425040304661,0.55437970161438,0.831619679927826,0.112122863531113,0.6529501080513,0.749055802822113,-0.0596744678914547,0.616818487644196,0.784840047359467,-0.341756284236908,0.542505860328674,0.767391860485077,-0.0723403319716454,0.203533098101616,0.976391911506653,0.00907843466848135,0.212651088833809,0.977086126804352,-0.0951977595686913,0.205254152417183,0.97406792640686,0.0850867703557014,0.212541982531548,0.97344034910202,0.00994963385164738,0.204724684357643,0.97876912355423,-0.0712942481040955,0.194582536816597,0.978291749954224,-0.252953797578812,0.191276803612709,0.948381543159485,-0.0720530822873116,0.201071992516518,0.976922929286957,-0.096339263021946,0.191853329539299,0.976683795452118,-0.0724418088793755,0.204402789473534,0.976202785968781,-0.261453777551651,0.127129167318344,0.956807255744934,0.0862695798277855,0.208715572953224,0.974163949489594,-0.253058910369873,0.185395926237106,0.949520707130432,-0.277202069759369,0.195504024624825,0.94071102142334,-0.0744172260165215,0.221409529447556,0.972337365150452,-0.167760923504829,0.0978156551718712,0.980962991714478,0.0858421549201012,0.210099339485168,0.973904192447662,-0.259291738271713,0.118128828704357,0.958547651767731,-0.548717081546783,0.0861533507704735,0.831557095050812,-0.273155272006989,0.177424058318138,0.9454665184021,-0.253567606210709,0.100761219859123,0.962055444717407,-0.252668350934982,0.265870004892349,0.930307388305664,-0.272967606782913,0.176594704389572,0.94567596912384,-0.548729002475739,0.0862152054905891,0.831542789936066,0.225974872708321,0.971477448940277,-0.0718809589743614,0.0204373672604561,0.983190953731537,-0.181432962417603,-0.11158163100481,0.979674637317657,-0.166695401072502,0.225486561655998,0.971757650375366,-0.0695922747254372,-0.11336188018322,0.980581223964691,-0.160029843449593,0.00721695367246866,0.995764672756195,-0.0916552692651749,-0.0239010564982891,0.996313869953156,-0.0823856815695763,-0.34314900636673,0.918056428432465,-0.198547691106796,-0.120305769145489,0.983684718608856,-0.13375686109066,-0.115020357072353,0.98138552904129,-0.153794705867767,
  1463. -0.225423380732536,0.961926341056824,-0.154538080096245,0.00960234180092812,0.99248993396759,-0.1219497397542,-0.126010030508041,0.985704600811005,-0.111838735640049,-0.357041954994202,0.92100727558136,-0.155777513980865,-0.223131164908409,0.959993898868561,-0.169186741113663,0.00953626446425915,0.992593228816986,-0.121110565960407,-0.2261101603508,0.96247124671936,-0.150078341364861,-0.119914330542088,0.984447300434113,-0.128390252590179,-0.360011160373688,0.921406686306,-0.146293208003044,-0.360092908143997,0.918529093265533,-0.163210317492485,-0.226457789540291,0.962740838527679,-0.147807240486145,-0.226353570818901,0.962660431861877,-0.148489058017731,-0.360032051801682,0.918481290340424,-0.163612514734268,-0.118509121239185,0.9810870885849,-0.15304870903492,0.220855847001076,0.712751805782318,-0.665738344192505,0.0197064932435751,0.653767645359039,-0.756438732147217,-0.105834230780602,0.661306738853455,-0.742611944675446,0.220445364713669,0.714166581630707,-0.664356768131256,-0.107589028775692,0.66612982749939,-0.738035023212433,0.00978496950119734,0.719198822975159,-0.694735467433929,-0.0234992168843746,0.724906325340271,-0.688446521759033,-0.338502496480942,0.59305214881897,-0.730551302433014,-0.114454254508018,0.684828400611877,-0.719659924507141,-0.10922085493803,0.670599102973938,-0.733735501766205,-0.223438143730164,0.652708053588867,-0.723911345005035,0.0121610313653946,0.697674155235291,-0.716311991214752,-0.120124876499176,0.700063228607178,-0.703904569149017,-0.353301167488098,0.623382091522217,-0.697547912597656,-0.221607074141502,0.644520342350006,-0.731767594814301,0.0120978699997067,0.698256134986877,-0.715745806694031,-0.224201425909996,0.656134784221649,-0.720569908618927,-0.121345564723015,0.686884164810181,-0.716565072536469,-0.356191396713257,0.629332780838013,-0.690701127052307,-0.361881792545319,0.613231122493744,-0.702131867408752,-0.224989548325539,0.659681975841522,-0.7170769572258,-0.22472970187664,0.658511519432068,-0.718233346939087,-0.361856639385223,0.613110542297363,-0.702250123023987,
  1464. -0.11991748213768,0.669423460960388,-0.73313844203949,0.0647632256150246,-0.233965337276459,0.970085561275482,0.152569770812988,-0.226429134607315,0.96200430393219,0.0497382916510105,-0.230124533176422,0.971889317035675,0.302723318338394,-0.20019194483757,0.931816399097443,0.152523592114449,-0.225692465901375,0.962184846401215,0.0647656545042992,-0.234001681208611,0.970076620578766,-0.104620523750782,-0.231089279055595,0.967291235923767,0.0649423897266388,-0.236615687608719,0.969430506229401,0.0478816851973534,-0.243590801954269,0.968695461750031,0.0625387355685234,-0.20149402320385,0.977491199970245,-0.140562444925308,-0.26525941491127,0.953876137733459,0.299008995294571,-0.180572852492332,0.937009751796722,-0.104999393224716,-0.236869350075722,0.965850949287415,-0.147707864642143,-0.225468009710312,0.962988376617432,0.063608780503273,-0.217013671994209,0.974093914031982,0.0473117046058178,-0.253071904182434,0.966289937496185,0.300259292125702,-0.187110751867294,0.935325682163239,-0.139228761196136,-0.272491693496704,0.952031433582306,-0.422034204006195,-0.272782653570175,0.864567399024963,-0.144321471452713,-0.244550660252571,0.958835899829865,-0.110018856823444,-0.318801462650299,0.941414594650269,0.0352693945169449,-0.198256298899651,0.979515433311462,-0.144185543060303,-0.245308056473732,0.958662867546082,-0.421829283237457,-0.27384215593338,0.864332556724548,0.462443828582764,-0.0119441840797663,0.886568129062653,0.00779716717079282,-0.153485506772995,0.988120138645172,0.272768259048462,-0.117573313415051,0.95486855506897,0.461953848600388,-0.00943777430802584,0.886853754520416,0.253632515668869,-0.0285148452967405,0.966880261898041,0.00532736908644438,-0.144169509410858,0.989538669586182,0.232725143432617,-0.0199440810829401,0.972338020801544,-0.00395849486812949,-0.109038263559341,0.994029700756073,-0.199159368872643,-0.177156910300255,0.963821053504944,-0.000279377738479525,-0.122977390885353,0.992409527301788,0.254980504512787,-0.0516014732420444,0.965568363666534,-0.0903857126832008,-0.119716517627239,0.988685190677643,
  1465. -0.0102437194436789,-0.085164949297905,0.996314227581024,-0.091877281665802,-0.111810922622681,0.989473044872284,-0.211859703063965,-0.138625830411911,0.967418491840363,0.255292326211929,-0.0572982393205166,0.965164721012115,0.143599152565002,-0.0633066669106483,0.987609028816223,-0.0905663147568703,-0.118761390447617,0.988783836364746,-0.182215541601181,-0.143598437309265,0.972716391086578,-0.227041155099869,-0.0907815173268318,0.969644904136658,-0.0931031629443169,-0.105284035205841,0.990074276924133,-0.0917283892631531,-0.112601846456528,0.989397168159485,0.144813477993011,-0.108879432082176,0.98345023393631,-0.184669822454453,-0.123117059469223,0.975058615207672,0.232835218310356,-0.314323008060455,0.920319974422455,-0.236411139369011,-0.443188637495041,0.864692807197571,0.0293123237788677,-0.42029732465744,0.906912863254547,0.232378274202347,-0.312235414981842,0.921145677566528,0.00921319611370564,-0.339057475328445,0.940720558166504,-0.239182233810425,-0.434274286031723,0.868445575237274,-0.0131373191252351,-0.328929156064987,0.944263219833374,-0.249401986598969,-0.400304287672043,0.88179087638855,-0.426642537117004,-0.438078910112381,0.791241466999054,-0.245380103588104,-0.413884401321411,0.876634657382965,0.0107115600258112,-0.358582407236099,0.933436632156372,-0.327903419733047,-0.399584770202637,0.856043994426727,-0.329106748104095,-0.393767416477203,0.85827499628067,-0.439268589019775,-0.401836752891541,0.803474068641663,-0.25607705116272,-0.377122908830643,0.890057802200317,0.0110828774049878,-0.363406151533127,0.93156486749649,-0.0983662679791451,-0.366499423980713,0.925203919410706,-0.328046798706055,-0.398895859718323,0.856310307979584,-0.419563382863998,-0.409180074930191,0.810270488262177,-0.453870624303818,-0.356201380491257,0.816775381565094,-0.330088913440704,-0.388959050178528,0.860088467597961,-0.32899010181427,-0.394334882497787,0.858059167861938,-0.0968078896403313,-0.410479366779327,0.906716585159302,-0.422076404094696,-0.392537981271744,0.817169308662415,0.150008037686348,-0.311456322669983,0.938345670700073,
  1466. 0.239381670951843,-0.301891088485718,0.922799110412598,0.136095896363258,-0.308377802371979,0.941478133201599,0.390341550111771,-0.268388748168945,0.880682110786438,0.239316940307617,-0.300532072782516,0.923259377479553,0.149975135922432,-0.310829520225525,0.9385586977005,-0.0244830157607794,-0.310934334993362,0.950115978717804,0.150155410170555,-0.314277917146683,0.937380790710449,0.134105861186981,-0.321540951728821,0.937351047992706,0.14820758998394,-0.278641879558563,0.948890507221222,-0.054639857262373,-0.348372012376785,0.935762465000153,0.386899441480637,-0.249595820903778,0.887699663639069,-0.024918545037508,-0.316465497016907,0.948276698589325,-0.0624189637601376,-0.30552875995636,0.950134873390198,0.149176821112633,-0.295946598052979,0.943484008312225,0.127393022179604,-0.335644483566284,0.933334767818451,0.388092458248138,-0.256022572517395,0.88534551858902,-0.053291667252779,-0.35565972328186,0.933094918727875,-0.340287625789642,-0.349154382944107,0.873095393180847,-0.0594488568603992,-0.322047829627991,0.944855034351349,-0.0311760026961565,-0.39593517780304,0.917749106884003,0.113168895244598,-0.272920966148376,0.955357074737549,-0.0592807121574879,-0.322977006435394,0.944548368453979,-0.340102046728134,-0.350152671337128,0.872767865657806,-0.0720192715525627,-0.709728062152863,0.700784802436829,0.0164998769760132,-0.704794585704803,0.709219515323639,-0.0953221172094345,-0.706855058670044,0.700906336307526,0.0862664133310318,-0.70203709602356,0.706896066665649,0.0173498559743166,-0.710418581962585,0.70356547832489,-0.0708719864487648,-0.716581165790558,0.693893790245056,-0.255905002355576,-0.692271590232849,0.674739062786102,-0.0717452690005302,-0.711374700069427,0.699141383171082,-0.0964424684643745,-0.716290235519409,0.691105842590332,-0.0720265209674835,-0.709684491157532,0.700828194618225,-0.262027502059937,-0.735236048698425,0.625115633010864,0.087526336312294,-0.704860746860504,0.703925132751465,-0.256009489297867,-0.696395993232727,0.670441448688507,-0.278092354536057,-0.684009969234467,0.674384951591492,
  1467. -0.0742760375142097,-0.695924341678619,0.714263498783112,-0.167745053768158,-0.771530747413635,0.613678991794586,0.0869368836283684,-0.703540861606598,0.705317139625549,-0.259919315576553,-0.741371333599091,0.618716835975647,-0.543906390666962,-0.653415381908417,0.526511311531067,-0.27410688996315,-0.697514712810516,0.662071526050568,-0.256507933139801,-0.752815365791321,0.606195330619812,-0.254428863525391,-0.636298537254334,0.728278875350952,-0.273908078670502,-0.698173701763153,0.661458849906921,-0.543919205665588,-0.653366386890411,0.526558876037598,0.187150284647942,0.946889996528625,-0.261484354734421,-0.0183790698647499,0.927526295185089,-0.373305797576904,-0.148336172103882,0.923617660999298,-0.35344985127449,0.186728373169899,0.947475731372833,-0.259658366441727,-0.150010392069817,0.925563871860504,-0.347604095935822,-0.0305127687752247,0.957753658294678,-0.285966694355011,-0.0653049275279045,0.958610594272614,-0.277129948139191,-0.376038640737534,0.847301542758942,-0.375067055225372,-0.156526535749435,0.932841897010803,-0.324508041143417,-0.151391237974167,0.927145779132843,-0.342755615711212,-0.258524656295776,0.903904616832733,-0.34076601266861,-0.0277455225586891,0.948824346065521,-0.314583450555801,-0.161760345101357,0.938335657119751,-0.305548757314682,-0.390566468238831,0.858112394809723,-0.333318084478378,-0.256181806325912,0.899539768695831,-0.353834837675095,-0.0278311632573605,0.949112236499786,-0.313705891370773,-0.259287565946579,0.905307829380035,-0.336433798074722,-0.159281268715858,0.934063374996185,-0.319617182016373,-0.39359924197197,0.860214829444885,-0.324206799268723,-0.394727528095245,0.853246569633484,-0.340823292732239,-0.259797483682632,0.90624064207077,-0.333516418933868,-0.259640693664551,0.905954241752625,-0.334415346384048,-0.394733369350433,0.853257656097412,-0.340788722038269,-0.157541513442993,0.926249921321869,-0.342405796051025,0.0648862943053246,0.221911758184433,0.972905516624451,0.148681119084358,0.224846303462982,0.962983965873718,0.0478016585111618,0.226519078016281,0.972833037376404,
  1468. 0.307424604892731,0.23548786342144,0.921973764896393,0.148613721132278,0.225969895720482,0.962731301784515,0.0649572685360909,0.220942303538322,0.973121285438538,-0.10647527128458,0.223462000489235,0.968879640102386,0.0650578215718269,0.219567507505417,0.973425805568695,0.0459154471755028,0.212965860962868,0.975980162620544,0.0625834763050079,0.252779632806778,0.965497672557831,-0.13993738591671,0.188635423779488,0.972025811672211,0.303713619709015,0.255692720413208,0.91781222820282,-0.106867462396622,0.21751007437706,0.970190048217773,-0.146621122956276,0.226530104875565,0.962905168533325,0.0635218024253845,0.240335181355476,0.96860933303833,0.0460537634789944,0.202024027705193,0.978297173976898,0.304927051067352,0.249177888035774,0.919200658798218,-0.138654083013535,0.181465461850166,0.973573505878448,-0.42154324054718,0.140371009707451,0.895877957344055,-0.143140971660614,0.206681460142136,0.96788090467453,-0.111951343715191,0.133103460073471,0.984759032726288,0.0334047302603722,0.259039789438248,0.965288937091827,-0.143022105097771,0.206008151173592,0.968042016029358,-0.421372503042221,0.13946308195591,0.896100163459778,0.458962261676788,0.38362979888916,0.801362633705139,0.0033483449369669,0.303843706846237,0.952715992927551,0.273115366697311,0.319782227277756,0.907274663448334,0.458459287881851,0.386057049036026,0.800484418869019,0.255371063947678,0.404026567935944,0.87837827205658,0.00103963748551905,0.312388688325882,0.94995379447937,0.233260810375214,0.414720863103867,0.87954306602478,-0.00758456811308861,0.344068080186844,0.938914060592651,-0.193780079483986,0.271664202213287,0.942681193351746,-0.00419144472107291,0.331649363040924,0.943393528461456,0.256740003824234,0.383197903633118,0.887267708778381,-0.0923677980899811,0.332214891910553,0.938670039176941,-0.0134447021409869,0.365377426147461,0.930762469768524,-0.093848317861557,0.339598566293716,0.935876786708832,-0.2066870033741,0.308136105537415,0.928618669509888,0.257058411836624,0.378012329339981,0.889397382736206,0.149629965424538,0.382511734962463,0.911754131317139,
  1469. -0.0925448462367058,0.33309742808342,0.93833976984024,-0.182187780737877,0.304411679506302,0.934955179691315,-0.222159996628761,0.352505475282669,0.909057140350342,-0.0950499773025513,0.34559765458107,0.933556497097015,-0.0936917960643768,0.338817566633224,0.936175465583801,0.150785014033318,0.339323490858078,0.928506135940552,-0.184609562158585,0.323364585638046,0.928091943264008,0.230962231755257,0.127036780118942,0.964633643627167,-0.234803676605225,-0.0133266355842352,0.971951484680176,0.0307970065623522,0.0278487224131823,0.99913763999939,0.230363920331001,0.12986034154892,0.964400708675385,0.00752102350816131,0.11462127417326,0.993380784988403,-0.237665981054306,-0.00345274060964584,0.971340835094452,-0.0114625208079815,0.126018494367599,0.991961658000946,-0.24824146926403,0.0338156633079052,0.968107879161835,-0.429846912622452,-0.0420522205531597,0.901921987533569,-0.244070783257484,0.0189656391739845,0.969572067260742,0.00902086775749922,0.09393610060215,0.995537459850311,-0.325942784547806,0.0253562908619642,0.945049405097961,-0.326666831970215,0.0291980858892202,0.944688439369202,-0.442602008581162,-0.00388845684938133,0.896709740161896,-0.255138546228409,0.0588355325162411,0.965112805366516,0.00939266663044691,0.0887936651706696,0.996005773544312,-0.0977538377046585,0.0832659974694252,0.991721212863922,-0.326027363538742,0.0258036889135838,0.945008099079132,-0.420527219772339,-0.00758190220221877,0.907248258590698,-0.457310944795609,0.0431269071996212,0.888260662555695,-0.327280163764954,0.0324732102453709,0.944369196891785,-0.326620697975159,0.0289524029940367,0.944711983203888,-0.0961625799536705,0.0359809249639511,0.994715094566345,-0.42320841550827,0.0121232811361551,0.905951261520386,0.15214566886425,0.138486668467522,0.978607773780823,0.233559891581535,0.139713540673256,0.962252616882324,0.132734820246696,0.14305068552494,0.980774164199829,0.391917824745178,0.151295125484467,0.907474637031555,0.233472838997841,0.141817212104797,0.96196585893631,0.152139157056808,0.138608619570732,0.978591501712799,
  1470. -0.0209648758172989,0.143883407115936,0.989372551441193,0.152292877435684,0.135713681578636,0.978973269462585,0.130823031067848,0.129616633057594,0.982896149158478,0.150285586714745,0.171683073043823,0.973621666431427,-0.0582321062684059,0.105241410434246,0.992740392684937,0.388481587171555,0.17159004509449,0.905339241027832,-0.0213967878371477,0.138147816061974,0.990180492401123,-0.0655788630247116,0.148343741893768,0.986759126186371,0.151214435696602,0.155509606003761,0.976192057132721,0.129600331187248,0.115449316799641,0.984822452068329,0.389637470245361,0.16487991809845,0.906089007854462,-0.0569257624447346,0.0976250320672989,0.993593871593475,-0.344523042440414,0.0746627300977707,0.935804128646851,-0.062517486512661,0.130327090620995,0.98949807882309,-0.0276594888418913,0.0533355921506882,0.998193502426147,0.115673437714577,0.180442094802856,0.97676020860672,-0.0623661056160927,0.129438251256943,0.989624381065369,-0.344368726015091,0.0737665742635727,0.935931980609894,-0.0764489322900772,-0.324311047792435,0.942856252193451,0.0100732743740082,-0.316524833440781,0.948530733585358,-0.095514640212059,-0.32125198841095,0.942164599895477,0.0857318341732025,-0.314469963312149,0.94538813829422,0.0108926510438323,-0.323890149593353,0.946032106876373,-0.0752938017249107,-0.333551734685898,0.939720213413239,-0.24932898581028,-0.320297569036484,0.913917124271393,-0.0761784687638283,-0.326482713222504,0.942128479480743,-0.0966494157910347,-0.334088385105133,0.937573492527008,-0.0764461010694504,-0.324334293603897,0.94284850358963,-0.258384466171265,-0.378986150026321,0.888598322868347,0.0870283469557762,-0.318418592214584,0.943946957588196,-0.249454706907272,-0.326330363750458,0.911746025085449,-0.274042040109634,-0.312232673168182,0.909621775150299,-0.0787146613001823,-0.305919408798218,0.948797821998596,-0.16852542757988,-0.417631685733795,0.892851054668427,0.0863883420825005,-0.316469520330429,0.944660842418671,-0.256205528974533,-0.387702912092209,0.885463237762451,-0.544730007648468,-0.350983500480652,0.761629700660706,
  1471. -0.269972711801529,-0.330329805612564,0.904431819915771,-0.250147342681885,-0.406098604202271,0.878925621509552,-0.253715306520462,-0.247025892138481,0.935204148292542,-0.269787192344666,-0.331141442060471,0.904190361499786,-0.544745624065399,-0.350903987884521,0.761655151844025,0.221342921257019,0.970358788967133,0.0970112904906273,0.0203037708997726,0.999769628047943,-0.00697447033599019,-0.108443021774292,0.994056284427643,0.00960368383675814,0.220868736505508,0.97024005651474,0.0992535203695297,-0.110029764473438,0.99380350112915,0.0157558210194111,0.00919755548238754,0.996548652648926,0.0825008749961853,-0.0231594424694777,0.995515823364258,0.0917162150144577,-0.339705944061279,0.939886450767517,-0.0348332747817039,-0.116215631365776,0.992422342300415,0.0399005599319935,-0.111329212784767,0.993565738201141,0.0208065658807755,-0.226017311215401,0.974006295204163,0.0150964399799705,0.0115960529074073,0.998556673526764,0.0524414628744125,-0.121217638254166,0.99083411693573,0.0596159622073174,-0.353642195463181,0.935347557067871,0.00788607727736235,-0.223639026284218,0.974671959877014,-0.000342237821314484,0.0115249920636415,0.998510301113129,0.0533346310257912,-0.226686730980873,0.973772346973419,0.0195075273513794,-0.120868802070618,0.991680264472961,0.0442831367254257,-0.356602489948273,0.934096992015839,0.0172537844628096,-0.365558594465256,0.930785536766052,-0.00228886352851987,-0.22695080935955,0.973674356937408,0.021256148815155,-0.226879894733429,0.973700881004334,0.0207861810922623,-0.365536630153656,0.930793762207031,-0.00243632635101676,-0.119445808231831,0.992637753486633,0.0200756546109915,-0.115691639482975,0.3740194439888,0.920176565647125,0.00442666281014681,0.367734283208847,0.929920375347137,0.0381215438246727,0.348508208990097,0.93653017282486,-0.118698112666607,0.35599946975708,0.926917016506195,-0.178194418549538,0.359608173370361,0.91593062877655,0.00443082489073277,0.367355525493622,0.930070042610168,0.0468273125588894,0.385695248842239,0.92143714427948,0.00446473294869065,0.3642638027668,0.931285083293915,
  1472. 0.196131780743599,0.355446815490723,0.91388726234436,0.00442415708675981,0.367962539196014,0.929830193519592,-0.178216636180878,0.360522031784058,0.915566861629486,-0.0920016020536423,0.379954159259796,0.920418798923492,0.196555525064468,0.361391484737396,0.911461532115936,0.00445978948846459,0.364714950323105,0.93110853433609,0.0986367836594582,0.350403696298599,0.931390404701233,0.0946455448865891,0.380677938461304,0.919851362705231,0.00439161574468017,0.370919525623322,0.928654730319977,-0.0879842415452003,0.356870740652084,0.930001080036163,-0.116330064833164,0.714894652366638,-0.689487457275391,0.00603138329461217,0.726540565490723,-0.687097132205963,0.0409429743885994,0.740110337734222,-0.671237945556641,-0.119652196764946,0.728399693965912,-0.674623787403107,-0.182927861809731,0.716180860996246,-0.67351496219635,0.00602360395714641,0.726216316223145,-0.687439858913422,0.0492295026779175,0.713013768196106,-0.699419617652893,0.00611696252599359,0.730090618133545,-0.68332302570343,0.194003000855446,0.716463387012482,-0.670106768608093,0.00601014867424965,0.725656807422638,-0.688030540943146,-0.182948514819145,0.715529978275299,-0.674200892448425,-0.0936041176319122,0.713132083415985,-0.694752514362335,0.194309547543526,0.712616980075836,-0.674107432365417,0.00611789245158434,0.730129837989807,-0.683281064033508,0.0999802872538567,0.733764708042145,-0.672006905078888,0.0965233445167542,0.713186085224152,-0.69429737329483,0.00598349794745445,0.724550068378448,-0.689196228981018,-0.0892918035387993,0.731397092342377,-0.676080822944641,-0.116271585226059,-0.689744651317596,-0.714656054973602,0.00602542608976364,-0.687358736991882,-0.726293087005615,0.0410165935754776,-0.671492040157318,-0.739875733852386,-0.119623273611069,-0.674755394458771,-0.728282511234283,-0.182931825518608,-0.67364639043808,-0.716056227684021,0.00602056132629514,-0.687573432922363,-0.726089894771576,0.0493069253861904,-0.699678897857666,-0.712754011154175,0.00611047772690654,-0.683609664440155,-0.729822218418121,0.194024503231049,-0.670385539531708,-0.716196715831757,
  1473. 0.00600667530670762,-0.688182890415192,-0.725512385368347,-0.182952985167503,-0.674349904060364,-0.715388298034668,-0.093637228012085,-0.694895029067993,-0.7129887342453,0.194332852959633,-0.674413919448853,-0.712320625782013,0.0061106258071959,-0.683602392673492,-0.729829072952271,0.0999318659305573,-0.672327756881714,-0.733477354049683,0.0964615345001221,-0.694685041904449,-0.712816953659058,0.00597459077835083,-0.689585864543915,-0.724179267883301,-0.0893795937299728,-0.676462948322296,-0.731032967567444,-0.116303026676178,0.642132759094238,-0.757719695568085,0.00433514453470707,0.653666198253632,-0.756770610809326,0.0395698063075542,0.668304562568665,-0.742834687232971,-0.119428627192974,0.65671306848526,-0.744623899459839,-0.179965123534203,0.645131230354309,-0.742575407028198,0.00432874308899045,0.653381109237671,-0.757016777992249,0.047513023018837,0.639205396175385,-0.767566919326782,0.00442887097597122,0.657817482948303,-0.753164350986481,0.19496351480484,0.645727097988129,-0.738258600234985,0.00431379303336143,0.652717530727386,-0.757589101791382,-0.179984569549561,0.644408941268921,-0.743197619915009,-0.0824679583311081,0.639027833938599,-0.764749944210052,0.195360943675041,0.640956521034241,-0.742299735546112,0.00442955177277327,0.657848417758942,-0.753137469291687,0.099885456264019,0.662398219108582,-0.742463111877441,0.0964422151446342,0.639564096927643,-0.762664318084717,0.00428225658833981,0.651319146156311,-0.758791983127594,-0.0783277153968811,0.658532798290253,-0.748464643955231,-0.116577744483948,-0.576211810112,-0.808943510055542,0.0083948653191328,-0.572949349880219,-0.819547772407532,0.0448039919137955,-0.554593563079834,-0.830914318561554,-0.119341894984245,-0.560829877853394,-0.819284677505493,-0.17730575799942,-0.561606585979462,-0.808183610439301,0.00839270651340485,-0.573065102100372,-0.819466888904572,0.0530088879168034,-0.58627462387085,-0.808376252651215,0.00847231596708298,-0.568832039833069,-0.822410047054291,0.198358297348022,-0.556577861309052,-0.806768298149109,0.00838011410087347,-0.573731899261475,-0.81900030374527,
  1474. -0.177324518561363,-0.562367618083954,-0.807650089263916,-0.0879420712590218,-0.583272457122803,-0.807501971721649,0.198748186230659,-0.561623513698578,-0.803167581558228,0.00847094878554344,-0.568903982639313,-0.822360336780548,0.103032857179642,-0.556648433208466,-0.824334144592285,0.0992969125509262,-0.582686901092529,-0.806607782840729,0.00834700185805559,-0.575479030609131,-0.817773938179016,-0.08379115909338,-0.562660336494446,-0.822430789470673,-0.116578243672848,-0.576209187507629,-0.808945417404175,0.0083949314430356,-0.572945952415466,-0.819550275802612,0.0448033884167671,-0.554591178894043,-0.830915927886963,-0.119340911507607,-0.560835480690002,-0.819280982017517,-0.177305907011032,-0.561612606048584,-0.808179378509521,0.00839259102940559,-0.573071241378784,-0.819462597370148,0.0530218295753002,-0.586324095726013,-0.808339476585388,0.00847121886909008,-0.568890511989594,-0.822369635105133,0.198362618684769,-0.556633293628693,-0.806728959083557,0.00838010478764772,-0.573732435703278,-0.818999946117401,-0.177324533462524,-0.562368094921112,-0.807649791240692,-0.0879420563578606,-0.583272337913513,-0.807502031326294,0.198751524090767,-0.561666786670685,-0.803136646747589,0.00847010966390371,-0.568948686122894,-0.82232940196991,0.10302671790123,-0.556692242622375,-0.824305295944214,0.0993016585707664,-0.582654595375061,-0.806630492210388,0.00834759790450335,-0.575447559356689,-0.817796051502228,-0.0837846696376801,-0.562628030776978,-0.822453558444977,-0.116297535598278,0.0714671239256859,0.990639865398407,0.0073735392652452,0.0616323985159397,0.998071789741516,0.048656240105629,0.0401279963552952,0.998009204864502,-0.119689978659153,0.0511176437139511,0.991494476795197,-0.182456240057945,0.0581850446760654,0.981490910053253,0.0073789949528873,0.0609796456992626,0.998111724853516,0.0565323010087013,0.0782053992152214,0.995333135128021,0.00740226078778505,0.0581907406449318,0.998278021812439,0.193607717752457,0.0554557628929615,0.979510545730591,0.007373898755759,0.0615896172821522,0.998074412345886,-0.182475075125694,0.0591127797961235,0.981431901454926,
  1475. -0.0922376066446304,0.07626573741436,0.992812037467957,0.193950489163399,0.0612865090370178,0.979095101356506,0.00739703606814146,0.0588174872100353,0.998241364955902,0.0975256115198135,0.0454502776265144,0.994194686412811,0.0939372777938843,0.0763102173805237,0.992649257183075,0.00734448619186878,0.0651018917560577,0.997851610183716,-0.0881918370723724,0.0512444712221622,0.994784593582153,-0.109043784439564,-0.568811178207397,-0.815207540988922,0.00853783544152975,-0.565333306789398,-0.82481837272644,0.0429175458848476,-0.547224879264832,-0.835884571075439,-0.112209118902683,-0.552403509616852,-0.82599002122879,-0.177117690443993,-0.554272830486298,-0.813271760940552,0.00853269081562757,-0.565610289573669,-0.824628531932831,0.0511972233653069,-0.579331338405609,-0.813482701778412,0.00861163530498743,-0.561365187168121,-0.827523410320282,0.199840724468231,-0.5493985414505,-0.811310648918152,0.00852035358548164,-0.566271126270294,-0.824175119400024,-0.177138671278954,-0.555066168308258,-0.812726080417633,-0.0927370116114616,-0.574708700180054,-0.813086569309235,0.200133666396141,-0.553859055042267,-0.808199644088745,0.00861120317131281,-0.561387479305267,-0.827508270740509,0.096749871969223,-0.549483954906464,-0.829883635044098,0.0933679863810539,-0.574502527713776,-0.813160061836243,0.00848867557942867,-0.567961394786835,-0.82301139831543,-0.0887767598032951,-0.554436862468719,-0.827477157115936,-0.0458031855523586,-0.994733989238739,0.0916875079274178,0.0817433223128319,-0.992708384990692,0.0885905027389526,0.115083001554012,-0.991006016731262,0.0682862550020218,-0.0478772632777691,-0.996226727962494,0.0723885148763657,-0.108326822519302,-0.991176187992096,0.0763888284564018,0.0817449763417244,-0.992710530757904,0.0885641053318977,0.121611945331097,-0.986692190170288,0.107931651175022,0.0820450931787491,-0.993101298809052,0.0837760418653488,0.27009916305542,-0.958716452121735,0.0889347791671753,0.0816925764083862,-0.992640197277069,0.0893968194723129,-0.108398959040642,-0.9910888671875,0.0774113610386848,-0.0206202417612076,-0.994938969612122,0.0983427166938782,
  1476. 0.270129948854446,-0.958190202713013,0.0943468511104584,0.0820428058505058,-0.993098378181458,0.0838126614689827,0.171986356377602,-0.98219507932663,0.0755877122282982,0.166791573166847,-0.980191826820374,0.1067920550704,0.0815524086356163,-0.992449045181274,0.0916193798184395,-0.0155136454850435,-0.997138440608978,0.0739881470799446,-0.177230954170227,0.320847541093826,0.930401027202606,-0.0582513473927975,0.323856890201569,0.944311141967773,-0.0190475340932608,0.306650757789612,0.951631486415863,-0.178967401385307,0.302745163440704,0.93611752986908,-0.241588771343231,0.302050590515137,0.922171533107758,-0.0582467019557953,0.323795914649963,0.944332420825958,-0.0133713884279132,0.342906028032303,0.939274549484253,-0.0578804686665535,0.31899955868721,0.945985794067383,0.134352758526802,0.326138019561768,0.93572610616684,-0.0583045817911625,0.324555099010468,0.944068074226379,-0.241657644510269,0.302904516458511,0.921873331069946,-0.151166960597038,0.329185783863068,0.932086527347565,0.134368896484375,0.331745207309723,0.933750569820404,-0.0578904561698437,0.319130182266235,0.945941150188446,0.0357676558196545,0.313968151807785,0.94875955581665,0.0305807590484619,0.342462122440338,0.939033925533295,-0.0584564916789532,0.326548516750336,0.943371057510376,-0.146233752369881,0.307216763496399,0.940336942672729,-0.149851217865944,-0.0831398740410805,0.985206782817841,-0.0243316516280174,-0.0835488885641098,0.99620658159256,0.0107431830838323,-0.101910315454006,0.994735598564148,-0.151437342166901,-0.102814637124538,0.98310524225235,-0.213224947452545,-0.0988923460245132,0.971985399723053,-0.024311849847436,-0.0837691128253937,0.996188580989838,0.0157502479851246,-0.0630702301859856,0.997884809970856,-0.0239597875624895,-0.0876825898885727,0.995860278606415,0.159288331866264,-0.0739640519022942,0.984457492828369,-0.0243732240051031,-0.083086334168911,0.996244251728058,-0.213317260146141,-0.0979631543159485,0.97205913066864,-0.127915278077126,-0.0756700932979584,0.988894283771515,0.159210816025734,-0.0676017478108406,0.984927356243134,
  1477. -0.0239929147064686,-0.0873146280646324,0.995891809463501,0.066647432744503,-0.0921278670430183,0.993514239788055,0.0606482774019241,-0.0617156028747559,0.996249437332153,-0.0246183108538389,-0.0803582444787025,0.996461987495422,-0.121616221964359,-0.101242400705814,0.987400472164154,-0.101954348385334,0.380011647939682,-0.919345676898956,0.0141195226460695,0.398785471916199,-0.916935563087463,0.0494346730411053,0.420690059661865,-0.905856549739838,-0.106557905673981,0.39717036485672,-0.911537766456604,-0.172309190034866,0.381027430295944,-0.908365368843079,0.0141580477356911,0.39825177192688,-0.917166888713837,0.0610939003527164,0.385285913944244,-0.920772671699524,0.0137470299378037,0.40393540263176,-0.914684236049652,0.203968957066536,0.410511791706085,-0.888750076293945,0.0142178665846586,0.397422671318054,-0.91752552986145,-0.172248125076294,0.380145698785782,-0.908746302127838,-0.0802818015217781,0.376509845256805,-0.922927498817444,0.204783096909523,0.40527018904686,-0.89096587896347,0.0137331178411841,0.404127389192581,-0.914599597454071,0.108609862625599,0.418410927057266,-0.901740670204163,0.107703097164631,0.390266865491867,-0.914380550384521,0.0143129760399461,0.396103382110596,-0.918094336986542,-0.078329049050808,0.400153636932373,-0.913094520568848,-0.0467048361897469,-0.717982947826386,0.694491982460022,0.0796341672539711,-0.718704998493195,0.690739929676056,0.111522234976292,-0.729899942874908,0.674395203590393,-0.0488911680877209,-0.73149049282074,0.680096626281738,-0.109365850687027,-0.725005328655243,0.680004715919495,0.0796148106455803,-0.718500971794128,0.690954327583313,0.118082664906979,-0.70164281129837,0.702676236629486,0.0799815133213997,-0.72236967086792,0.686866104602814,0.26799413561821,-0.692189872264862,0.670113682746887,0.0795554965734482,-0.717875480651855,0.691611051559448,-0.109436862170696,-0.724305152893066,0.680739045143127,-0.0152182634919882,-0.713318884372711,0.70067435503006,0.268012434244156,-0.688514709472656,0.673881947994232,0.0799928903579712,-0.722489714622498,0.68673849105835,
  1478. 0.175035983324051,-0.717647612094879,0.674050688743591,0.169945642352104,-0.696777164936066,0.696864485740662,0.0794424936175346,-0.716684341430664,0.692858159542084,-0.00996481813490391,-0.730569362640381,0.682765781879425,-0.177803963422775,0.832941770553589,0.524016916751862,-0.0567408613860607,0.843923926353455,0.533453702926636,-0.0211491491645575,0.835075199604034,0.54972916841507,-0.179805070161819,0.821842908859253,0.540596306324005,-0.243524566292763,0.812446713447571,0.529741525650024,-0.0567480698227882,0.843976199626923,0.53337025642395,-0.0154899647459388,0.855582296848297,0.51743495464325,-0.0563465058803558,0.841059744358063,0.537999629974365,0.137490347027779,0.839807391166687,0.525185644626617,-0.0568096488714218,0.844422280788422,0.532657146453857,-0.243580862879753,0.812863290309906,0.529076218605042,-0.150104910135269,0.840808928012848,0.520104885101318,0.137502729892731,0.842913508415222,0.520182490348816,-0.0563490130007267,0.841078042984009,0.537970960140228,0.0376020446419716,0.838683128356934,0.543320059776306,0.0321484059095383,0.85527378320694,0.517178177833557,-0.056947223842144,0.845417678356171,0.531061172485352,-0.144871935248375,0.828425288200378,0.541039407253265,-0.1530901491642,0.552037358283997,0.819645166397095,-0.0224634036421776,0.558769464492798,0.829018771648407,0.0113003887236118,0.5428067445755,0.839781582355499,-0.154715001583099,0.535251080989838,0.83040326833725,-0.214587062597275,0.531218349933624,0.819609344005585,-0.0224488526582718,0.558635771274567,0.829109251499176,0.0166721902787685,0.575948297977448,0.817316114902496,-0.0220821145921946,0.555261492729187,0.831382632255554,0.16183066368103,0.558647036552429,0.813464522361755,-0.0225117690861225,0.559214055538177,0.828717589378357,-0.214665308594704,0.531899094581604,0.819147229194641,-0.129176899790764,0.559810042381287,0.818490087985992,0.161735028028488,0.563677430152893,0.810005903244019,-0.0221117213368416,0.555534064769745,0.831199705600739,0.0634030252695084,0.549764215946198,0.832910180091858,0.0573853217065334,0.575232267379761,0.815974771976471,
  1479. -0.0227495860308409,0.561398208141327,0.827233076095581,-0.122863970696926,0.538906872272491,0.833356976509094,-0.103797756135464,-0.279834866523743,-0.954420506954193,0.0186169296503067,-0.262705385684967,-0.96469646692276,0.0491758920252323,-0.239439934492111,-0.969664990901947,-0.108521193265915,-0.261299639940262,-0.959137976169586,-0.169955104589462,-0.271595895290375,-0.947286069393158,0.0186401102691889,-0.263032168149948,-0.964607000350952,0.0606106035411358,-0.275989919900894,-0.959247589111328,0.018262593075633,-0.257705897092819,-0.966050803661346,0.200797557830811,-0.236971288919449,-0.950539410114288,0.018697751685977,-0.263845473527908,-0.964383721351624,-0.169894710183144,-0.272502213716507,-0.947036623954773,-0.0801486149430275,-0.284246653318405,-0.955395221710205,0.201615825295448,-0.242465063929558,-0.948979318141937,0.0182600244879723,-0.257669866085052,-0.9660604596138,0.107244558632374,-0.238507002592087,-0.965201020240784,0.106390327215195,-0.268048346042633,-0.957513034343719,0.0188241023570299,-0.2656289935112,-0.963891565799713,-0.0782074704766274,-0.259711861610413,-0.962514102458954,-0.109686337411404,-0.571282982826233,0.813390851020813,0.00915607158094645,-0.581410527229309,0.81355881690979,0.0423376746475697,-0.597807943820953,0.800520539283752,-0.112616434693336,-0.58654397726059,0.802049696445465,-0.178376242518425,-0.574233293533325,0.79902321100235,0.00915751978754997,-0.581502556800842,0.813493072986603,0.0506227649748325,-0.565740764141083,0.823027908802032,0.00921036582440138,-0.584858238697052,0.811083257198334,0.197216421365738,-0.574590444564819,0.794324517250061,0.00914822891354561,-0.580912590026855,0.81391453742981,-0.178396135568619,-0.573466241359711,0.799569427967072,-0.0857488438487053,-0.566842436790466,0.819351434707642,0.197603195905685,-0.569536805152893,0.797860145568848,0.00920677743852139,-0.584630310535431,0.811247587203979,0.101107746362686,-0.59194278717041,0.799612998962402,0.0970559418201447,-0.565654098987579,0.818911254405975,0.00911383703351021,-0.57872861623764,0.815469264984131,
  1480. -0.0819433778524399,-0.586823523044586,0.80555784702301,-0.119906671345234,0.966682910919189,0.22615647315979,0.0113893253728747,0.971303820610046,0.237569332122803,0.0434997566044331,0.965204417705536,0.257853448390961,-0.12298247218132,0.961717486381531,0.244897946715355,-0.181322440505028,0.954642057418823,0.236179500818253,0.0113882925361395,0.971322536468506,0.237492695450783,0.0516769923269749,0.974116444587708,0.220060452818871,0.0114505821838975,0.970205962657928,0.242010906338692,0.19746096432209,0.950902760028839,0.238313600420952,0.011378507129848,0.971495568752289,0.236784428358078,-0.181340560317039,0.954854607582092,0.235304564237595,-0.0939442962408066,0.970387160778046,0.222538650035858,0.197774782776833,0.95218950510025,0.232852503657341,0.0114479130133986,0.970253944396973,0.241818532347679,0.102646566927433,0.96246349811554,0.2512526512146,0.0992483422160149,0.96996009349823,0.222097173333168,0.011348626576364,0.972018957138062,0.234628021717072,-0.0898604020476341,0.964768469333649,0.247279062867165,-0.119851894676685,0.225824519991875,-0.966767191886902,0.0113846128806472,0.237228393554688,-0.971387207508087,0.0435710586607456,0.257527023553848,-0.96528834104538,-0.12295201420784,0.244711384177208,-0.961768865585327,-0.181326448917389,0.235987320542336,-0.954688906669617,0.0113855926319957,0.237297400832176,-0.971370339393616,0.0517566613852978,0.219688683748245,-0.974196135997772,0.0114451479166746,0.24161671102047,-0.970304250717163,0.197483479976654,0.237924978137016,-0.950995266437531,0.0113754570484161,0.236563861370087,-0.971549451351166,-0.181345000863075,0.235088601708412,-0.95490700006485,-0.0939790531992912,0.222325697541237,-0.97043251991272,0.197798654437065,0.232432410120964,-0.952287197113037,0.0114419646561146,0.241387099027634,-0.970361471176147,0.102598085999489,0.250832676887512,-0.962578117847443,0.099186010658741,0.221567720174789,-0.970087587833405,0.0113412411883473,0.234094753861427,-0.972147643566132,-0.0899474248290062,0.246757283806801,-0.964893937110901,-0.117093808948994,0.984820544719696,0.128130853176117,
  1481. 0.00997854769229889,0.990315079689026,0.138479337096214,0.0396659038960934,0.986574232578278,0.158423826098442,-0.12020181119442,0.981734812259674,0.147473096847534,-0.180281162261963,0.973746001720428,0.138987943530083,0.00997856631875038,0.990315139293671,0.138478860259056,0.0477025434374809,0.991582930088043,0.120365232229233,0.0100512858480215,0.989605665206909,0.143455728888512,0.191261515021324,0.971291363239288,0.141464307904243,0.00996680185198784,0.990427255630493,0.137675344944,-0.180296421051025,0.973866641521454,0.13811956346035,-0.0842929854989052,0.988934457302094,0.122080124914646,0.191601619124413,0.972050905227661,0.135668158531189,0.0100487293675542,0.989630997180939,0.143281906843185,0.0975833460688591,0.983250081539154,0.153937488794327,0.0941028445959091,0.987853765487671,0.123651303350925,0.00993241090327501,0.990750551223755,0.135332629084587,-0.0801253542304039,0.985829889774323,0.1473748087883,-0.114725708961487,0.366722345352173,-0.923229515552521,0.013237914070487,0.377687305212021,-0.925838589668274,0.0476690419018269,0.397702246904373,-0.916275501251221,-0.117784321308136,0.384572565555573,-0.915549576282501,-0.181033298373222,0.37389275431633,-0.909632444381714,0.0132416253909469,0.377981394529343,-0.925718486309052,0.0559897273778915,0.36133348941803,-0.930754125118256,0.0132869379594922,0.381608128547668,-0.924228727817535,0.195981279015541,0.375705599784851,-0.905779600143433,0.0132334427908063,0.37732806801796,-0.925985097885132,-0.181044563651085,0.37317630648613,-0.909924328327179,-0.0829336047172546,0.361421078443527,-0.928707182407379,0.196364790201187,0.369984447956085,-0.908048689365387,0.0132823288440704,0.381240725517273,-0.924380362033844,0.10328946262598,0.390678972005844,-0.914713859558105,0.099395178258419,0.361112356185913,-0.9272101521492,0.0131999179720879,0.374660462141037,-0.927068114280701,-0.078889437019825,0.38481816649437,-0.919614851474762,-0.11472550034523,0.366721123456955,-0.923230051994324,0.0132379177957773,0.377687633037567,-0.92583841085434,0.0476694330573082,0.397700577974319,-0.916276216506958,
  1482. -0.117781475186348,0.384555965662003,-0.915556788444519,-0.181033536791801,0.373877495527267,-0.909638643264771,0.0132414307445288,0.377965837717056,-0.925724864006042,0.05600381270051,0.361271142959595,-0.930777609348297,0.0132860718294978,0.381538808345795,-0.924257338047028,0.195985838770866,0.375638335943222,-0.905806481838226,0.013233307749033,0.377317309379578,-0.925989508628845,-0.181044727563858,0.373165816068649,-0.909928619861603,-0.0829349160194397,0.361413359642029,-0.928709983825684,0.196367904543877,0.36993744969368,-0.908067166805267,0.0132817290723324,0.381192684173584,-0.924400329589844,0.103283382952213,0.390632450580597,-0.914734423160553,0.0993994325399399,0.361144542694092,-0.92719703912735,0.0132003277540207,0.374693036079407,-0.927054941654205,-0.0788838863372803,0.384849905967712,-0.919602036476135,-0.115073829889297,-0.793670058250427,0.59736579656601,0.0126743512228131,-0.804821312427521,0.593381881713867,0.0499882213771343,-0.816849172115326,0.574681282043457,-0.118390314280987,-0.805317401885986,0.580902397632599,-0.182259619235992,-0.792929112911224,0.581416249275208,0.0126796057447791,-0.805154979228973,0.592928946018219,0.0581119693815708,-0.793590009212494,0.605671405792236,0.0127084776759148,-0.80698835849762,0.590430617332459,0.189308598637581,-0.793160259723663,0.578843057155609,0.012673607096076,-0.804774045944214,0.593445956707001,-0.182281106710434,-0.792346954345703,0.582202672958374,-0.0918887928128242,-0.792600035667419,0.602778255939484,0.18962761759758,-0.789757788181305,0.583372950553894,0.0127033684402704,-0.806663870811462,0.590873956680298,0.0929540768265724,-0.811091423034668,0.577486157417297,0.089394323527813,-0.793114900588989,0.602476239204407,0.0126424375921488,-0.802794814109802,0.596121370792389,-0.0878640040755272,-0.807789742946625,0.58288562297821,-0.109040133655071,0.37623256444931,-0.920086562633514,0.0133448261767626,0.386245876550674,-0.922299325466156,0.0457688681781292,0.405872315168381,-0.912783026695251,-0.112141437828541,0.394021242856979,-0.912234365940094,
  1483. -0.180895775556564,0.38213250041008,-0.906229257583618,0.0133462166413665,0.386355429887772,-0.922253429889679,0.0541661791503429,0.369387269020081,-0.927695572376251,0.0133909219875932,0.389957666397095,-0.920735538005829,0.198396682739258,0.383595734834671,-0.901938498020172,0.013338296674192,0.38571885228157,-0.922519981861115,-0.180908814072609,0.381388604640961,-0.906540095806122,-0.088742807507515,0.37014639377594,-0.924725115299225,0.1987194865942,0.37834107875824,-0.904084384441376,0.0133869713172317,0.389640927314758,-0.920869529247284,0.0933005660772324,0.399816751480103,-0.911834180355072,0.0897524431347847,0.371586710214615,-0.92404967546463,0.0133060710504651,0.383137464523315,-0.923595488071442,-0.084482230246067,0.394161462783813,-0.915149986743927,-0.00326344417408109,-0.958456695079803,0.285219371318817,0.117288671433926,-0.952237725257874,0.281933784484863,0.150666669011116,-0.953199088573456,0.262128293514252,-0.00525032822042704,-0.963910400867462,0.26617506146431,-0.071406215429306,-0.960319817066193,0.269605278968811,0.117275521159172,-0.952189683914185,0.282101601362228,0.156761333346367,-0.940877735614777,0.300291508436203,0.117672756314278,-0.953635394573212,0.277006685733795,0.30391937494278,-0.911945998668671,0.275658398866653,0.117209494113922,-0.951947927474976,0.28294363617897,-0.0714800134301186,-0.960059940814972,0.270510137081146,0.0231902338564396,-0.955616414546967,0.293699711561203,0.303906798362732,-0.910273432731628,0.281145662069321,0.117679119110107,-0.953658401966095,0.276924669742584,0.208410456776619,-0.940846920013428,0.26715561747551,0.202989414334297,-0.933026731014252,0.297080159187317,0.117062911391258,-0.951409876346588,0.284808248281479,0.028914101421833,-0.962605893611908,0.269358336925507,-0.201546177268028,0.489884406328201,0.848170042037964,-0.0811570063233376,0.500085592269897,0.862164676189423,-0.0444535240530968,0.486766159534454,0.872400462627411,-0.202673062682152,0.472981929779053,0.857445001602173,-0.263197302818298,0.466710835695267,0.844338893890381,-0.0811671614646912,0.500166714191437,0.862116694450378,
  1484. -0.0399068631231785,0.520608425140381,0.852862417697906,-0.0805724710226059,0.495430678129196,0.86490273475647,0.117684178054333,0.508606016635895,0.852918744087219,-0.0812575593590736,0.500886917114258,0.861689925193787,-0.26330292224884,0.467519670724869,0.843858361244202,-0.173573181033134,0.498779535293579,0.849171102046967,0.117489524185658,0.513587474822998,0.849955379962921,-0.0805766209959984,0.495463579893112,0.864883363246918,0.0172912441194057,0.494891971349716,0.868782460689545,0.0106015764176846,0.52182674407959,0.852985620498657,-0.0814583152532578,0.50248646736145,0.860739171504974,-0.167868122458458,0.479118913412094,0.861548244953156,-0.154621988534927,0.105936005711555,0.982277870178223,-0.0309661962091923,0.112673126161098,0.99314957857132,0.00905754137784243,0.0951041355729103,0.995426118373871,-0.155378133058548,0.0863839834928513,0.984070956707001,-0.219289869070053,0.0851101726293564,0.971940457820892,-0.0309735853224993,0.112728856503963,0.993142902851105,0.0128717124462128,0.135153040289879,0.99074113368988,-0.030357101932168,0.108096316456795,0.993676841259003,0.152739450335503,0.127153739333153,0.980052351951599,-0.0310723856091499,0.113471485674381,0.99305534362793,-0.219406113028526,0.085955947637558,0.971839785575867,-0.132783427834511,0.114954680204391,0.984456181526184,0.152409806847572,0.133494272828102,0.979260206222534,-0.0303810983896255,0.108276426792145,0.993656575679779,0.0564660653471947,0.106491535902023,0.99270898103714,0.0494853220880032,0.13600093126297,0.989472031593323,-0.0313724167644978,0.115726679563522,0.992785632610321,-0.125438466668129,0.089775063097477,0.988031208515167,-0.113505601882935,0.186571374535561,-0.975862503051758,0.00918581336736679,0.211675137281418,-0.977296888828278,0.0370048843324184,0.23482272028923,-0.971333682537079,-0.118769980967045,0.204590857028961,-0.971615314483643,-0.182882130146027,0.187541946768761,-0.965081393718719,0.00922411028295755,0.211327254772186,-0.97737181186676,0.0497194230556488,0.198402360081673,-0.978858768939972,0.00862665008753538,0.216753214597702,-0.9761883020401,
  1485. 0.193538665771484,0.235691785812378,-0.952361345291138,0.00931485928595066,0.210502251982689,-0.977549016475677,-0.182794079184532,0.186745271086693,-0.965252578258514,-0.0825612246990204,0.184802070260048,-0.979301691055298,0.194598644971848,0.230063155293465,-0.953521013259888,0.00862134154886007,0.216801226139069,-0.97617769241333,0.0958301350474358,0.237701624631882,-0.966599464416504,0.0960123166441917,0.206763714551926,-0.97366863489151,0.00950917322188616,0.208734586834908,-0.977926194667816,-0.0817515328526497,0.209166347980499,-0.97445684671402,-0.112695775926113,-0.149129495024681,0.982374727725983,0.0102736940607429,-0.158745616674423,0.987266063690186,0.0430723652243614,-0.17948779463768,0.982816815376282,-0.11574849486351,-0.168194591999054,0.978934586048126,-0.179893240332603,-0.158862009644508,0.970773577690125,0.0102726258337498,-0.158670082688332,0.98727822303772,0.051358912140131,-0.140744999051094,0.988712966442108,0.0103382458910346,-0.16321212053299,0.986536860466003,0.19753985106945,-0.16131579875946,0.9669309258461,0.0102616744115949,-0.157913535833359,0.987399637699127,-0.179912969470024,-0.157935723662376,0.970921039581299,-0.0897052139043808,-0.1435956209898,0.985562443733215,0.197930902242661,-0.1551883071661,0.967853248119354,0.010335941798985,-0.163053795695305,0.986563146114349,0.102003782987595,-0.173867970705032,0.979471862316132,0.0981841683387756,-0.142589315772057,0.984900176525116,0.0102273430675268,-0.155548334121704,0.987775444984436,-0.0858070477843285,-0.167938962578774,0.982055842876434,-0.116948582231998,0.966743767261505,-0.227441683411598,0.00422728108242154,0.975629687309265,-0.2193833142519,0.0431815534830093,0.979186594486237,-0.198315277695656,-0.120253883302212,0.970749378204346,-0.20780922472477,-0.182564437389374,0.959846019744873,-0.21299259364605,0.00421819742769003,0.975512564182281,-0.219903215765953,0.05147560313344,0.970289885997772,-0.236406460404396,0.00431751366704702,0.976775169372559,-0.214223399758339,0.197899714112282,0.957528948783875,-0.209699809551239,
  1486. 0.00420403946191072,0.975330114364624,-0.220711410045624,-0.182587638497353,0.959626913070679,-0.213957697153091,-0.0875561013817787,0.968441247940063,-0.233357459306717,0.198177114129066,0.95632266998291,-0.214878603816032,0.00431914441287518,0.97679591178894,-0.214129135012627,0.0982531681656837,0.9742271900177,-0.203046128153801,0.0950035378336906,0.96808934211731,-0.23189951479435,0.00417794380337,0.97499281167984,-0.222197100520134,-0.0835385099053383,0.974358916282654,-0.208916410803795,-0.116887934505939,-0.227798387408257,-0.966667115688324,0.00422087917104363,-0.219748675823212,-0.97554737329483,0.0432581529021263,-0.198667049407959,-0.979111909866333,-0.120223425328732,-0.207992032170296,-0.970714092254639,-0.182568937540054,-0.213179051876068,-0.959803760051727,0.00421488005667925,-0.220092535018921,-0.975469887256622,0.0515531674027443,-0.236762702465057,-0.970198810100555,0.00431079184636474,-0.21460810303688,-0.976690828800201,0.197920083999634,-0.210076928138733,-0.957442045211792,0.00420024991035461,-0.220927581191063,-0.975281178951263,-0.182592734694481,-0.214169561862946,-0.959578812122345,-0.0875900015234947,-0.233564555644989,-0.968388140201569,0.198198959231377,-0.215290516614914,-0.956225454807281,0.00431169290095568,-0.214555531740189,-0.976702392101288,0.0982067659497261,-0.203464895486832,-0.974144458770752,0.0949442237615585,-0.23241750895977,-0.967970907688141,0.00416879262775183,-0.222718715667725,-0.974873840808868,-0.0836227238178253,-0.209426730871201,-0.974242210388184,-0.114189356565475,0.9395831823349,-0.322713822126389,0.00248445500619709,0.948579967021942,-0.316527873277664,0.0392574854195118,0.953976154327393,-0.297302097082138,-0.117140837013721,0.945281326770782,-0.304501563310623,-0.181549102067947,0.933724761009216,-0.308541804552078,0.00247720279730856,0.948447704315186,-0.316923916339874,0.0470559857785702,0.941723167896271,-0.33308133482933,0.00258248439058661,0.95034646987915,-0.311183393001556,0.194761946797371,0.932274341583252,-0.304848074913025,0.00246173795312643,0.948166131973267,-0.317765533924103,
  1487. -0.181571692228317,0.933403611183167,-0.309498697519302,-0.0834569185972214,0.93994402885437,-0.330968856811523,0.195114091038704,0.93034839630127,-0.310455471277237,0.00258370116353035,0.950368463993073,-0.311115980148315,0.096783310174942,0.949235618114471,-0.299307405948639,0.0932602062821388,0.939833998680115,-0.328655779361725,0.0024313167668879,0.947611212730408,-0.319417089223862,-0.079168863594532,0.948559582233429,-0.306540429592133,-0.114934086799622,-0.0818429663777351,-0.989995896816254,0.00669069588184357,-0.0737681612372398,-0.997253000736237,0.0435310043394566,-0.0521139539778233,-0.997691929340363,-0.117758229374886,-0.0631521567702293,-0.991032302379608,-0.182678177952766,-0.0696557760238647,-0.98070216178894,0.00668684113770723,-0.0740057975053787,-0.997235417366028,0.0519906431436539,-0.0914456248283386,-0.994452059268951,0.00677495123818517,-0.0685992315411568,-0.997621297836304,0.194762945175171,-0.0664237439632416,-0.978598654270172,0.00667323591187596,-0.0748390555381775,-0.997173309326172,-0.182694047689438,-0.0705262050032616,-0.980637013912201,-0.0863638371229172,-0.0887999162077904,-0.992298364639282,0.195167019963264,-0.0726978704333305,-0.978072106838226,0.00677457917481661,-0.0686209872364998,-0.997619807720184,0.104760490357876,-0.0574738904833794,-0.992835342884064,0.10102192312479,-0.0889209806919098,-0.990902423858643,0.00664109643548727,-0.0768026486039162,-0.997024178504944,-0.0823341608047485,-0.0638452470302582,-0.994557619094849,-0.114934243261814,-0.0818419381976128,-0.989995956420898,0.006690738722682,-0.0737655311822891,-0.997253179550171,0.0435309149324894,-0.0521135330200195,-0.997692048549652,-0.117756567895412,-0.0631631389260292,-0.99103170633316,-0.182678356766701,-0.0696651041507721,-0.980701506137848,0.00668668560683727,-0.0740152969956398,-0.997234702110291,0.0520037785172462,-0.0915069133043289,-0.994445621967316,0.00677380431443453,-0.0686696618795395,-0.997616469860077,0.194767326116562,-0.0664911940693855,-0.978593170642853,0.00667315581813455,-0.0748439729213715,-0.997172951698303,
  1488. -0.182694137096405,-0.0705309882760048,-0.980636656284332,-0.0863641649484634,-0.0888019874691963,-0.992298066616058,0.195170059800148,-0.0727460756897926,-0.978067815303802,0.00677376240491867,-0.0686711221933365,-0.997616350650787,0.104754716157913,-0.0575232245028019,-0.992833077907562,0.10102567076683,-0.08888990432024,-0.990904867649078,0.00664161052554846,-0.0767712146043777,-0.99702662229538,-0.0823291912674904,-0.063814640045166,-0.99456000328064,-0.118277572095394,-0.444594472646713,0.887888610363007,0.0141971679404378,-0.456788092851639,0.889462232589722,0.0439663045108318,-0.474631786346436,0.879085659980774,-0.12150789052248,-0.462127178907394,0.8784499168396,-0.186100259423256,-0.451173335313797,0.872816920280457,0.0142015516757965,-0.457160532474518,0.889270782470703,0.0517911463975906,-0.44065073132515,0.896183371543884,0.0142373982816935,-0.460235297679901,0.887682795524597,0.193732887506485,-0.452659487724304,0.870383203029633,0.0141945797950029,-0.456564158201218,0.889577269554138,-0.186113506555557,-0.450445681810379,0.873189806938171,-0.0897755399346352,-0.441543370485306,0.89273726940155,0.194034665822983,-0.447717905044556,0.872868418693542,0.0142325414344668,-0.459820479154587,0.887897849082947,0.0985904708504677,-0.469040781259537,0.87765634059906,0.0948688238859177,-0.441267520189285,0.892346978187561,0.0141620244830847,-0.453790277242661,0.890995979309082,-0.0857680886983871,-0.463947176933289,0.881701111793518,-0.115022532641888,-0.0736144334077835,-0.990631461143494,0.00684115896001458,-0.0645333155989647,-0.997892081737518,0.0416176654398441,-0.0432519428431988,-0.998197019100189,-0.118348516523838,-0.053543783724308,-0.991527557373047,-0.18250797688961,-0.0607520155608654,-0.981325626373291,0.00683416612446308,-0.0649650245904922,-0.997864127159119,0.0501526817679405,-0.0828794538974762,-0.995296895503998,0.00692176399752498,-0.0595661550760269,-0.998200356960297,0.201312005519867,-0.0573989041149616,-0.977843999862671,0.00682080537080765,-0.0657870247960091,-0.997810482978821,-0.182525977492332,-0.0616578944027424,-0.981265902519226,
  1489. -0.0926365554332733,-0.0787504464387894,-0.992581009864807,0.201641991734505,-0.0631119012832642,-0.977423965930939,0.0069223758764565,-0.0595273375511169,-0.998202681541443,0.0972523838281631,-0.0478305034339428,-0.994109749794006,0.093647263944149,-0.0787675231695175,-0.99248468875885,0.00679014343768358,-0.0676684603095055,-0.99768477678299,-0.0885860547423363,-0.0536686107516289,-0.994621634483337,-0.0408308506011963,-0.995713829994202,-0.082987904548645,0.0848522782325745,-0.992774248123169,-0.0848494097590446,0.110733367502689,-0.988410949707031,-0.103837065398693,-0.0429160967469215,-0.993828117847443,-0.102294094860554,-0.11156915128231,-0.988996267318726,-0.097153976559639,0.0848447754979134,-0.992784857749939,-0.0847325101494789,0.117019474506378,-0.99102121591568,-0.0646791830658913,0.0851749554276466,-0.99230283498764,-0.0898907035589218,0.268821388483047,-0.959953844547272,-0.0788905099034309,0.0847889930009842,-0.992863357067108,-0.0838643908500671,-0.111651927232742,-0.98909592628479,-0.0960370674729347,-0.0164848286658525,-0.997064292430878,-0.0747745707631111,0.26884999871254,-0.960373878479004,-0.0734961032867432,0.0851787179708481,-0.992297172546387,-0.0899497643113136,0.176233366131783,-0.979793787002563,-0.0945831313729286,0.171442121267319,-0.983058989048004,-0.0648272857069969,0.0846602022647858,-0.993041396141052,-0.0818635672330856,-0.0112110991030931,-0.994964182376862,-0.0996030867099762,-0.176896676421165,0.154731705784798,0.971990585327148,-0.0592461004853249,0.15480038523674,0.986167728900909,-0.0197398643940687,0.136927723884583,0.990384340286255,-0.178801223635674,0.135288447141647,0.974539458751678,-0.242084458470345,0.137293606996536,0.960492372512817,-0.0592315867543221,0.154598250985146,0.986200273036957,-0.0141245946288109,0.174610152840614,0.984536349773407,-0.0589001066982746,0.149981170892715,0.986932933330536,0.135724738240242,0.158725291490555,0.977949440479279,-0.0592858344316483,0.155355155467987,0.986078083515167,-0.242148458957672,0.138141065835953,0.960354685783386,-0.149394899606705,0.162815287709236,0.97528064250946,
  1490. 0.135733246803284,0.164497584104538,0.97699385881424,-0.0589172691106796,0.150219723582268,0.986895561218262,0.0389933846890926,0.144554883241653,0.988728165626526,0.0335650779306889,0.175059527158737,0.983985543251038,-0.059452660381794,0.157684624195099,0.985698223114014,-0.144425138831139,0.139645516872406,0.979612410068512,-0.152614325284958,-0.25264123082161,0.95544821023941,-0.0257509313523769,-0.255429089069366,0.966484904289246,0.0110368803143501,-0.273737639188766,0.961741089820862,-0.154190361499786,-0.271613538265228,0.949974417686462,-0.210949018597603,-0.266069650650024,0.940588891506195,-0.025724072009325,-0.255721211433411,0.966408252716064,0.016453480347991,-0.234885141253471,0.971883893013,-0.0253951475024223,-0.259299367666245,0.965463042259216,0.159066319465637,-0.243588358163834,0.956745862960815,-0.0257829278707504,-0.255080252885818,0.966576099395752,-0.211039438843727,-0.265181839466095,0.940819323062897,-0.123035058379173,-0.245711609721184,0.961503088474274,0.158965095877647,-0.237755373120308,0.958228826522827,-0.0254334509372711,-0.258883357048035,0.965573787689209,0.0609774105250835,-0.263943612575531,0.962608814239502,0.0552579201757908,-0.235264912247658,0.970359206199646,-0.0260384138673544,-0.252295821905136,0.96729975938797,-0.117054365575314,-0.269845604896545,0.955762326717377,-0.102201737463474,0.533579587936401,-0.839552044868469,0.0198351796716452,0.552393913269043,-0.833347320556641,0.0485218390822411,0.571426451206207,-0.819217562675476,-0.107008032500744,0.549504458904266,-0.828609764575958,-0.173740819096565,0.532740712165833,-0.828252017498016,0.0198458135128021,0.552266776561737,-0.83343118429184,0.0602261498570442,0.539080798625946,-0.840098023414612,0.0194925516843796,0.556479275226593,-0.83063280582428,0.204543247818947,0.558808624744415,-0.803675949573517,0.0199019275605679,0.5515958070755,-0.833874225616455,-0.173681229352951,0.531978726387024,-0.828754186630249,-0.0744481012225151,0.530979633331299,-0.844107866287231,0.205441072583199,0.553712129592896,-0.806967675685883,
  1491. 0.0194982700049877,0.55641120672226,-0.830678284168243,0.107903823256493,0.568965673446655,-0.815251410007477,0.106895670294762,0.542949795722961,-0.832933902740479,0.0200506560504436,0.549814760684967,-0.83504593372345,-0.0725213810801506,0.552447080612183,-0.83038717508316
  1492. }
  1493. TangentsW: *2199 {
  1494. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1495. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1496. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1497. }
  1498. }
  1499. LayerElementTangent: 1 {
  1500. Version: 102
  1501. Name: "LightMapUV"
  1502. MappingInformationType: "ByPolygonVertex"
  1503. ReferenceInformationType: "Direct"
  1504. Tangents: *6597 {
  1505. a: 0.17885035276413,-0.128319293260574,-0.975472569465637,0.0702923089265823,-0.151457592844963,-0.985961258411407,0.36992672085762,-0.0855893939733505,-0.925110101699829,-0.261937141418457,0.429166197776794,-0.864410400390625,-0.0617596507072449,0.481212973594666,-0.874425411224365,0.0210213102400303,0.509550869464874,-0.860183715820313,0.110915720462799,-0.365289479494095,-0.924262583255768,0.360822200775146,-0.310483515262604,-0.879435777664185,0.355125337839127,-0.321142822504044,-0.877925574779511,-0.26108255982399,0.425671875476837,-0.866394460201263,-0.299817383289337,0.414042472839355,-0.85946398973465,-0.0606618374586105,0.476318299770355,-0.877177894115448,-0.189910113811493,0.400181263685226,-0.896542847156525,-0.0528766959905624,0.44141697883606,-0.895742774009705,-0.293342918157578,0.378766179084778,-0.877773404121399,-0.290212959051132,0.36237445473671,-0.885698139667511,-0.309397369623184,0.355679273605347,-0.881910145282745,-0.187548339366913,0.38145124912262,-0.905163407325745,0.322712570428848,0.0334322638809681,-0.945906400680542,0.0457444712519646,-0.0271758809685707,-0.998583436012268,0.117146141827106,0.0192805305123329,-0.992927610874176,-0.180489331483841,0.32801565527916,-0.92726993560791,0.0735702887177467,0.363949477672577,-0.928508579730988,-0.0324308536946774,0.348226875066757,-0.936849117279053,0.0872113481163979,0.268380165100098,-0.95935732126236,0.235461696982384,0.27839982509613,-0.931155920028687,0.266554743051529,0.294170379638672,-0.917830228805542,0.245668306946754,0.488378971815109,-0.837336897850037,0.203517034649849,0.499948382377625,-0.841803073883057,0.209861561655998,0.480215400457382,-0.851675570011139,0.224934488534927,0.374163925647736,-0.899669826030731,0.402230352163315,0.367903649806976,-0.838366091251373,0.268275141716003,0.370333403348923,-0.889315247535706,0.401205837726593,0.463516086339951,-0.790054857730865,0.212122529745102,0.465917348861694,-0.859025776386261,0.145381316542625,0.47959104180336,-0.865365087985992,0.221097126603127,0.403854697942734,-0.887703478336334,
  1506. 0.0686422362923622,0.396356105804443,-0.91552722454071,0.152306646108627,0.393576383590698,-0.906587183475494,0.146105036139488,0.471510767936707,-0.869672894477844,0.372950255870819,0.460718274116516,-0.805386126041412,0.401583701372147,0.451929360628128,-0.796549201011658,-0.181722536683083,0.33710378408432,-0.923763036727905,0.0135357221588492,0.366556346416473,-0.930297493934631,0.0722544714808464,0.37270587682724,-0.92513233423233,0.15437126159668,0.363091766834259,-0.918876528739929,0.071706548333168,0.376329630613327,-0.923706889152527,0.0139642646536231,0.361084938049316,-0.932428359985352,-0.146259516477585,0.361663073301315,-0.920764863491058,0.0119125209748745,0.387111306190491,-0.921956062316895,-0.183694079518318,0.351840198040009,-0.917858898639679,-0.147737473249435,0.374010264873505,-0.91558176279068,-0.185897976160049,0.368635147809982,-0.910796403884888,-0.307584881782532,0.3426593542099,-0.887680172920227,0.0140013257041574,0.360610961914063,-0.932611346244812,0.0168503206223249,0.365870952606201,-0.930513024330139,0.154412671923637,0.362449556589127,-0.919122993946075,0.0119389770552516,0.386778503656387,-0.922095477581024,-0.146205186843872,0.3612120449543,-0.920950531959534,0.0149296149611473,0.382212102413177,-0.923954010009766,-0.307585775852203,0.342665731906891,-0.887677431106567,-0.161202356219292,0.365483045578003,-0.916752934455872,-0.147728085517883,0.373931348323822,-0.915615499019623,0.0143679734319448,0.386960417032242,-0.921984374523163,-0.14680127799511,0.366170972585678,-0.918895125389099,-0.161994501948357,0.377396285533905,-0.911773025989532,-0.160644635558128,0.357294052839279,-0.920072972774506,-0.30659618973732,0.335713535547256,-0.890671193599701,-0.287316709756851,0.338400840759277,-0.896065831184387,-0.287350654602051,0.339156061410904,-0.895769357681274,-0.145760908722878,0.342526912689209,-0.928132057189941,-0.160649523139,0.357365161180496,-0.920044481754303,-0.139800012111664,0.423727214336395,-0.894936442375183,0.0140274576842785,0.389832615852356,-0.920778870582581,
  1507. -0.162328824400902,0.382531374692917,-0.909570813179016,-0.145418703556061,0.347719639539719,-0.926252901554108,-0.287523299455643,0.343061566352844,-0.894225418567657,-0.203215181827545,0.344676196575165,-0.916461646556854,-0.198621511459351,0.383064717054367,-0.902114689350128,-0.0066755348816514,0.362460136413574,-0.931975364685059,-0.143345609307289,0.377634733915329,-0.914791822433472,-0.00453590555116534,0.391341149806976,-0.920234501361847,0.0150082092732191,0.38154661655426,-0.924227774143219,-0.142197996377945,0.393186032772064,-0.908396780490875,-0.00928236544132233,0.351750552654266,-0.936047852039337,-0.00910794548690319,0.359025448560715,-0.933283448219299,-0.144002124667168,0.368430227041245,-0.918434858322144,0.00592358130961657,0.413463205099106,-0.910501539707184,0.106564223766327,0.38863816857338,-0.915207326412201,-0.00261107622645795,0.404789805412292,-0.914406061172485,0.10538487881422,0.366882473230362,-0.924278795719147,0.0153648843988776,0.378522932529449,-0.925464391708374,-0.00709381839260459,0.373326003551483,-0.927673101425171,0.107486620545387,0.406308889389038,-0.907391726970673,0.00927065778523684,0.42680150270462,-0.904297828674316,0.200213640928268,0.389214396476746,-0.899125516414642,0.154042422771454,0.368144273757935,-0.91691917181015,0.0164148267358541,0.369590133428574,-0.929049909114838,0.105156809091568,0.378612816333771,-0.919562041759491,0.104221925139427,0.346230924129486,-0.932342171669006,0.105086177587509,0.379159450531006,-0.919344902038574,0.0163566172122955,0.370086669921875,-0.928853332996368,0.359528750181198,0.524516642093658,-0.771765112876892,0.138102903962135,0.552427232265472,-0.822041213512421,0.0826980695128441,0.534121751785278,-0.841353058815002,0.205322086811066,0.429279923439026,-0.879523515701294,0.259958207607269,0.41837215423584,-0.870279550552368,0.108985736966133,0.436486214399338,-0.893085598945618,0.100651152431965,0.412671267986298,-0.905302047729492,0.107792213559151,0.412304878234863,-0.904646635055542,0.26037123799324,0.414387136697769,-0.872060835361481,
  1508. 0.087848573923111,0.501385927200317,-0.860752582550049,0.249065831303597,0.507872462272644,-0.824640393257141,0.365034639835358,0.499779284000397,-0.785474598407745,0.255816698074341,0.455560982227325,-0.85265588760376,0.210651114583015,0.473988503217697,-0.854962587356567,0.29145935177803,0.454008817672729,-0.841978430747986,0.292824119329453,0.445220649242401,-0.846187233924866,0.375611513853073,0.446471929550171,-0.812144577503204,0.257123619318008,0.444324046373367,-0.858174562454224,0.179589092731476,-0.710606813430786,-0.680283546447754,0.0702539160847664,-0.733824849128723,-0.67569637298584,0.368056952953339,-0.646461308002472,-0.66829776763916,-0.265475481748581,-0.20670822262764,-0.941697776317596,-0.0567051880061626,-0.172110989689827,-0.983444094657898,0.0217287447303534,-0.140975296497345,-0.989774644374847,0.10938785225153,-0.863085031509399,-0.493070542812347,0.361213445663452,-0.79264885187149,-0.49115464091301,0.353818565607071,-0.800354659557343,-0.483988523483276,-0.264543980360031,-0.211145848035812,-0.94097501039505,-0.298058122396469,-0.21494297683239,-0.930032849311829,-0.0555398985743523,-0.17817223072052,-0.982430636882782,-0.190663516521454,-0.249237865209579,-0.94948822259903,-0.0479318350553513,-0.2173021286726,-0.974926829338074,-0.291762501001358,-0.254116803407669,-0.922116756439209,-0.288694143295288,-0.272066295146942,-0.917951881885529,-0.307425796985626,-0.274694263935089,-0.91106116771698,-0.188287764787674,-0.269212514162064,-0.944495797157288,0.323502689599991,-0.565783560276031,-0.758442461490631,0.0464880652725697,-0.643880128860474,-0.763712823390961,0.122118309140205,-0.606038451194763,-0.786005437374115,-0.181138798594475,-0.325018286705017,-0.928198158740997,0.0779319703578949,-0.296718865633011,-0.951779782772064,-0.0284646824002266,-0.314052164554596,-0.948978900909424,0.0918375849723816,-0.390809208154678,-0.91587883234024,0.236669212579727,-0.365407586097717,-0.900258302688599,0.267644137144089,-0.34497007727623,-0.899645626544952,0.240868806838989,-0.144554689526558,-0.959732353687286,
  1509. 0.204771593213081,-0.13686591386795,-0.969193637371063,0.209977701306343,-0.158082708716393,-0.964841544628143,0.22579437494278,-0.272108763456345,-0.935400307178497,0.403398871421814,-0.238093093037605,-0.883504986763,0.263574331998825,-0.269269973039627,-0.926294922828674,0.402921229600906,-0.132970601320267,-0.905523777008057,0.212575227022171,-0.175573617219925,-0.961241722106934,0.142330899834633,-0.16800431907177,-0.975457072257996,0.221581399440765,-0.239775255322456,-0.945203542709351,0.0729159116744995,-0.26333549618721,-0.961944758892059,0.149229243397713,-0.261104285717011,-0.953706026077271,0.143054082989693,-0.177061587572098,-0.973747789859772,0.376513630151749,-0.144175842404366,-0.915123403072357,0.403241902589798,-0.146512746810913,-0.903288424015045,-0.182380169630051,-0.315744429826736,-0.931151509284973,0.0135015435516834,-0.296621739864349,-0.954899609088898,0.0765964612364769,-0.287803620100021,-0.954621434211731,0.151284709572792,-0.292564153671265,-0.944202899932861,0.075984463095665,-0.283724784851074,-0.955890476703644,0.0139421671628952,-0.302629113197327,-0.953006446361542,-0.147336304187775,-0.294494867324829,-0.94422709941864,0.0119192274287343,-0.275012046098709,-0.961366891860962,-0.184345811605453,-0.300719141960144,-0.935726761817932,-0.148799762129784,-0.281707406044006,-0.947892189025879,-0.186625242233276,-0.282735794782639,-0.94086742401123,-0.305569410324097,-0.288523942232132,-0.907403588294983,0.0139804817736149,-0.303151279687881,-0.952839910984039,0.017837505787611,-0.296927779912949,-0.954733312129974,0.151326239109039,-0.29322350025177,-0.943991720676422,0.0119439074769616,-0.27534955739975,-0.961269974708557,-0.147282361984253,-0.294960826635361,-0.944090068340302,0.0159495063126087,-0.28064289689064,-0.95967972278595,-0.305572360754013,-0.288502305746078,-0.907409489154816,-0.16147880256176,-0.288612484931946,-0.943730592727661,-0.148790657520294,-0.281787812709808,-0.947869718074799,0.0153698474168777,-0.275634467601776,-0.961139619350433,-0.147879600524902,-0.289780735969543,-0.945599794387817,
  1510. -0.162226527929306,-0.277398318052292,-0.946959733963013,-0.160898715257645,-0.29706597328186,-0.94120317697525,-0.304564863443375,-0.295792549848557,-0.905398786067963,-0.292668431997299,-0.296864241361618,-0.908964693546295,-0.29270127415657,-0.296144992113113,-0.909188687801361,-0.145231485366821,-0.313774049282074,-0.938324928283691,-0.160897955298424,-0.297076940536499,-0.941199839115143,-0.139550775289536,-0.230727583169937,-0.962959170341492,0.0150343840941787,-0.27273428440094,-0.961971938610077,-0.162567541003227,-0.272157371044159,-0.948420882225037,-0.14490307867527,-0.308567136526108,-0.940100848674774,-0.292880594730377,-0.292147755622864,-0.910423338413239,-0.208875730633736,-0.303806513547897,-0.929554998874664,-0.204538196325302,-0.26561826467514,-0.942131102085114,-0.00411326717585325,-0.301405400037766,-0.95348733663559,-0.142932042479515,-0.278487175703049,-0.949744880199432,-0.0038737750146538,-0.271139055490494,-0.9625324010849,0.0160045195370913,-0.281117856502533,-0.959539890289307,-0.141845256090164,-0.26265949010849,-0.954405546188354,-0.00671975780278444,-0.312328040599823,-0.949950575828552,-0.00842304155230522,-0.30445396900177,-0.952489912509918,-0.143564745783806,-0.287937730550766,-0.946826815605164,0.00843491777777672,-0.248270362615585,-0.968654036521912,0.109594397246838,-0.270023941993713,-0.95659613609314,-0.00195511663332582,-0.256998956203461,-0.966409802436829,0.108465984463692,-0.292454749345779,-0.950108170509338,0.0163498520851135,-0.284099370241165,-0.958655416965485,-0.00641531171277165,-0.289787918329239,-0.957069396972656,0.110483735799789,-0.251332521438599,-0.961574375629425,0.0117687592282891,-0.233999818563461,-0.972165405750275,0.205548137426376,-0.259901821613312,-0.943504631519318,0.150957882404327,-0.287411153316498,-0.945836544036865,0.0174039136618376,-0.293191522359848,-0.95589542388916,0.103578008711338,-0.279524743556976,-0.954535245895386,0.107345096766949,-0.313505560159683,-0.943499505519867,0.103499032557011,-0.278928101062775,-0.954718291759491,0.0173428170382977,-0.292664855718613,-0.956057906150818,
  1511. 0.363179624080658,-0.0729276239871979,-0.928860664367676,0.135095596313477,-0.0838890820741653,-0.987274944782257,0.0805922448635101,-0.113246493041515,-0.990292966365814,0.210701793432236,-0.216269820928574,-0.953326880931854,0.257800668478012,-0.219015553593636,-0.941047847270966,0.111908577382565,-0.219150125980377,-0.969252109527588,0.0990055501461029,-0.245297998189926,-0.964378952980042,0.110777162015438,-0.244945347309113,-0.963187515735626,0.258254140615463,-0.223857030272484,-0.9397833943367,0.0858607292175293,-0.150167763233185,-0.984925150871277,0.247233375906944,-0.119939796626568,-0.961504101753235,0.36867356300354,-0.101068906486034,-0.924048066139221,0.253798216581345,-0.178736597299576,-0.950599670410156,0.216053456068039,-0.166020035743713,-0.962163329124451,0.294434517621994,-0.172525644302368,-0.939969778060913,0.295799553394318,-0.182007342576981,-0.937750458717346,0.37918809056282,-0.159840151667595,-0.911409616470337,0.255086660385132,-0.191263183951378,-0.947812855243683,0.189968302845955,-0.310842305421829,-0.931283593177795,0.0825744569301605,-0.338555365800858,-0.937316238880157,0.37445729970932,-0.251540511846542,-0.892473697662354,-0.26936063170433,0.241244927048683,-0.932333469390869,-0.0724671855568886,0.297115474939346,-0.952087640762329,0.00578218186274171,0.330553233623505,-0.943769633769989,0.130485221743584,-0.534989476203918,-0.834721565246582,0.377389490604401,-0.463284820318222,-0.801838099956512,0.369179248809814,-0.473397523164749,-0.799750864505768,-0.268302321434021,0.237220019102097,-0.933670580387115,-0.314547538757324,0.223341897130013,-0.922593235969543,-0.0711074993014336,0.291540801525116,-0.953911781311035,-0.198201954364777,0.209070459008217,-0.957604050636292,-0.0619171410799026,0.253860354423523,-0.965257167816162,-0.306599467992783,0.185388445854187,-0.933610260486603,-0.302780091762543,0.167847186326981,-0.938163936138153,-0.313580244779587,0.1634890884161,-0.935381591320038,-0.194963872432709,0.18933193385601,-0.962363004684448,0.327098399400711,-0.140227302908897,-0.934528172016144,
  1512. 0.053589653223753,-0.219717681407928,-0.97409051656723,0.1302250623703,-0.170518398284912,-0.976711273193359,-0.185024455189705,0.131167471408844,-0.973940968513489,0.072108156979084,0.178277567028999,-0.981334567070007,-0.0381008200347424,0.156213358044624,-0.986988186836243,0.0900120511651039,0.0788150876760483,-0.992817223072052,0.233474045991898,0.0999776870012283,-0.967209577560425,0.261445194482803,0.118110299110413,-0.957964718341827,0.234118029475212,0.323652327060699,-0.916754126548767,0.190528705716133,0.33222359418869,-0.92375659942627,0.197634160518646,0.312665283679962,-0.929075539112091,0.2184789031744,0.197879180312157,-0.955568313598633,0.396266788244247,0.211743608117104,-0.893385291099548,0.261314123868942,0.19928939640522,-0.944456815719604,0.391108989715576,0.314825087785721,-0.864823043346405,0.201153099536896,0.294633269309998,-0.934199452400208,0.128876835107803,0.306113570928574,-0.943231284618378,0.212688073515892,0.231849163770676,-0.949215352535248,0.0657282695174217,0.212323307991028,-0.974986493587494,0.139393344521523,0.212998926639557,-0.967058002948761,0.12995520234108,0.297160923480988,-0.945942401885986,0.364983469247818,0.308583915233612,-0.878386616706848,0.391993522644043,0.302220284938812,-0.868909657001495,-0.186682134866714,0.140634253621101,-0.972302317619324,0.00518033187836409,0.176916524767876,-0.984212219715118,0.0704050362110138,0.187434673309326,-0.979750692844391,0.142699360847473,0.180613681674004,-0.97314727306366,0.0696226879954338,0.191624224185944,-0.978995859622955,0.00590383913367987,0.170177474617958,-0.985395848751068,-0.155387580394745,0.167825371026993,-0.97349339723587,0.00274869101122022,0.199488490819931,-0.979896306991577,-0.189221292734146,0.155309244990349,-0.969574332237244,-0.157240986824036,0.180084228515625,-0.971002042293549,-0.192667990922928,0.175585120916367,-0.965426802635193,-0.311255216598511,0.149772211909294,-0.938450038433075,0.00596604961901903,0.169597506523132,-0.985495328903198,0.0137982591986656,0.176787823438644,-0.984152257442474,
  1513. 0.142768487334251,0.179917648434639,-0.973266065120697,0.00278459885157645,0.199156045913696,-0.979963839054108,-0.155316114425659,0.167355388402939,-0.973585665225983,0.0111648729071021,0.194311559200287,-0.980876326560974,-0.311255902051926,0.149776056408882,-0.938449323177338,-0.169396549463272,0.170776635408401,-0.970639050006866,-0.157227769494057,0.179996326565742,-0.971020460128784,0.0104057900607586,0.199346646666527,-0.979873776435852,-0.156111925840378,0.172599792480469,-0.972542226314545,-0.170842677354813,0.185615971684456,-0.96765673160553,-0.168524071574211,0.161994025111198,-0.972294986248016,-0.309970647096634,0.142336383461952,-0.940031170845032,-0.292505770921707,0.144152298569679,-0.945336163043976,-0.292574882507324,0.145008161664009,-0.945183873176575,-0.147477269172668,0.147487759590149,-0.978007078170776,-0.168548062443733,0.162233754992485,-0.972250878810883,-0.144979014992714,0.233697488903999,-0.961439847946167,0.00994035229086876,0.202430382370949,-0.979246199131012,-0.171388551592827,0.191313982009888,-0.966449677944183,-0.147353008389473,0.152971461415291,-0.977183103561401,-0.292907476425171,0.149164006114006,-0.944433867931366,-0.213160410523415,0.150030985474586,-0.965429127216339,-0.21042712032795,0.18980661034584,-0.959006726741791,-0.00800210144370794,0.170703783631325,-0.985289990901947,-0.146545067429543,0.184608653187752,-0.971825182437897,-0.0133990803733468,0.202582731842995,-0.979173481464386,0.0112846903502941,0.193516120314598,-0.981032192707062,-0.146061718463898,0.201101034879684,-0.968619823455811,-0.0101816458627582,0.159269884228706,-0.987182676792145,-0.0166101045906544,0.168146774172783,-0.985622048377991,-0.146811336278915,0.174834638834,-0.973590910434723,0.00254731252789497,0.225628867745399,-0.974210023880005,0.0992463603615761,0.205294296145439,-0.97365528345108,-0.0120408413931727,0.217020556330681,-0.976092875003815,0.0989487841725349,0.181920990347862,-0.978321969509125,0.0117753120139241,0.190257176756859,-0.981663644313812,-0.0151953464373946,0.183371886610985,-0.982926189899445,
  1514. 0.0994457975029945,0.224117457866669,-0.969475090503693,0.005326840095222,0.239985391497612,-0.970761895179749,0.195577263832092,0.212650895118713,-0.957355260848999,0.14216648042202,0.185952633619308,-0.972219288349152,0.0132079739123583,0.180723428726196,-0.983445286750793,0.0967912077903748,0.195346653461456,-0.975946307182312,0.0986187234520912,0.159911841154099,-0.982192754745483,0.0966905131936073,0.195947647094727,-0.975835800170898,0.013129185885191,0.181248426437378,-0.983349800109863,0.348728179931641,0.37674605846405,-0.858167290687561,0.118580490350723,0.386020332574844,-0.914837121963501,0.0673744305968285,0.359440118074417,-0.930732786655426,0.198770180344582,0.255453795194626,-0.946167945861816,0.250010550022125,0.249352157115936,-0.935584425926209,0.0997056066989899,0.256815582513809,-0.96130359172821,0.0908280834555626,0.230439230799675,-0.968838512897491,0.0995058938860893,0.230576857924461,-0.967952966690063,0.250568330287933,0.245337277650833,-0.936496317386627,0.0740192532539368,0.324259907007217,-0.943067789077759,0.235159978270531,0.34539532661438,-0.908516407012939,0.35530087351799,0.35035052895546,-0.866611659526825,0.244234383106232,0.289008408784866,-0.925647735595703,0.201963767409325,0.304141491651535,-0.93097198009491,0.283066868782043,0.291375011205673,-0.913769006729126,0.284800916910172,0.282113254070282,-0.916133463382721,0.36822298169136,0.293723344802856,-0.882121562957764,0.246025130152702,0.27706778049469,-0.928819298744202,0.18328358232975,0.0427994020283222,-0.982127964496613,0.0680349469184875,0.0234922878444195,-0.997406303882599,0.365519642829895,0.0765915140509605,-0.927647113800049,-0.260627955198288,0.573364555835724,-0.776740729808807,-0.0595719628036022,0.625564217567444,-0.777894973754883,0.020545307546854,0.652347266674042,-0.757641673088074,0.107586175203323,-0.198858335614204,-0.974105000495911,0.360041886568069,-0.153445512056351,-0.920230567455292,0.351095885038376,-0.163470596075058,-0.921959459781647,-0.259740054607391,0.570110201835632,-0.779428958892822,-0.299135059118271,0.557393252849579,-0.774487555027008,
  1515. -0.0584054887294769,0.620799779891968,-0.781790673732758,-0.1938236951828,0.549205541610718,-0.812899529933929,-0.050799086689949,0.589368522167206,-0.806265592575073,-0.292891830205917,0.525540232658386,-0.798762679100037,-0.289841651916504,0.51051652431488,-0.809545993804932,-0.308321505784988,0.503772616386414,-0.806939303874969,-0.191421374678612,0.532348692417145,-0.824598670005798,0.323295533657074,0.197670206427574,-0.925422310829163,0.0440947487950325,0.148832991719246,-0.987878739833832,0.117165885865688,0.191898822784424,-0.97439569234848,-0.184088423848152,0.482810735702515,-0.856157243251801,0.0741866230964661,0.519638299942017,-0.851159453392029,-0.0313123911619186,0.506085574626923,-0.861914694309235,0.08765559643507,0.431026607751846,-0.898071587085724,0.233210489153862,0.436118274927139,-0.869145393371582,0.268364697694778,0.448896139860153,-0.852333664894104,0.243916511535645,0.625975131988525,-0.740715861320496,0.206167727708817,0.638449430465698,-0.741537094116211,0.206741407513618,0.621268630027771,-0.755832970142365,0.222381144762039,0.524255573749542,-0.822011530399323,0.400852054357529,0.508164823055267,-0.762290060520172,0.266026020050049,0.519437193870544,-0.812043964862823,0.400265067815781,0.593968093395233,-0.697846472263336,0.209251508116722,0.607390940189362,-0.766348540782928,0.14289565384388,0.623918294906616,-0.768314242362976,0.218254268169403,0.552575528621674,-0.804378867149353,0.069315068423748,0.549266457557678,-0.83276754617691,0.149480849504471,0.544452369213104,-0.825364828109741,0.143607392907143,0.616334617137909,-0.774279415607452,0.374605506658554,0.593405067920685,-0.712419211864471,0.400596380233765,0.583409786224365,-0.706509411334991,-0.185346648097038,0.491126626729965,-0.851141154766083,0.0114842569455504,0.52244108915329,-0.852598071098328,0.0728817731142044,0.52769273519516,-0.846302926540375,0.151407361030579,0.516012966632843,-0.843093395233154,0.0723662152886391,0.530851006507874,-0.844369769096375,0.0119173498824239,0.517274022102356,-0.855736970901489,-0.15145243704319,0.515497803688049,-0.843400359153748,
  1516. 0.00987887568771839,0.541383922100067,-0.840717494487762,-0.18731327354908,0.504269778728485,-0.842986226081848,-0.152845978736877,0.526245474815369,-0.836483001708984,-0.189724043011665,0.520639359951019,-0.832429826259613,-0.306453406810761,0.491873055696487,-0.814952254295349,0.011954796500504,0.516826093196869,-0.856006920337677,0.0195266269147396,0.521622240543365,-0.85295307636261,0.151448756456375,0.515366196632385,-0.843481481075287,0.0099045904353261,0.541083097457886,-0.840910792350769,-0.151399046182632,0.515088081359863,-0.843660235404968,0.0175571441650391,0.537533521652222,-0.843059599399567,-0.306456089019775,0.491889804601669,-0.814941167831421,-0.162053778767586,0.519420623779297,-0.839011788368225,-0.1528360247612,0.52616822719574,-0.836533427238464,0.0170245822519064,0.541794717311859,-0.840338408946991,-0.151986181735992,0.519601583480835,-0.840781986713409,-0.162789851427078,0.52895188331604,-0.832892179489136,-0.161467850208282,0.511973857879639,-0.843688905239105,-0.305448561906815,0.48559433221817,-0.819084465503693,-0.290074944496155,0.488225847482681,-0.823099076747894,-0.290110856294632,0.4890416264534,-0.822601974010468,-0.138053238391876,0.498615831136703,-0.855759084224701,-0.161465182900429,0.511940062046051,-0.843709886074066,-0.132143214344978,0.572642743587494,-0.809084951877594,0.0166776143014431,0.544561505317688,-0.838555097579956,-0.163134098052979,0.533481240272522,-0.829930782318115,-0.137710779905319,0.503413379192352,-0.853001117706299,-0.290267914533615,0.492675453424454,-0.820375323295593,-0.204976871609688,0.498947411775589,-0.842042744159698,-0.200809180736542,0.533116221427917,-0.821865558624268,-0.00319518358446658,0.51807302236557,-0.855330467224121,-0.135646611452103,0.530862271785736,-0.836531698703766,-0.00368152325972915,0.5448397397995,-0.838532090187073,0.0176785383373499,0.536559820175171,-0.843677222728729,-0.134510740637779,0.545009613037109,-0.827569544315338,-0.00581339839845896,0.508219122886658,-0.861208200454712,-0.0079578822478652,0.515906155109406,-0.856608152389526,
  1517. -0.136300027370453,0.522429943084717,-0.841718018054962,0.00945923943072557,0.564664363861084,-0.825266420841217,0.108795821666718,0.541464507579803,-0.833654403686523,-0.00188623229041696,0.556786060333252,-0.830653786659241,0.107536032795906,0.521309018135071,-0.846565365791321,0.0180496014654636,0.533577620983124,-0.84555846452713,-0.00607790471985936,0.52870899438858,-0.848781406879425,0.109763018786907,0.557438135147095,-0.822930634021759,0.0128035955131054,0.576690852642059,-0.816862106323242,0.204586535692215,0.538407266139984,-0.8174729347229,0.151102244853973,0.520730495452881,-0.840242862701416,0.019095815718174,0.525123357772827,-0.850811839103699,0.108598850667477,0.533506810665131,-0.838794827461243,0.106301017105579,0.502173900604248,-0.858208298683167,0.108521483838558,0.534033894538879,-0.838469386100769,0.0190403405576944,0.525573372840881,-0.850535213947296,0.361128389835358,0.650266170501709,-0.668386280536652,0.136020794510841,0.688417077064514,-0.712446689605713,0.085721991956234,0.670523285865784,-0.736919462680817,0.209738567471504,0.574560225009918,-0.791132271289825,0.260132521390915,0.563138723373413,-0.784350574016571,0.111364036798477,0.585008323192596,-0.803345203399658,0.104033134877682,0.563785791397095,-0.819342851638794,0.110087528824806,0.562905788421631,-0.819156765937805,0.260539799928665,0.559590637683868,-0.786751270294189,0.0909628719091415,0.642150044441223,-0.761162996292114,0.249201983213425,0.643319725990295,-0.723904848098755,0.366635382175446,0.628418982028961,-0.686052560806274,0.255979806184769,0.59665322303772,-0.760578274726868,0.215084463357925,0.614286541938782,-0.759204149246216,0.295454233884811,0.593001782894135,-0.749036490917206,0.296812862157822,0.585336744785309,-0.7545086145401,0.377257227897644,0.580686390399933,-0.721443235874176,0.257288366556168,0.58657294511795,-0.767942011356354,0.0994627401232719,-0.71651291847229,-0.690446496009827,-0.0401491820812225,-0.707334876060486,-0.705737590789795,0.141314297914505,-0.721626162528992,-0.6777064204216,0.245315983891487,-0.692113816738129,-0.678821444511414,
  1518. 0.100346721708775,-0.705528557300568,-0.701541125774384,0.145613744854927,-0.699032306671143,-0.700107514858246,-0.0276611112058163,-0.669017374515533,-0.742731869220734,0.100396282970905,-0.704898655414581,-0.702167093753815,-0.0557531341910362,-0.678199231624603,-0.7327601313591,-0.242388755083084,-0.699618637561798,-0.672146916389465,-0.0550359077751637,-0.750689685344696,-0.658358752727509,-0.0698238611221313,-0.738287270069122,-0.670862555503845,0.100396364927292,-0.704897344112396,-0.70216828584671,0.245312541723251,-0.691832482814789,-0.679109394550323,0.133724167943001,-0.708763301372528,-0.692656099796295,0.323676496744156,-0.672768414020538,-0.665294051170349,0.133730232715607,-0.708970010280609,-0.692443311214447,0.245310857892036,-0.691696286201477,-0.679248690605164,-0.0669532492756844,-0.726304709911346,-0.684104323387146,-0.118410468101501,-0.713834822177887,-0.690230965614319,-0.237945571541786,-0.685374438762665,-0.68821781873703,-0.30613249540329,-0.679859042167664,-0.666389286518097,-0.241895899176598,-0.698036730289459,-0.673966646194458,-0.118957482278347,-0.718486964702606,-0.685292422771454,-0.0631617605686188,-0.710257291793823,-0.701102912425995,0.0993886515498161,-0.717412233352661,-0.689522743225098,0.000136914153699763,-0.715747356414795,-0.698359310626984,-0.117113076150417,-0.702853620052338,-0.701627612113953,-0.0614245012402534,-0.702822089195251,-0.708708763122559,0.000180159433512017,-0.718454420566559,-0.695574104785919,0.0993353649973869,-0.718057096004486,-0.688858866691589,0.133646637201309,-0.70615541934967,-0.695329487323761,0.000123784368042834,-0.71492338180542,-0.699202835559845,-0.306168854236603,-0.681879818439484,-0.664304614067078,-0.119713142514229,-0.724936544895172,-0.678333044052124,-0.177956834435463,-0.701051414012909,-0.690549254417419,-0.177620455622673,-0.710678458213806,-0.680725395679474,-0.116936601698399,-0.70136547088623,-0.703144550323486,0.00017559016123414,-0.71816885471344,-0.695868849754334,-0.285636305809021,-0.677515387535095,-0.677779316902161,-0.306213349103928,-0.684565842151642,-0.661515712738037,
  1519. -0.177945002913475,-0.701409339904785,-0.690188765525818,0.000125176680739969,-0.715010821819305,-0.699113488197327,0.133648440241814,-0.706215262413025,-0.695268392562866,0.0896207615733147,-0.710348725318909,-0.698120951652527,0.133612051606178,-0.705011904239655,-0.696495532989502,0.323417842388153,-0.669314563274384,-0.668893814086914,0.0895869806408882,-0.70925384759903,-0.699237644672394,-0.055072583258152,-0.716829836368561,-0.695069789886475,-0.177718579769135,-0.707981824874878,-0.683504164218903,0.00013799023872707,-0.715814888477325,-0.698290050029755,-0.283565074205399,-0.695164978504181,-0.660557746887207,-0.177681192755699,-0.709018588066101,-0.682438313961029,-0.0551102124154568,-0.716060280799866,-0.695859551429749,0.222424730658531,-0.691944122314453,-0.686833739280701,0.0896072387695313,-0.709911406040192,-0.69856733083725,0.323539942502975,-0.670933604240417,-0.667210638523102,0.324136555194855,-0.679154455661774,-0.658547520637512,0.336739301681519,-0.676435053348541,-0.655013203620911,0.22248487174511,-0.696463704109192,-0.682230830192566,-0.000185977856745012,-0.718817830085754,-0.695198476314545,0.000161044008564204,-0.717259049415588,-0.696806609630585,0.089681513607502,-0.712334513664246,-0.696086764335632,0.0896492376923561,-0.71127712726593,-0.697171330451965,0.222492843866348,-0.697120130062103,-0.681557357311249,-0.000168168553500436,-0.717704951763153,-0.696347415447235,-0.000326457782648504,-0.727532744407654,-0.686072885990143,-0.054242167621851,-0.733262360095978,-0.677778780460358,0.000369252520613372,-0.730165541172028,-0.683270215988159,0.336380153894424,-0.672289490699768,-0.659450709819794,0.071650356054306,-0.733281493186951,-0.676139414310455,0.222489938139915,-0.69688093662262,-0.681802868843079,0.222482606768608,-0.696281790733337,-0.682417154312134,0.0669002234935761,-0.703679442405701,-0.707361042499542,-0.0001491978764534,-0.716517448425293,-0.697569251060486,0.00965968985110521,-0.748881042003632,-0.662634015083313,0.0714288055896759,-0.731912910938263,-0.677644014358521,
  1520. 0.336321860551834,-0.671627402305603,-0.660154700279236,-0.128032088279724,-0.686085760593414,-0.716166257858276,0.0621561631560326,-0.673599362373352,-0.736478447914124,-0.00649509392678738,-0.677501201629639,-0.735493063926697,-0.161201760172844,-0.709846675395966,-0.685661494731903,-0.283838480710983,-0.692941009998322,-0.662773311138153,-0.0550972819328308,-0.716325044631958,-0.695588052272797,-0.159308984875679,-0.738801836967468,-0.654822468757629,-0.0537846982479095,-0.74189168214798,-0.668359160423279,-0.00045841169776395,-0.735616326332092,-0.677398264408112,-0.282721132040024,-0.701848268508911,-0.653817892074585,-0.160796195268631,-0.716551840305328,-0.678747415542603,-0.209583565592766,-0.710722804069519,-0.671526491641998,0.0694165304303169,-0.719427645206451,-0.691089868545532,-0.0909367576241493,-0.730227112770081,-0.677125513553619,-0.000277313025435433,-0.724496841430664,-0.689278066158295,-0.087533175945282,-0.751016795635223,-0.654455423355103,-0.159369558095932,-0.737957537174225,-0.65575909614563,-0.000491841696202755,-0.737648487091064,-0.675184786319733,0.0657200515270233,-0.696243107318878,-0.714791178703308,-0.122603923082352,-0.709566354751587,-0.693890452384949,-0.0944652035832405,-0.707321047782898,-0.700552105903625,-0.0919198170304298,-0.72398841381073,-0.683660387992859,-0.208583995699883,-0.719052612781525,-0.662914872169495,-0.160395994782448,-0.722876310348511,-0.672103404998779,-0.209658324718475,-0.710085511207581,-0.672177135944366,-0.0933415442705154,-0.71477210521698,-0.693100452423096,-0.121958121657372,-0.712272226810455,-0.691226780414581,0.0989359170198441,0.191645547747612,-0.976464867591858,-0.0411343239247799,0.209132701158524,-0.977021753787994,0.137702822685242,0.178687170147896,-0.974222183227539,0.247148394584656,0.194641605019569,-0.949227213859558,0.0996970236301422,0.205965101718903,-0.973467469215393,0.141834303736687,0.209190502762794,-0.967534184455872,-0.0288699846714735,0.260569542646408,-0.965023338794708,0.0997397974133492,0.206780403852463,-0.973290324211121,
  1521. -0.0573163107037544,0.246871635317802,-0.967351675033569,-0.238881915807724,0.184657499194145,-0.953329563140869,-0.055742122232914,0.14637802541256,-0.987657070159912,-0.0708825588226318,0.163730069994926,-0.983955442905426,0.0997416526079178,0.206815958023071,-0.97328245639801,0.247144266963005,0.195038259029388,-0.949146866798401,0.131096556782722,0.196714863181114,-0.971656799316406,0.325504392385483,0.194168001413345,-0.925389587879181,0.1311105042696,0.196194410324097,-0.971760153770447,0.247142910957336,0.195168271660805,-0.94912052154541,-0.0681147873401642,0.181054845452309,-0.981111466884613,-0.120683006942272,0.192678645253181,-0.973812401294708,-0.234772488474846,0.205148592591286,-0.950155735015869,-0.309696197509766,0.190740436315537,-0.931507587432861,-0.238399341702461,0.187095806002617,-0.952974796295166,-0.121208325028419,0.186147704720497,-0.975016713142395,-0.0644627287983894,0.203625202178955,-0.976924419403076,0.0988768711686134,0.190549239516258,-0.976685404777527,-0.00156034517567605,0.198163852095604,-0.98016768693924,-0.11943581700325,0.207891881465912,-0.970832645893097,-0.0627953857183456,0.213822543621063,-0.97485214471817,-0.00153274624608457,0.194658696651459,-0.980869829654694,0.098835363984108,0.189779922366142,-0.976839363574982,0.130951777100563,0.20203660428524,-0.970583736896515,-0.00156862987205386,0.199216052889824,-0.979954361915588,-0.309738218784332,0.18781141936779,-0.932088553905487,-0.121932700276375,0.177016243338585,-0.976625680923462,-0.182234823703766,0.199988782405853,-0.962701916694641,-0.181821271777153,0.185176819562912,-0.965738356113434,-0.119266346096992,0.209928423166275,-0.97041517496109,-0.00153623044025153,0.19510118663311,-0.980782032012939,-0.28553780913353,0.201857030391693,-0.936868131160736,-0.309790194034576,0.183883056044579,-0.932854235172272,-0.182228997349739,0.199769511818886,-0.962748527526855,-0.00156755920033902,0.19908007979393,-0.979981958866119,0.130953386425972,0.201978072524071,-0.970595717430115,0.0835996717214584,0.20149952173233,-0.975914478302002,
  1522. 0.130962371826172,0.201652362942696,-0.970662236213684,0.325222253799438,0.198965162038803,-0.924469232559204,0.083592489361763,0.201779291033745,-0.975857377052307,-0.0539576336741447,0.19545005261898,-0.97922819852829,-0.181933477520943,0.189055874943733,-0.964965343475342,-0.00156152935232967,0.198314175009727,-0.980137288570404,-0.283445537090302,0.17767870426178,-0.942384719848633,-0.181915804743767,0.188437983393669,-0.965089619159698,-0.0539494752883911,0.195176973938942,-0.979283094406128,0.223464325070381,0.201847016811371,-0.953583598136902,0.083620473742485,0.200692042708397,-0.976079046726227,0.325373470783234,0.196410834789276,-0.924962103366852,0.326082497835159,0.183875188231468,-0.927286446094513,0.342276334762573,0.18336033821106,-0.921534657478333,0.223502323031425,0.195910543203354,-0.954811930656433,0.00152963027358055,0.194262936711311,-0.980948328971863,-0.00154162582475692,0.195786595344543,-0.980645298957825,0.0836672633886337,0.198864117264748,-0.976449131965637,0.0836294889450073,0.200340166687965,-0.976150572299957,0.223517149686813,0.193151876330376,-0.955370306968689,0.00154194340575486,0.195826709270477,-0.980637311935425,0.001424755086191,0.180944070219994,-0.983492374420166,-0.0532622523605824,0.172599866986275,-0.983551025390625,-0.00140402687247843,0.178311228752136,-0.983973145484924,0.341940939426422,0.189108267426491,-0.920496881008148,0.0696175098419189,0.170071080327034,-0.982969582080841,0.223507851362228,0.194920346140862,-0.955013275146484,0.223510473966599,0.194433316588402,-0.955111920833588,0.0649277716875076,0.212091669440269,-0.975090503692627,0.00155439146328717,0.197407633066177,-0.980320274829865,0.00789410248398781,0.14843975007534,-0.988889932632446,0.0693983435630798,0.17206797003746,-0.982637524604797,0.341886252164841,0.190026357769966,-0.920328080654144,-0.12989741563797,0.228969663381577,-0.964727818965912,0.0602221712470055,0.252832233905792,-0.965634167194366,-0.00905937235802412,0.250248938798904,-0.968139171600342,-0.160920962691307,0.190664976835251,-0.968375623226166,
  1523. -0.283722400665283,0.180771350860596,-0.941712975502014,-0.053928766399622,0.194484010338783,-0.979422211647034,-0.15910279750824,0.149612471461296,-0.975859820842743,-0.052870836108923,0.160098001360893,-0.985684275627136,0.00133248895872384,0.169226303696632,-0.985576331615448,-0.282597482204437,0.168386742472649,-0.944343447685242,-0.160529136657715,0.181287631392479,-0.970239758491516,-0.207749664783478,0.178620800375938,-0.961735248565674,0.0674233287572861,0.189914435148239,-0.97948282957077,-0.0919140577316284,0.172136962413788,-0.980775535106659,0.00146276270970702,0.185770884156227,-0.982592105865479,-0.0884113013744354,0.141634792089462,-0.985962986946106,-0.159159034490585,0.150798261165619,-0.975668132305145,0.00131125550251454,0.166529580950737,-0.986035585403442,0.0637583062052727,0.222345605492592,-0.972880959510803,-0.124486602842808,0.197513997554779,-0.972363770008087,-0.0955501943826675,0.204471439123154,-0.974198043346405,-0.0929752364754677,0.181500598788261,-0.978985786437988,-0.206790521740913,0.16703374683857,-0.964021503925323,-0.160143598914146,0.172370657324791,-0.971927165985107,-0.207834348082542,0.179659739136696,-0.961523413658142,-0.0944329425692558,0.194460242986679,-0.976354241371155,-0.123838923871517,0.193786233663559,-0.97319620847702,0.100374460220337,-0.262657850980759,-0.959654033184052,-0.0347521044313908,-0.248727947473526,-0.967949748039246,0.141117483377457,-0.274073988199234,-0.951298773288727,0.246643126010895,-0.248000457882881,-0.936836659908295,0.101110830903053,-0.248696655035019,-0.963289558887482,0.145454183220863,-0.24308679997921,-0.959036946296692,-0.0224121734499931,-0.197221353650093,-0.980102777481079,0.101151414215565,-0.247913584113121,-0.963487029075623,-0.058724831789732,-0.210137397050858,-0.975906610488892,-0.2405746281147,-0.25836506485939,-0.935612797737122,-0.0495311617851257,-0.310006648302078,-0.949443399906158,-0.0716444551944733,-0.29012605547905,-0.954302847385406,0.101153634488583,-0.247870743274689,-0.963497817516327,0.246639892458916,-0.247603565454483,-0.936942517757416,
  1524. 0.135741576552391,-0.255214810371399,-0.957308530807495,0.323718041181564,-0.238337367773056,-0.915642917156219,0.135747700929642,-0.255502104759216,-0.957231044769287,0.246638104319572,-0.247386798262596,-0.937000215053558,-0.0690023750066757,-0.273679465055466,-0.9593425989151,-0.120198734104633,-0.260732144117355,-0.957899272441864,-0.236226439476013,-0.238116279244423,-0.942070960998535,-0.305627226829529,-0.243866562843323,-0.920391798019409,-0.240091055631638,-0.256092816591263,-0.93636155128479,-0.120746076107025,-0.267261117696762,-0.956029236316681,-0.065534807741642,-0.252164930105209,-0.965462625026703,0.100317969918251,-0.263710796833038,-0.959371209144592,0.00203542364761233,-0.258498758077621,-0.966009438037872,-0.118899345397949,-0.245444238185883,-0.962091505527496,-0.0639586001634598,-0.242411226034164,-0.968063175678253,0.002062460873276,-0.261932581663132,-0.965083956718445,0.100279271602631,-0.264430165290833,-0.959177136421204,0.13566355407238,-0.251597017049789,-0.958276748657227,0.00202721985988319,-0.257456839084625,-0.966287672519684,-0.305675566196442,-0.246889159083366,-0.919569551944733,-0.121496699750423,-0.276305288076401,-0.953359305858612,-0.18102166056633,-0.249764755368233,-0.951235473155975,-0.180696547031403,-0.262873589992523,-0.947758555412292,-0.118723943829536,-0.243402630090714,-0.962631702423096,0.00205896398983896,-0.261488497257233,-0.965204417705536,-0.289348036050797,-0.236426934599876,-0.927566826343536,-0.305734813213348,-0.250878930091858,-0.918469369411469,-0.181009158492088,-0.250295221805573,-0.951098322868347,0.00202828575856984,-0.257592231035233,-0.966251611709595,0.135665357112885,-0.251679867506027,-0.958254754543304,0.0885179340839386,-0.253347516059875,-0.963317096233368,0.13562898337841,-0.250021308660507,-0.958693981170654,0.323457717895508,-0.233524054288864,-0.916974186897278,0.0885147154331207,-0.253229439258575,-0.96334832906723,-0.056600846350193,-0.260788083076477,-0.963735401630402,-0.180792391300201,-0.259150117635727,-0.948765158653259,0.00203406205400825,-0.258325934410095,-0.966055691242218,
  1525. -0.287363737821579,-0.259964883327484,-0.921867847442627,-0.180752292275429,-0.260721206665039,-0.948342382907867,-0.0566121488809586,-0.260441958904266,-0.963828325271606,0.22132670879364,-0.24362812936306,-0.944277405738831,0.088543601334095,-0.25431877374649,-0.963058769702911,0.323580950498581,-0.23578454554081,-0.916352033615112,0.324183136224747,-0.247323364019394,-0.913091719150543,0.343866676092148,-0.245659291744232,-0.906315207481384,0.221369653940201,-0.249565854668617,-0.942715406417847,-0.00206543947570026,-0.262310922145844,-0.964981198310852,0.00205382308922708,-0.260835409164429,-0.96538108587265,0.0885860696434975,-0.255924701690674,-0.96262925863266,0.0885477736592293,-0.254473596811295,-0.963017404079437,0.22138412296772,-0.251853853464127,-0.942103326320648,-0.00205335905775428,-0.260776698589325,-0.96539694070816,-0.00216870801523328,-0.275425732135773,-0.961319923400879,-0.0558415092527866,-0.283474564552307,-0.957352519035339,0.00218848721124232,-0.277938038110733,-0.96059650182724,0.343504846096039,-0.239808782935143,-0.908017694950104,0.0667020305991173,-0.286326706409454,-0.955807447433472,0.221375375986099,-0.250451415777206,-0.942479193210602,0.221376553177834,-0.250623047351837,-0.942433297634125,0.0616735741496086,-0.243707910180092,-0.967885732650757,-0.00204118434339762,-0.259230494499207,-0.965813338756561,0.00826910696923733,-0.305010706186295,-0.952313125133514,0.0664659515023232,-0.284313291311264,-0.956424713134766,0.343445777893066,-0.238872140645981,-0.908286929130554,-0.127021655440331,-0.223555818200111,-0.96637898683548,0.056801937520504,-0.202929049730301,-0.977544546127319,-0.0076887528412044,-0.206873327493668,-0.978337526321411,-0.159998089075089,-0.259601414203644,-0.952369630336761,-0.287618666887283,-0.257058382034302,-0.922603130340576,-0.0565944984555244,-0.260982275009155,-0.963683187961578,-0.157990023493767,-0.301090508699417,-0.940416753292084,-0.0554184205830097,-0.295663893222809,-0.953683316707611,-0.00225873128511012,-0.286858648061752,-0.957970261573792,-0.286538541316986,-0.269161909818649,-0.919482231140137,
  1526. -0.159570783376694,-0.269011914730072,-0.949826180934906,-0.213253885507584,-0.267876982688904,-0.939555585384369,0.0642939805984497,-0.265847891569138,-0.961868703365326,-0.091345377266407,-0.281745165586472,-0.955131232738495,-0.00213136314414442,-0.270683079957962,-0.962666273117065,-0.08796276897192,-0.311110556125641,-0.946294248104095,-0.158061474561691,-0.299721300601959,-0.940842032432556,-0.00227917148731649,-0.2894546687603,-0.95718902349472,0.0604652240872383,-0.233547687530518,-0.970463514328003,-0.121813453733921,-0.25499439239502,-0.959238946437836,-0.0948610156774521,-0.250095635652542,-0.963562965393066,-0.092324286699295,-0.273052126169205,-0.957558751106262,-0.212233349680901,-0.279503136873245,-0.936394691467285,-0.159150153398514,-0.277941554784775,-0.947322368621826,-0.21332611143589,-0.26703879237175,-0.939777791500092,-0.0937415808439255,-0.260304033756256,-0.96096533536911,-0.121092028915882,-0.259267181158066,-0.958184361457825,-0.0465159267187119,-0.47440367937088,0.879077613353729,-0.0855085104703903,-0.482128083705902,0.871917903423309,-0.0262591894716024,-0.467552840709686,0.883575022220612,0.100959800183773,-0.425666570663452,0.899230301380157,-0.048127219080925,-0.468805551528931,0.881989300251007,-0.0264137573540211,-0.46710079908371,0.883809447288513,0.108087465167046,-0.441895723342896,0.8905308842659,-0.148657605051994,-0.549432814121246,0.822207093238831,0.234043061733246,-0.387106001377106,0.891836762428284,-0.0299063641577959,-0.456845134496689,0.889043509960175,-0.286406874656677,-0.521353483200073,0.803841948509216,0.102616399526596,-0.429445326328278,0.897243857383728,-0.153997018933296,-0.539253354072571,0.827943682670593,0.103798501193523,-0.432139217853546,0.895813345909119,-0.285037249326706,-0.524947047233582,0.801987767219543,-0.193251326680183,-0.460021167993546,0.866622447967529,-0.290529251098633,-0.51039445400238,0.80937647819519,-0.496303141117096,-0.527450442314148,0.689550042152405,-0.036654856055975,-0.43680477142334,0.898809254169464,-0.507815718650818,-0.488263964653015,0.709733426570892,
  1527. -0.298668712377548,-0.488106936216354,0.820090770721436,-0.499242186546326,-0.522108137607574,0.691491484642029,-0.292568922042847,-0.504891991615295,0.812088370323181,-0.501880824565887,-0.522185206413269,0.689520299434662,-0.292551726102829,-0.504938662052155,0.812065660953522,-0.49756908416748,-0.52356344461441,0.691596925258636,-0.501865983009338,-0.522225320339203,0.689500689506531,-0.500986397266388,-0.524600803852081,0.688336133956909,-0.497478574514389,-0.523859202861786,0.69143807888031,-0.50519323348999,-0.52349591255188,0.686098992824554,-0.0469235777854919,0.180362492799759,0.98248028755188,-0.087532714009285,0.169593960046768,0.981619119644165,-0.0253661796450615,0.189076915383339,0.981634616851807,0.103756681084633,0.232526257634163,0.967039883136749,-0.0485395155847073,0.186573758721352,0.981241106987,-0.0254213754087687,0.189253613352776,0.98159921169281,0.111429162323475,0.213373318314552,0.970595359802246,-0.145719885826111,0.0870213285088539,0.985491275787354,0.231410384178162,0.255914479494095,0.938593089580536,-0.0287720188498497,0.199971139431,0.979379236698151,-0.279867470264435,0.0975601226091385,0.955068707466125,0.105915702879429,0.227158412337303,0.968081057071686,-0.151053965091705,0.0984885394573212,0.983606994152069,0.107094720005989,0.224219933152199,0.968636214733124,-0.278502583503723,0.0936497896909714,0.955858767032623,-0.191079825162888,0.18576480448246,0.963836073875427,-0.28481450676918,0.111839592456818,0.952036023139954,-0.498457789421082,0.0189383681863546,0.86670708656311,-0.0359836108982563,0.222990304231644,0.974156320095062,-0.507114827632904,0.0633434951305389,0.859547674655914,-0.292749643325806,0.135107174515724,0.946595847606659,-0.501352965831757,0.0242781434208155,0.864902198314667,-0.28685787320137,0.117787569761276,0.950704395771027,-0.502718091011047,0.0241388902068138,0.864113450050354,-0.286863207817078,0.117803141474724,0.950700759887695,-0.496950149536133,0.0250536445528269,0.867417335510254,-0.502716183662415,0.024133438244462,0.864114582538605,-0.501804351806641,0.0214707236737013,0.864714622497559,
  1528. -0.4968341588974,0.0246333405375481,0.867495834827423,-0.505720853805542,0.0212198570370674,0.862436175346375,-0.0406128689646721,-0.28513965010643,0.957625150680542,-0.0759391635656357,-0.29466786980629,0.952577590942383,-0.0147387189790607,-0.275085657835007,0.961306750774384,0.105516366660595,-0.230941459536552,0.967229306697845,-0.0415122583508492,-0.282193601131439,0.95845890045166,-0.0138955805450678,-0.277456879615784,0.96063756942749,0.116563469171524,-0.255120068788528,0.959857642650604,-0.133916348218918,-0.381453156471252,0.914636611938477,0.242663279175758,-0.194480985403061,0.950416684150696,-0.0157537683844566,-0.272228091955185,0.96210378408432,-0.265877723693848,-0.363926023244858,0.892674028873444,0.110532663762569,-0.241920560598373,0.963979780673981,-0.139639481902123,-0.370578348636627,0.918244242668152,0.11182751506567,-0.244754567742348,0.963114619255066,-0.264360547065735,-0.367712616920471,0.891572177410126,-0.180915877223015,-0.288952767848969,0.940093576908112,-0.271172255277634,-0.350565820932388,0.896420240402222,-0.481579631567001,-0.401463896036148,0.779042899608612,-0.0227365028113127,-0.252485990524292,0.967333376407623,-0.494508683681488,-0.361326366662979,0.790509104728699,-0.28005775809288,-0.327619105577469,0.902348816394806,-0.4847012758255,-0.396048605442047,0.779878318309784,-0.273437291383743,-0.344779938459396,0.897974848747253,-0.486958771944046,-0.396327316761017,0.778328835964203,-0.273437529802322,-0.344779431819916,0.897975087165833,-0.483142375946045,-0.396956741809845,0.780383765697479,-0.486950188875198,-0.39634957909584,0.77832305431366,-0.485953658819199,-0.398904770612717,0.777640044689178,-0.482956737279892,-0.397515833377838,0.780214190483093,-0.49058473110199,-0.398347228765488,0.775013625621796,0.0495784394443035,0.611825942993164,-0.789437115192413,0.0880500674247742,0.618030726909637,-0.78120756149292,0.0290825609117746,0.605833470821381,-0.795059740543365,-0.0996730849146843,0.569581985473633,-0.815868616104126,0.0503246672451496,0.609476268291473,-0.79120546579361,
  1529. 0.0282356329262257,0.608072698116302,-0.793379068374634,-0.109470225870609,0.589419364929199,-0.800375580787659,0.145960554480553,0.682838797569275,-0.715839862823486,-0.234116449952126,0.53600937128067,-0.811100125312805,0.029739011079073,0.604093730449677,-0.796358168125153,0.284063130617142,0.653350234031677,-0.701741814613342,-0.104012958705425,0.578402519226074,-0.809093356132507,0.151254385709763,0.673861920833588,-0.72320967912674,-0.105188466608524,0.580782651901245,-0.807234108448029,0.282700926065445,0.656537473201752,-0.699313044548035,0.190199986100197,0.60297292470932,-0.774756491184235,0.288484543561935,0.642840087413788,-0.709600806236267,0.499391406774521,0.639371752738953,-0.584646880626678,0.0363486744463444,0.586381196975708,-0.809219300746918,0.507207691669464,0.604668259620667,-0.614098250865936,0.296532064676285,0.623036742210388,-0.72380518913269,0.502337276935577,0.634440362453461,-0.5874884724617,0.290534913539886,0.637878656387329,-0.713232278823853,0.501604497432709,0.633998990058899,-0.588590085506439,0.290526032447815,0.637900292873383,-0.713216543197632,0.497067987918854,0.635733664035797,-0.590564250946045,0.501590847969055,0.634032130241394,-0.588565945625305,0.500699520111084,0.636197566986084,-0.586986184120178,0.496948540210724,0.636079609394073,-0.59029221534729,0.508141040802002,0.634108424186707,-0.582837224006653,-0.0152181573212147,0.743141233921051,-0.668961644172668,-0.106170944869518,0.740775108337402,-0.663309872150421,-0.0300371330231428,0.74655944108963,-0.664640307426453,-0.138120785355568,0.733578503131866,-0.665421187877655,-0.0149940932169557,0.74833881855011,-0.663147211074829,-0.0300340838730335,0.74650502204895,-0.664701640605927,-0.127650871872902,0.749903380870819,-0.649115025997162,-0.0151335494592786,0.745111703872681,-0.666768014431,-0.138502568006516,0.737154304981232,-0.661377787590027,-0.139430418610573,0.745914995670319,-0.651283383369446,-0.0305016916245222,0.754822552204132,-0.655219495296478,-0.228012263774872,0.722139418125153,-0.653088867664337,-0.154621675610542,0.697283804416656,-0.699919581413269,
  1530. -0.139987945556641,0.75122994184494,-0.64502477645874,-0.333986401557922,0.708547055721283,-0.621622323989868,-0.334346562623978,0.706477522850037,-0.623780310153961,-0.140167579054832,0.752950847148895,-0.642975926399231,-0.239118278026581,0.748116254806519,-0.61898672580719,0.217567071318626,-0.112080805003643,0.969588816165924,0.210071817040443,-0.108961075544357,0.971595346927643,0.108122922480106,-0.0684691295027733,0.991777002811432,0.2171251475811,-0.113246709108353,0.969552397727966,0.107096552848816,-0.0710014402866364,0.991710305213928,0.1745924949646,-0.0932001248002052,0.980219960212708,0.381776422262192,-0.155502453446388,0.911079466342926,0.233352079987526,-0.0697150677442551,0.969889998435974,0.17328317463398,-0.100038439035416,0.979778170585632,0.101443216204643,-0.0849048718810081,0.991211593151093,0.0770594105124474,-0.074403241276741,0.994246542453766,0.174881562590599,-0.0916837453842163,0.980311453342438,0.373757719993591,-0.103731915354729,0.921707570552826,0.173937320709229,-0.0966280773282051,0.980004489421844,0.120228461921215,-0.126019686460495,0.984715282917023,0.174775809049606,-0.092238761484623,0.980278253555298,0.0774121508002281,-0.0731603652238846,0.994311273097992,0.119663253426552,-0.0765693634748459,0.989857494831085,0.0145960161462426,-0.96534138917923,-0.26058241724968,0.107272148132324,-0.958992779254913,-0.26234632730484,0.0353394895792007,-0.963210642337799,-0.266413956880569,0.14132522046566,-0.956489741802216,-0.255254298448563,0.014277309179306,-0.963041007518768,-0.268976211547852,0.0353258661925793,-0.963303744792938,-0.266078948974609,0.126301422715187,-0.952459514141083,-0.277252346277237,0.0144849922508001,-0.964547455310822,-0.263512015342712,0.141670286655426,-0.955116808414459,-0.26015642285347,0.14182910323143,-0.95447164773941,-0.262427866458893,0.0354115217924118,-0.962716102600098,-0.268185943365097,0.231132864952087,-0.942924499511719,-0.239731088280678,0.160546079277992,-0.969457983970642,-0.185408279299736,0.141793444752693,-0.954617261886597,-0.261916995048523,
  1531. 0.336510956287384,-0.91105705499649,-0.238191962242126,0.336775600910187,-0.911553740501404,-0.235906660556793,0.141881003975868,-0.954258859157562,-0.263172566890717,0.24049898982048,-0.931454479694366,-0.273043572902679,0.210209727287292,-0.875420570373535,0.435259371995926,0.209359928965569,-0.875196158885956,0.436119347810745,0.101756103336811,-0.869411945343018,0.483496218919754,0.209851413965225,-0.875912845134735,0.434441119432449,0.100668750703335,-0.870799422264099,0.481221586465836,0.174810349941254,-0.87397962808609,0.453432470560074,0.380293846130371,-0.858222961425781,0.344717234373093,0.219196185469627,-0.862671792507172,0.455796450376511,0.169776722788811,-0.88622522354126,0.431023120880127,0.0949044302105904,-0.878017127513886,0.469125866889954,0.079238660633564,-0.875673949718475,0.476357400417328,0.175037518143654,-0.873405933380127,0.454448997974396,0.373377203941345,-0.84159791469574,0.390259444713593,0.169905945658684,-0.885921776294708,0.431595683097839,0.116823330521584,-0.906547069549561,0.405616492033005,0.17494623363018,-0.873636841773987,0.454040467739105,0.0795783028006554,-0.87507301568985,0.477403938770294,0.115816086530685,-0.873414397239685,0.473005175590515,0.0138773834332824,-0.980614840984344,0.195453062653542,0.103736557066441,-0.975948572158813,0.191737160086632,0.0326517522335052,-0.981263101100922,0.189885661005974,0.139638334512711,-0.970454871654511,0.196770146489143,0.013644733466208,-0.982134163379669,0.187686786055565,0.0326447337865829,-0.981228530406952,0.190065413713455,0.127555638551712,-0.976299464702606,0.174839749932289,0.0137893501669168,-0.981197774410248,0.192512288689613,0.139983043074608,-0.971406161785126,0.191767558455467,0.14085379242897,-0.973739206790924,0.178864181041718,0.0331339351832867,-0.983570158481598,0.177460074424744,0.228940352797508,-0.954205214977264,0.192558288574219,0.154503479599953,-0.957039654254913,0.245364546775818,0.141359612345696,-0.975045561790466,0.171183094382286,0.33107390999794,-0.927647888660431,0.172798946499825,0.331456452608109,-0.926945745944977,0.175807327032089,
  1532. 0.141525477170944,-0.975465774536133,0.168633043766022,0.239979758858681,-0.959107339382172,0.150076135993004,0.348220825195313,0.797546744346619,0.492606997489929,0.532670915126801,0.744780659675598,0.401949763298035,0.376517027616501,0.803053379058838,0.461887657642365,0.35129389166832,0.789250254631042,0.503663241863251,0.380244165658951,0.785038948059082,0.489007413387299,0.189872726798058,0.811769485473633,0.55224871635437,-0.165036484599113,0.750224769115448,0.640254497528076,0.352842003107071,0.784935712814331,0.509292125701904,0.195116221904755,0.793537974357605,0.576391518115997,0.380294382572174,0.784775793552399,0.489390552043915,0.271888345479965,0.810397386550903,0.518972814083099,0.189137846231461,0.814216196537018,0.548888802528381,-0.177015274763107,0.767707645893097,0.615865707397461,0.195332899689674,0.792754113674164,0.577395856380463,-0.0133316041901708,0.779262900352478,0.626555383205414,0.193013057112694,0.801017880439758,0.566671311855316,0.276122808456421,0.778534054756165,0.563596427440643,-0.0166375879198313,0.795846283435822,0.605270266532898,0.0631128549575806,0.690833151340485,0.720254361629486,0.151891618967056,0.68806266784668,0.709576427936554,0.0537562258541584,0.694043874740601,0.717923045158386,0.304784566164017,0.676320493221283,0.670594453811646,0.151881471276283,0.688188433647156,0.709456622600555,0.0632505640387535,0.689431726932526,0.721583902835846,-0.107441402971745,0.688792884349823,0.716952383518219,0.0634615644812584,0.687275648117065,0.723619222640991,0.051527626812458,0.68222188949585,0.729327321052551,0.0625281780958176,0.696726024150848,0.714606940746307,-0.13310569524765,0.643320798873901,0.753937125205994,0.305133938789368,0.67490428686142,0.671861231327057,-0.108710989356041,0.675309717655182,0.729478359222412,-0.142136707901955,0.680788040161133,0.71855753660202,0.0627691820263863,0.694308638572693,0.716934859752655,0.0479309409856796,0.659737706184387,0.749965846538544,0.306122452020645,0.670858025550842,0.675454318523407,-0.132022440433502,0.638810336589813,0.757952272891998,
  1533. -0.42219939827919,0.587576270103455,0.690291106700897,-0.142452999949455,0.682095587253571,0.717253684997559,-0.112876199185848,0.626137375831604,0.771499156951904,0.0287769567221403,0.724257171154022,0.688929200172424,-0.142202287912369,0.681059181690216,0.718287467956543,-0.421912878751755,0.586454510688782,0.691419303417206,0.46240496635437,0.738592386245728,0.490574061870575,0.00211280025541782,0.747183620929718,0.664614319801331,0.272114187479019,0.738279938697815,0.617168188095093,0.461931586265564,0.740162193775177,0.488650381565094,0.24795389175415,0.797464072704315,0.550063610076904,-0.000345627719070762,0.753453612327576,0.657500982284546,0.231917962431908,0.80598771572113,0.544607996940613,-0.00906222127377987,0.775102376937866,0.631770670413971,-0.197999492287636,0.712715923786163,0.672928094863892,-0.00556645914912224,0.766529381275177,0.642185270786285,0.249389663338661,0.784045577049255,0.568398952484131,-0.0858710780739784,0.767045259475708,0.63582056760788,-0.0152420476078987,0.78989976644516,0.613046526908875,-0.0872204601764679,0.771590054035187,0.630112171173096,-0.211538329720497,0.737751066684723,0.641073286533356,0.249772295355797,0.780177056789398,0.573530972003937,0.147432684898376,0.794384121894836,0.589251816272736,-0.0858377143740654,0.766932547092438,0.63596099615097,-0.182615771889687,0.739280939102173,0.648163020610809,-0.226906880736351,0.765365183353424,0.602270364761353,-0.0878851190209389,0.773818969726563,0.627280175685883,-0.0870430320501328,0.770994067192078,0.63086599111557,0.148514628410339,0.766349256038666,0.625021755695343,-0.185115933418274,0.752019226551056,0.632613003253937,0.233714908361435,0.592771708965302,0.770713329315186,-0.232256859540939,0.477187156677246,0.847554802894592,0.038043636828661,0.525964081287384,0.849655628204346,0.233034282922745,0.59550279378891,0.768811702728271,0.00959515105932951,0.59819483757019,0.801293253898621,-0.235352426767349,0.486241072416306,0.841533660888672,-0.0109379589557648,0.620243489742279,0.784333229064941,-0.249778926372528,0.528794765472412,0.81116384267807,
  1534. -0.428365021944046,0.430701345205307,0.794354915618896,-0.244064271450043,0.511864721775055,0.823666870594025,0.0104182753711939,0.588158428668976,0.80867862701416,-0.325688153505325,0.502669751644135,0.800781071186066,-0.328583687543869,0.515065610408783,0.791669249534607,-0.442210108041763,0.463331788778305,0.767967343330383,-0.256894767284393,0.550021708011627,0.794657945632935,0.0106355864554644,0.585490107536316,0.810609817504883,-0.101876020431519,0.578218936920166,0.809496223926544,-0.326220333576202,0.50493186712265,0.799139618873596,-0.424709558486938,0.464669704437256,0.776983976364136,-0.457215964794159,0.500118374824524,0.735414981842041,-0.329473495483398,0.518919825553894,0.78877717256546,-0.326255649328232,0.505082190036774,0.799030184745789,-0.100050508975983,0.536716997623444,0.837809503078461,-0.425514578819275,0.469495177268982,0.77363532781601,-0.0482308939099312,0.791709423065186,-0.608990967273712,-0.0400097109377384,0.800852715969086,-0.597523391246796,0.143221572041512,0.766220927238464,-0.626412868499756,-0.185789346694946,0.764872968196869,-0.616807639598846,-0.0546979941427708,0.762571573257446,-0.644587278366089,-0.0528141558170319,0.772970378398895,-0.632240056991577,0.0811375230550766,0.772266268730164,-0.630096435546875,-0.0475965924561024,0.794232189655304,-0.60574734210968,0.14373604953289,0.76855456829071,-0.6234290599823,-0.0513506792485714,0.779052197933197,-0.62485259771347,-0.165344059467316,0.785326182842255,-0.596593976020813,-0.179345369338989,0.775449097156525,-0.605403959751129,0.0804187953472137,0.789490342140198,-0.608471751213074,-0.164281025528908,0.774050116539001,-0.611439406871796,-0.0475818105041981,0.794290781021118,-0.605671644210815,-0.204696521162987,0.778460681438446,-0.593378722667694,-0.168282851576805,0.79291045665741,-0.585639894008636,-0.164341419935226,0.77468204498291,-0.610622346401215,-0.169096127152443,0.753096103668213,-0.635808765888214,-0.164094388484955,0.772104024887085,-0.613945007324219,0.0805712416768074,0.786006391048431,-0.612945556640625,
  1535. -0.208141580224037,0.759913921356201,-0.615798652172089,-0.165022358298302,0.781877756118774,-0.601194500923157,-0.199328139424324,0.800078272819519,-0.565812051296234,-0.0715804100036621,0.197027713060379,0.977781355381012,0.00979753769934177,0.206110119819641,0.978479743003845,-0.0957687422633171,0.198581889271736,0.975394070148468,0.0876354947686195,0.204286873340607,0.974980473518372,0.0108790686354041,0.196247071027756,0.980494141578674,-0.0702898278832436,0.186021521687508,0.980028331279755,-0.25281223654747,0.198493376374245,0.9469353556633,-0.0728648751974106,0.208034545183182,0.975403785705566,-0.095731221139431,0.199022218585014,0.975308001041412,-0.0712877660989761,0.19452702999115,0.978303372859955,-0.258930057287216,0.116631530225277,0.958828628063202,0.0891651511192322,0.199314340949059,0.975870668888092,-0.252917677164078,0.193186640739441,0.948004007339478,-0.278831034898758,0.20289209485054,0.938662886619568,-0.0753306970000267,0.229317545890808,0.970432221889496,-0.1627586632967,0.0881813392043114,0.982717514038086,0.08892872184515,0.200083836913109,0.975734651088715,-0.256772220134735,0.107746183872223,0.960447192192078,-0.55108505487442,0.0986965671181679,0.828591763973236,-0.276074320077896,0.190427124500275,0.942083060741425,-0.253610998392105,0.114345543086529,0.960524082183838,-0.258485704660416,0.277732312679291,0.925229668617249,-0.275900572538376,0.189647525548935,0.94229120016098,-0.551099181175232,0.0987729281187058,0.828573226928711,0.229225352406502,0.9694544672966,-0.0872570276260376,0.0272154677659273,0.980139970779419,-0.196431070566177,-0.107103563845158,0.97719818353653,-0.183337777853012,0.228733286261559,0.969778895378113,-0.0849130302667618,-0.109097398817539,0.978335082530975,-0.175949528813362,0.00847135577350855,0.994159698486328,-0.107586175203323,-0.0263314601033926,0.996690332889557,-0.0769093707203865,-0.345039129257202,0.918556928634644,-0.192876011133194,-0.121778473258018,0.984252691268921,-0.128127560019493,-0.117847248911858,0.982665598392487,-0.143109440803528,-0.227148830890656,0.963263988494873,-0.143268808722496,
  1536. 0.0087327491492033,0.993792653083801,-0.110905908048153,-0.131365448236465,0.987150728702545,-0.0909759178757668,-0.362977355718613,0.921717941761017,-0.136688306927681,-0.226287841796875,0.962609648704529,-0.148918360471725,0.00922813545912504,0.993065774440765,-0.117197327315807,-0.226710841059685,0.96293431520462,-0.14614973962307,-0.120131015777588,0.984925508499146,-0.124460101127625,-0.356464684009552,0.92091977596283,-0.1576067507267,-0.358307659626007,0.917085587978363,-0.174842327833176,-0.224619030952454,0.96126800775528,-0.159718692302704,-0.225023403763771,0.961601734161377,-0.157119750976563,-0.358713239431381,0.917421162128448,-0.172230243682861,-0.117986708879471,0.979732096195221,-0.161877617239952,0.220003500580788,0.715682744979858,-0.662870049476624,0.01792754791677,0.656853556632996,-0.753805041313171,-0.107005544006824,0.664528071880341,-0.739562213420868,0.219844833016396,0.716225564479828,-0.66233617067337,-0.108378499746323,0.668293952941895,-0.735960125923157,0.00955165177583694,0.721271812915802,-0.692586302757263,-0.0251278150826693,0.727432310581207,-0.685719192028046,-0.339803665876389,0.595710098743439,-0.727779448032379,-0.115448825061321,0.687514364719391,-0.716934859752655,-0.107938468456268,0.667088150978088,-0.737117826938629,-0.222613289952278,0.649013996124268,-0.727477967739105,0.0125531610101461,0.694049060344696,-0.719818234443665,-0.118352085351944,0.695321202278137,-0.708887338638306,-0.351289182901382,0.619245052337646,-0.702233195304871,-0.220512121915817,0.63964569568634,-0.73636120557785,0.0124859670177102,0.694671750068665,-0.719218552112579,-0.223404675722122,0.652557909488678,-0.724057078361511,-0.121054120361805,0.683282434940338,-0.720049381256104,-0.357451409101486,0.6319300532341,-0.687672078609467,-0.362494349479675,0.616178035736084,-0.699229955673218,-0.225655570626259,0.662686586380005,-0.714091062545776,-0.225867986679077,0.663646161556244,-0.71313214302063,-0.362925410270691,0.618263721466064,-0.69716215133667,-0.120366387069225,0.674862921237946,-0.72806042432785,
  1537. -0.064894936978817,0.235913351178169,-0.969604849815369,-0.152692064642906,0.228385657072067,-0.961522400379181,-0.0494665019214153,0.232103064656258,-0.971432566642761,-0.30198335647583,0.196235492825508,-0.932897448539734,-0.152272194623947,0.221704587340355,-0.963151216506958,-0.0644921734929085,0.22996623814106,-0.971059381961823,0.104954808950424,0.236186608672142,-0.966022968292236,-0.0652772411704063,0.241584032773972,-0.968181848526001,-0.0471824444830418,0.24863275885582,-0.967447996139526,-0.0623599365353584,0.198917835950851,-0.978030145168304,0.14107072353363,0.262487500905991,-0.954567611217499,-0.298537135124207,0.178122296929359,-0.937628924846649,0.105971746146679,0.251933217048645,-0.961924970149994,0.145082175731659,0.240300089120865,-0.959795296192169,-0.0646709725260735,0.232601910829544,-0.970419526100159,-0.0457595027983189,0.24601349234581,-0.968185663223267,-0.298964619636536,0.180342122912407,-0.937068223953247,0.140661731362343,0.264718651771545,-0.954011678695679,0.424187332391739,0.261466950178146,-0.867006421089172,0.14643706381321,0.232677891850472,-0.961466193199158,0.109344653785229,0.307127445936203,-0.945365905761719,-0.0324596166610718,0.185448512434959,-0.982117712497711,0.146304592490196,0.233426079154015,-0.96130496263504,0.424011081457138,0.262406319379807,-0.866808831691742,0.464669942855835,-0.0235335547477007,0.885171175003052,0.0113682746887207,-0.166934728622437,0.985902428627014,0.277263641357422,-0.128944084048271,0.952102065086365,0.464045017957687,-0.0202457066625357,0.885580241680145,0.254305779933929,-0.0397564843297005,0.966306388378143,0.00846375059336424,-0.155997782945633,0.987721145153046,0.230393871665001,-0.0144461374729872,0.972990334033966,-0.00544893182814121,-0.103384025394917,0.994626700878143,-0.201105862855911,-0.171334877610207,0.964469194412231,0.000161040603416041,-0.124644242227077,0.992201507091522,0.25507390499115,-0.0532923825085163,0.965451836585999,-0.090051956474781,-0.121480152010918,0.988500475883484,-0.0125929182395339,-0.0762223526835442,0.997011303901672,
  1538. -0.0935567542910576,-0.102862223982811,0.99028617143631,-0.214666441082954,-0.129932016134262,0.968006193637848,0.255267471075058,-0.0568388141691685,0.965198338031769,0.143585368990898,-0.0628459006547928,0.98764044046402,-0.0906545743346214,-0.118294425308704,0.98883181810379,-0.183356866240501,-0.134162947535515,0.973848342895508,-0.229866489768028,-0.0816468670964241,0.969791412353516,-0.0949350371956825,-0.0954805687069893,0.990893959999084,-0.0911498665809631,-0.115671277046204,0.989096462726593,0.144888788461685,-0.112133242189884,0.983073532581329,-0.184299886226654,-0.126250699162483,0.974727809429169,0.22821182012558,-0.293377071619034,0.928358495235443,-0.243841037154198,-0.419007360935211,0.874628126621246,0.019764669239521,-0.400107651948929,0.916255116462708,0.228038623929024,-0.292599946260452,0.928646147251129,0.00764198927208781,-0.318481117486954,0.947898507118225,-0.245699733495712,-0.412815421819687,0.877049088478088,-0.0141765680164099,-0.326640516519547,0.945042431354523,-0.250084012746811,-0.3979731798172,0.882652461528778,-0.427510976791382,-0.435670435428619,0.792102038860321,-0.24491311609745,-0.415443181991577,0.876027822494507,0.0108331413939595,-0.360162496566772,0.932826697826386,-0.327559053897858,-0.401235103607178,0.855403661727905,-0.326516211032867,-0.406193763017654,0.853459894657135,-0.435085296630859,-0.414146333932877,0.799489736557007,-0.252493053674698,-0.38967177271843,0.885665357112885,0.0110498797148466,-0.362977713346481,0.931732296943665,-0.0983802527189255,-0.36606964468956,0.925372540950775,-0.32813772559166,-0.398458540439606,0.856479227542877,-0.418586581945419,-0.41537794470787,0.807617902755737,-0.451932460069656,-0.362518489360809,0.815068960189819,-0.32874783873558,-0.395510911941528,0.857610642910004,-0.328395664691925,-0.397214710712433,0.856957852840424,-0.0966926962137222,-0.41346737742424,0.905370235443115,-0.421648144721985,-0.395449757575989,0.815985500812531,0.150003403425217,-0.311367839574814,0.938375771045685,0.239377453923225,-0.301802188158035,0.922829270362854,
  1539. 0.1361093968153,-0.308287650346756,0.941505670547485,0.390396922826767,-0.268697202205658,0.880563616752625,0.239331871271133,-0.300844252109528,0.923153936862946,0.149991720914841,-0.311145424842834,0.938451409339905,-0.0246330853551626,-0.312840193510056,0.949486315250397,0.150251641869545,-0.316132485866547,0.936741650104523,0.133817717432976,-0.323427826166153,0.936743021011353,0.148418515920639,-0.282342284917831,0.947763025760651,-0.0539105981588364,-0.352319031953812,0.934325933456421,0.387550562620163,-0.253092497587204,0.886424720287323,-0.0251477435231209,-0.319376289844513,0.947294354438782,-0.0619075708091259,-0.308387398719788,0.949244260787964,0.149341106414795,-0.298959970474243,0.942507386207581,0.128534987568855,-0.340726524591446,0.931334733963013,0.388990759849548,-0.26092141866684,0.883519232273102,-0.0522498078644276,-0.361264258623123,0.93099844455719,-0.341611444950104,-0.341959625482559,0.875422894954681,-0.0608091279864311,-0.314507305622101,0.94730532169342,-0.0305962301790714,-0.388572037220001,0.920910239219666,0.111200869083405,-0.264323055744171,0.958002030849457,-0.0607246458530426,-0.314976871013641,0.947154760360718,-0.341520011425018,-0.342460840940475,0.87526261806488,-0.0712356343865395,-0.714420735836029,0.696080803871155,0.0172134004533291,-0.709518313407898,0.704476714134216,-0.0958846658468246,-0.711590349674225,0.696021139621735,0.088843084871769,-0.707801640033722,0.700802206993103,0.0182701777666807,-0.716464817523956,0.697383940219879,-0.0698347836732864,-0.722683489322662,0.687642157077789,-0.25576314330101,-0.68713903427124,0.680018484592438,-0.0725823640823364,-0.706324458122253,0.704157412052155,-0.0958435013890266,-0.711243629455566,0.696381092071533,-0.0708345174789429,-0.716803133487701,0.693668305873871,-0.259482502937317,-0.742627143859863,0.617392718791962,0.0904528796672821,-0.711383163928986,0.696959316730499,-0.255868166685104,-0.690896034240723,0.676161348819733,-0.279732912778854,-0.678281784057617,0.679472804069519,-0.0752184838056564,-0.690029859542847,0.719861805438995,
  1540. -0.162696957588196,-0.778217017650604,0.60655415058136,0.090060219168663,-0.710510969161987,0.697899222373962,-0.257378876209259,-0.748602271080017,0.611024379730225,-0.546272695064545,-0.644119441509247,0.535440266132355,-0.277044415473938,-0.687616348266602,0.671140909194946,-0.256554216146469,-0.744166016578674,0.616763234138489,-0.260289251804352,-0.625604152679443,0.73543792963028,-0.276861131191254,-0.688242971897125,0.670574069023132,-0.546287298202515,-0.644060611724854,0.535496115684509,0.186691373586655,0.947526752948761,-0.259498327970505,-0.0193344540894032,0.928272247314453,-0.371398508548737,-0.148951470851898,0.924336433410645,-0.351305603981018,0.186346963047981,0.948001027107239,-0.258009493350983,-0.150499194860458,0.926126182079315,-0.345890611410141,-0.0306775737553835,0.958260715007782,-0.284245103597641,-0.0625018998980522,0.957075536251068,-0.28301927447319,-0.373833239078522,0.845561146736145,-0.38114994764328,-0.154841288924217,0.931005477905273,-0.330534398555756,-0.151505887508392,0.927276194095612,-0.342351943254471,-0.258599668741226,0.904043018817902,-0.340341657400131,-0.0277861785143614,0.948961079120636,-0.314166873693466,-0.159950971603394,0.936472713947296,-0.312145113945007,-0.38851997256279,0.856662034988403,-0.33938530087471,-0.25502598285675,0.897356688976288,-0.360156536102295,-0.0279075689613819,0.949368536472321,-0.312922596931458,-0.259425282478333,0.905560195446014,-0.335647821426392,-0.159339427947998,0.934322237968445,-0.318830519914627,-0.392420828342438,0.859404683113098,-0.327764421701431,-0.394118368625641,0.852082490921021,-0.344421446323395,-0.259151965379715,0.905059158802032,-0.337206482887268,-0.259116888046265,0.90499472618103,-0.337406307458878,-0.394228160381317,0.852292358875275,-0.343775928020477,-0.157301276922226,0.925161361694336,-0.34544575214386,0.0650294125080109,0.219956040382385,0.973339855670929,0.148798584938049,0.222879111766815,0.963423013687134,0.047527015209198,0.224544242024422,0.973304212093353,0.307720333337784,0.233840957283974,0.922294199466705,
  1541. 0.148711830377579,0.224333301186562,0.96309894323349,0.0650785565376282,0.21928346157074,0.973488330841064,-0.106367468833923,0.225086078047752,0.968515455722809,0.0649421364068985,0.221149161458015,0.973075330257416,0.0461389310657978,0.214570462703705,0.975618124008179,0.0619907975196838,0.260549068450928,0.963468492031097,-0.141451358795166,0.197136864066124,0.970117926597595,0.302291125059128,0.263222128152847,0.916151821613312,-0.106456436216831,0.223746225237846,0.968816101551056,-0.147668287158012,0.23255480825901,0.961307644844055,0.0630430206656456,0.246707439422607,0.967037260532379,0.0448380373418331,0.207567945122719,0.977192461490631,0.303942531347275,0.254470318555832,0.918076157569885,-0.139740720391274,0.187534496188164,0.972267091274261,-0.418655842542648,0.125267997384071,0.899463832378387,-0.140319600701332,0.190778359770775,0.97155237197876,-0.112835384905338,0.116743206977844,0.986731588840485,0.0370483845472336,0.242766067385674,0.969377160072327,-0.140316739678383,0.190762206912041,0.971556067466736,-0.418568938970566,0.124821305274963,0.899566411972046,0.454469978809357,0.404703140258789,0.793519020080566,-0.00341953034512699,0.328815937042236,0.944387853145599,0.264332592487335,0.341673403978348,0.901880025863647,0.454237073659897,0.405760407447815,0.793112337589264,0.253930538892746,0.423860996961594,0.869402766227722,-0.00495177414268255,0.334437191486359,0.942405045032501,0.232241868972778,0.417008340358734,0.878730773925781,-0.0082253236323595,0.346406608819962,0.938048422336578,-0.194637209177017,0.274071931838989,0.941807270050049,-0.00375828286632895,0.330059766769409,0.943952560424805,0.256837129592896,0.381631314754486,0.887914538383484,-0.0920341014862061,0.33055192232132,0.939289808273315,-0.0100206043571234,0.352947622537613,0.93558943271637,-0.0913418829441071,0.327104061841965,0.940563440322876,-0.202461674809456,0.296144604682922,0.93343859910965,0.25758695602417,0.36906823515892,0.892993628978729,0.14989747107029,0.373568892478943,0.915410876274109,-0.0906944647431374,0.323880136013031,0.941741049289703,
  1542. -0.181357905268669,0.298020422458649,0.937172949314117,-0.220117911696434,0.346606910228729,0.911817848682404,-0.0937422215938568,0.339069545269012,0.936079204082489,-0.0975161269307137,0.357925683259964,0.928644061088562,0.150280609726906,0.359783560037613,0.920853674411774,-0.187048688530922,0.342944651842117,0.920544266700745,0.226169541478157,0.149374648928642,0.962566673755646,-0.242299064993858,0.0127183515578508,0.970118224620819,0.0212691146880388,0.0500820986926556,0.998518705368042,0.225870937108994,0.1507458537817,0.962423086166382,0.00594529928639531,0.136251091957092,0.990656495094299,-0.244237646460533,0.0195558723062277,0.969518303871155,-0.0125008979812264,0.128416284918785,0.991641581058502,-0.248929619789124,0.0362858027219772,0.967841625213623,-0.430719435214996,-0.0395098067820072,0.901620745658875,-0.243599995970726,0.0173020455986261,0.969721555709839,0.0091428505256772,0.0922495722770691,0.995694041252136,-0.325608611106873,0.0235921535640955,0.94521027803421,-0.324142098426819,0.0159147381782532,0.945874631404877,-0.438406825065613,-0.0166843328624964,0.898621797561646,-0.251523584127426,0.0456481613218784,0.966774106025696,0.0100850444287062,0.0792016535997391,0.99680769443512,-0.0974471271038055,0.0736370533704758,0.992512762546539,-0.32416358590126,0.0160262286663055,0.945865273475647,-0.41957351565361,-0.0143096493557096,0.907608687877655,-0.455371677875519,0.0367196574807167,0.889543890953064,-0.325968027114868,0.0254905670881271,0.945037066936493,-0.330396294593811,0.0494174771010876,0.942547738552094,-0.0969227254390717,0.0577809102833271,0.993613302707672,-0.425868272781372,0.033015925437212,0.904182612895966,-0.152140721678734,-0.138579249382019,-0.978595435619354,-0.233556061983109,-0.139806613326073,-0.962240040302277,-0.132748007774353,-0.143143802881241,-0.980758905410767,-0.391972124576569,-0.150966063141823,-0.907506108283997,-0.233486413955688,-0.141490802168846,-0.962010622024536,-0.152156785130501,-0.138277903199196,-0.978635549545288,0.020036730915308,-0.156160935759544,-0.987528383731842,
  1543. -0.151645988225937,-0.147728115320206,-0.977333068847656,-0.132549196481705,-0.141739800572395,-0.980989575386047,-0.150508612394333,-0.167867317795753,-0.97425240278244,0.0575150214135647,-0.10105886310339,-0.993216574192047,-0.389121294021606,-0.167890354990959,-0.905757963657379,0.0207040086388588,-0.147340849041939,-0.988869071006775,0.0670917630195618,-0.157277584075928,-0.985272765159607,-0.150676533579826,-0.16496716439724,-0.974721729755402,-0.130388200283051,-0.111673809587955,-0.98515373468399,-0.39025142788887,-0.161268830299377,-0.906474590301514,0.0562142580747604,-0.0934826731681824,-0.994032680988312,0.345920026302338,-0.0828495398163795,-0.934598982334137,0.0639752000570297,-0.138895824551582,-0.988238394260406,0.0270239003002644,-0.0620872564613819,-0.997704803943634,-0.11381720751524,-0.188866287469864,-0.975384652614594,0.0637075081467628,-0.137320891022682,-0.988475859165192,0.345665901899338,-0.0813499614596367,-0.934824705123901,0.118178486824036,-0.937646627426147,-0.326883554458618,0.104471400380135,-0.93325811624527,-0.343678712844849,-0.0822613686323166,-0.935970902442932,-0.342332482337952,0.300024479627609,-0.917445063591003,-0.261304199695587,0.105182364583015,-0.957399904727936,-0.268927752971649,0.114450976252556,-0.952711284160614,-0.281500220298767,-0.0225599482655525,-0.944507420063019,-0.327714562416077,0.118251398205757,-0.937318205833435,-0.327797770500183,-0.0821992754936218,-0.935756027698517,-0.342934370040894,0.115539811551571,-0.948642253875732,-0.294496864080429,0.216640740633011,-0.932971656322479,-0.287455439567566,0.298919230699539,-0.913214981555939,-0.276922255754471,-0.0156781934201717,-0.935536742210388,-0.352881342172623,0.215921074151993,-0.933881044387817,-0.285033792257309,0.118291229009628,-0.93713790178299,-0.328298300504684,0.433926731348038,-0.876741766929626,-0.207440242171288,0.303524345159531,-0.931400537490845,-0.200913041830063,0.218651413917542,-0.930384814739227,-0.294237792491913,0.171926736831665,-0.943372905254364,-0.283705443143845,0.215490341186523,-0.934421122074127,-0.283586114645004,
  1544. -0.0164616741240025,-0.936593234539032,-0.350031912326813,0.435362815856934,-0.874552667140961,-0.213580965995789,0.218937069177628,-0.930011689662933,-0.295203387737274,0.223188892006874,-0.907727301120758,-0.355271577835083,0.220476105809212,0.970138132572174,0.101105608046055,0.0185222066938877,0.999824166297913,-0.00292014633305371,-0.109588481485844,0.993877828121185,0.0140432231128216,0.220746755599976,0.970208823680878,0.0998294949531555,-0.110184513032436,0.993776559829712,0.0163567569106817,0.00914988107979298,0.996499478816986,0.0830965042114258,-0.0247912537306547,0.9951291680336,0.0954126194119453,-0.340985327959061,0.939557313919067,-0.0310012213885784,-0.117187701165676,0.992147028446198,0.0437184311449528,-0.112804099917412,0.993262410163879,0.0265528038144112,-0.226934239268303,0.97368049621582,0.0211458317935467,0.0111243594437838,0.998233199119568,0.058367270976305,-0.119482815265656,0.991433501243591,0.0527584366500378,-0.351659536361694,0.936126589775085,0.00167200074065477,-0.222591161727905,0.97488659620285,-0.00703473621979356,0.0109964003786445,0.998139381408691,0.0599735639989376,-0.227689877152443,0.973381876945496,0.0261733122169971,-0.121248565614223,0.991313636302948,0.0509517714381218,-0.353050112724304,0.935585021972656,0.00602535856887698,-0.363790512084961,0.931375741958618,-0.0139896282926202,-0.225126191973686,0.974285483360291,0.00927043706178665,-0.224822640419006,0.974372386932373,0.0072969333268702,-0.363495290279388,0.93146026134491,-0.0159111618995667,-0.118599437177181,0.992922782897949,0.00621095672249794,-0.114965543150902,0.378311455249786,0.918511509895325,0.00438016420230269,0.371958315372467,0.928239107131958,0.0391170233488083,0.352776259183884,0.934889733791351,-0.118430815637112,0.357618063688278,0.92632794380188,-0.178233325481415,0.361212074756622,0.915291607379913,0.00441288575530052,0.368987679481506,0.929423928260803,0.0464589819312096,0.384128272533417,0.922110080718994,0.00448223482817411,0.362664848566055,0.931908845901489,0.196016892790794,0.353852093219757,0.914530515670776,
  1545. 0.00440680747851729,0.369540065526962,0.929204344749451,-0.178253889083862,0.362068742513657,0.914949059486389,-0.092266321182251,0.381478577852249,0.919761419296265,0.196437895298004,0.359731286764145,0.912143409252167,0.00447865528985858,0.36299204826355,0.931781589984894,0.0988550707697868,0.34871369600296,0.932001292705536,0.0952000394463539,0.376541554927826,0.921495318412781,0.00443659350275993,0.36683002114296,0.930277407169342,-0.087266206741333,0.352754920721054,0.931637585163116,-0.116864800453186,0.717075169086456,-0.687128663063049,0.00608379766345024,0.728715240955353,-0.684789836406708,0.0402621552348137,0.742274820804596,-0.668884932994843,-0.119687676429749,0.728543341159821,-0.6744624376297,-0.182923093438149,0.716330170631409,-0.673357486724854,0.0060272510163486,0.726367831230164,-0.687279760837555,0.0498210452497005,0.711025834083557,-0.701398730278015,0.00607043970376253,0.728163301944733,-0.685376763343811,0.194159731268883,0.714509308338165,-0.672144770622253,0.00601925188675523,0.726035177707672,-0.687631189823151,-0.182936742901802,0.71590131521225,-0.67380964756012,-0.0935161039233208,0.713512599468231,-0.694373428821564,0.194450244307518,0.710818290710449,-0.675963342189789,0.00607398618012667,0.728311121463776,-0.685219705104828,0.0996890217065811,0.73203581571579,-0.673933088779449,0.0963245555758476,0.711998820304871,-0.695542514324188,0.00595531752333045,0.723376512527466,-0.690428078174591,-0.0895761474967003,0.730216562747955,-0.677318155765533,-0.116806462407112,-0.687386631965637,-0.716837406158447,0.00607784744352102,-0.685052216053009,-0.728468596935272,0.0403358191251755,-0.669139862060547,-0.742041110992432,-0.11965873837471,-0.674594044685364,-0.728426158428192,-0.182927072048187,-0.673488974571228,-0.716205477714539,0.00602420791983604,-0.687413394451141,-0.726241409778595,0.0498983040452003,-0.701656877994537,-0.710765719413757,0.00606395769864321,-0.68566232919693,-0.727894484996796,0.194180965423584,-0.672422349452972,-0.714242219924927,0.00602529849857092,-0.687365829944611,-0.726286470890045,
  1546. -0.182928904891014,-0.673549652099609,-0.71614795923233,-0.0934571698307991,-0.694119572639465,-0.713767290115356,0.194473296403885,-0.676268637180328,-0.710521578788757,0.00606672279536724,-0.685539722442627,-0.728009939193726,0.0996405482292175,-0.674252569675446,-0.731748044490814,0.0967979654669762,-0.692570984363556,-0.714825570583344,0.00602232478559017,-0.687494397163391,-0.726164698600769,-0.0888971611857414,-0.674362003803253,-0.733030140399933,-0.117217361927032,0.64640200138092,-0.753939390182495,0.00443104188889265,0.657911479473114,-0.753082275390625,0.0383837409317493,0.672543883323669,-0.739061176776886,-0.119268454611301,0.655966818332672,-0.74530702829361,-0.179985836148262,0.644362151622772,-0.743237853050232,0.00431115087121725,0.652600526809692,-0.757689893245697,0.0486650504171848,0.634881734848022,-0.771075129508972,0.00433361902832985,0.653600513935089,-0.756827294826508,0.195320010185242,0.641453385353088,-0.741881132125854,0.00429765274748206,0.652001023292542,-0.758205890655518,-0.180003330111504,0.64370596408844,-0.743802011013031,-0.0826176181435585,0.638310015201569,-0.76533317565918,0.195274814963341,0.642000377178192,-0.741419732570648,0.00445351330563426,0.658906936645508,-0.752211272716522,0.100037887692451,0.663409054279327,-0.741539597511292,0.0978921130299568,0.649179339408875,-0.754309833049774,0.00449703866615891,0.660825073719025,-0.750526487827301,-0.0762459337711334,0.668085992336273,-0.740167319774628,-0.116756372153759,-0.575230717658997,-0.809615671634674,0.00841300468891859,-0.571987926959991,-0.820218920707703,0.0445532388985157,-0.553615868091583,-0.831579506397247,-0.119737923145294,-0.558590531349182,-0.820755422115326,-0.17725071310997,-0.559406995773315,-0.809719681739807,0.00843487959355116,-0.570828020572662,-0.82102632522583,0.0534247495234013,-0.587864220142365,-0.807193577289581,0.00844159629195929,-0.570467233657837,-0.821276962757111,0.19848470389843,-0.558205187320709,-0.805612087249756,0.00842325296252966,-0.571445822715759,-0.820596575737,-0.177268892526627,-0.560128748416901,-0.809216618537903,
  1547. -0.0875006169080734,-0.581084966659546,-0.809125423431396,0.19887974858284,-0.563343942165375,-0.801929235458374,0.00843725726008415,-0.570696949958801,-0.821117401123047,0.102784395217896,-0.558420419692993,-0.823165833950043,0.0993348583579063,-0.582428812980652,-0.806789517402649,0.00835183914750814,-0.575223743915558,-0.81795346736908,-0.0837396308779716,-0.562403857707977,-0.822611451148987,0.116660870611668,0.575755476951599,0.809256374835968,-0.00840332172811031,0.572501301765442,0.819860756397247,-0.044687420129776,0.554139137268066,0.831223845481873,0.119442738592625,0.560260534286499,0.819659411907196,0.177291885018349,0.561047911643982,0.808574557304382,-0.00840343069285154,0.572496950626373,0.819863796234131,-0.053064588457346,0.586487591266632,0.808218061923981,-0.00846806261688471,0.56905871629715,0.822253286838531,-0.198375642299652,0.556800723075867,0.806610226631165,-0.00839061196893454,0.573176324367523,0.81938910484314,0.177311107516289,0.561823487281799,0.808031618595123,0.0878346562385559,0.582740306854248,0.807897806167603,-0.19875705242157,0.561739265918732,0.803084433078766,-0.0084686903283,0.569024264812469,0.822277128696442,-0.103016264736652,0.556766986846924,0.824256122112274,-0.0993396267294884,0.582396507263184,0.806812345981598,-0.00835243612527847,0.575192272663116,0.817975640296936,0.0837331414222717,0.562371492385864,0.822634220123291,-0.115958571434021,0.0734825357794762,0.990532159805298,0.00735686533153057,0.0636249780654907,0.997946739196777,0.0490735620260239,0.0421381667256355,0.997905910015106,-0.119803324341774,0.0504320487380028,0.991515874862671,-0.182442158460617,0.0574970915913582,0.981534004211426,0.0073848394677043,0.0602798201143742,0.99815422296524,0.0569390021264553,0.0801797062158585,0.995152831077576,0.00738566974177957,0.0601800940930843,0.998160302639008,0.193725436925888,0.0574460476636887,0.979372441768646,0.00737955421209335,0.0609127171337605,0.998115837574005,-0.182461604475975,0.0584489852190018,0.981474161148071,-0.0921315029263496,0.0756054148077965,0.992872416973114,
  1548. 0.194073259830475,0.0634020939469337,0.978936016559601,0.00737885432317853,0.0609960369765759,0.998110830783844,0.097281850874424,0.0475742109119892,0.99411928653717,0.0939744040369987,0.0759953483939171,0.992669999599457,0.00734709482640028,0.0647908225655556,0.997871816158295,-0.0881408527493477,0.0509312339127064,0.994805097579956,-0.109791323542595,-0.564976572990417,-0.817769765853882,0.00860786717385054,-0.561570703983307,-0.827383995056152,0.0419416204094887,-0.543400526046753,-0.838425159454346,-0.112933091819286,-0.548587083816528,-0.828431248664856,-0.177016526460648,-0.550522089004517,-0.815837383270264,0.00860375538468361,-0.561793565750122,-0.827232718467712,0.0513559840619564,-0.579940974712372,-0.813038170337677,0.00860000029206276,-0.561991930007935,-0.82709801197052,0.199882000684738,-0.550022602081299,-0.810877501964569,0.00860755331814289,-0.561589300632477,-0.82737135887146,-0.177015408873558,-0.550481379032135,-0.815865039825439,-0.0918596759438515,-0.570223271846771,-0.816337704658508,0.200270801782608,-0.55597323179245,-0.806712687015533,0.00857037398964167,-0.563584387302399,-0.826014041900635,0.0964622870087624,-0.551657140254974,-0.828474164009094,0.0936994329094887,-0.572101294994354,-0.814813196659088,0.00853311084210873,-0.565585851669312,-0.824645280838013,-0.0883108898997307,-0.552048087120056,-0.829122483730316,-0.0460012629628181,-0.994892120361328,0.0898528844118118,0.0818561464548111,-0.99285763502121,0.0867942348122597,0.114777773618698,-0.991165697574615,0.06645767390728,-0.0472142808139324,-0.995789229869843,0.0785787478089333,-0.108758762478828,-0.990636050701141,0.0825336202979088,0.0813500136137009,-0.992165267467499,0.094816692173481,0.122016429901123,-0.986366629600525,0.110422268509865,0.0818894580006599,-0.992901206016541,0.086263045668602,0.270114362239838,-0.958476901054382,0.0914344117045403,0.0813192129135132,-0.992121338844299,0.0953020229935646,-0.108804896473885,-0.990575909614563,0.0831930190324783,-0.0218190643936396,-0.994331657886505,0.104060180485249,0.270140022039413,-0.95797199010849,0.096509262919426,
  1549. 0.0819039791822433,-0.992920100688934,0.0860313251614571,0.171633586287498,-0.982088625431061,0.0777425318956375,0.165586188435555,-0.979598581790924,0.113877221941948,0.0811057761311531,-0.991810977458954,0.098656177520752,-0.0169889833778143,-0.99656730890274,0.0810243785381317,-0.177402511239052,0.319093585014343,0.930971324443817,-0.0581214837729931,0.32215479016304,0.944901168346405,-0.0193197671324015,0.304895728826523,0.952189743518829,-0.179530873894691,0.296696245670319,0.93794459104538,-0.241106033325195,0.296126365661621,0.924216985702515,-0.0577866993844509,0.317773431539536,0.946404218673706,-0.0129974726587534,0.345271825790405,0.938412725925446,-0.0580608323216438,0.321360260248184,0.945175409317017,0.134360179305077,0.32850980758667,0.934895098209381,-0.0578492917120457,0.318591952323914,0.946125090122223,-0.241182819008827,0.297061383724213,0.923896968364716,-0.149886250495911,0.323463320732117,0.934294164180756,0.134373605251312,0.333791524171829,0.933020353317261,-0.0580513849854469,0.321236461400986,0.945218026638031,0.0353973209857941,0.316018372774124,0.948092520236969,0.0312570594251156,0.338773846626282,0.940348505973816,-0.0581762194633484,0.322872012853622,0.94465297460556,-0.145407885313034,0.303558051586151,0.941652417182922,-0.148626103997231,-0.0684007629752159,0.986525118350983,-0.0256214533001184,-0.0691637694835663,0.997276246547699,0.0126463379710913,-0.0871810913085938,0.99611222743988,-0.15112629532814,-0.0989006236195564,0.983554542064667,-0.213609829545021,-0.0950064435601234,0.972288370132446,-0.0246672425419092,-0.0798131600022316,0.996504604816437,0.0142448246479034,-0.0747780203819275,0.997098565101624,-0.0229194760322571,-0.0992140993475914,0.994802117347717,0.159413546323776,-0.0856140926480293,0.9834925532341,-0.0249026324599981,-0.0771898850798607,0.99670535326004,-0.213886722922325,-0.0921896621584892,0.972498714923859,-0.129305183887482,-0.0699710473418236,0.989133059978485,0.159309759736061,-0.0758225470781326,0.984312653541565,-0.0232358518987894,-0.0957122445106506,0.995137810707092,
  1550. 0.0682365819811821,-0.100224137306213,0.992622256278992,0.059249896556139,-0.054660577327013,0.996745526790619,-0.0252485107630491,-0.0733309164643288,0.996988117694855,-0.123347148299217,-0.0942564308643341,0.987877130508423,-0.102395482361317,0.381655871868134,-0.918615221977234,0.0140002593398094,0.400436401367188,-0.916217565536499,0.048892080783844,0.422315359115601,-0.905129432678223,-0.108053632080555,0.402745336294174,-0.908911764621735,-0.172703817486763,0.386774331331253,-0.905858159065247,0.0137361632660031,0.404085487127304,-0.914618194103241,0.0618299879133701,0.383019685745239,-0.921668589115143,0.0139124421402812,0.401650816202164,-0.915687203407288,0.20432560145855,0.408222556114197,-0.889722108840942,0.0137997465208173,0.403207749128342,-0.915004432201386,-0.172638714313507,0.385820597410202,-0.906277179718018,-0.0798107013106346,0.382295787334442,-0.920586884021759,0.205089136958122,0.403284698724747,-0.891795873641968,0.013880874030292,0.402087181806564,-0.915496289730072,0.108549021184444,0.41642963886261,-0.90266478061676,0.107825666666031,0.393913120031357,-0.912801206111908,0.0140548422932625,0.399681061506271,-0.916546523571014,-0.0780219584703445,0.403792262077332,-0.91151762008667,-0.0469095632433891,-0.719254970550537,0.693160712718964,0.0797517150640488,-0.719944834709167,0.689433872699738,0.111216560006142,-0.731168866157532,0.673069834709167,-0.0482063144445419,-0.727277636528015,0.684648394584656,-0.109795905649662,-0.720736682415009,0.684458553791046,0.079203262925148,-0.714163720607758,0.695483326911926,0.118488408625126,-0.699828803539276,0.70441472530365,0.079819343984127,-0.720658302307129,0.688680231571198,0.268003791570663,-0.690439701080322,0.671912908554077,0.0791662260890007,-0.713773548603058,0.695887923240662,-0.109840951859951,-0.720285475254059,0.684926092624664,-0.016431650146842,-0.709264397621155,0.704751014709473,0.268017828464508,-0.686991274356842,0.675432801246643,0.0798481628298759,-0.720962405204773,0.688358545303345,0.17468649148941,-0.716214656829834,0.675663590431213,
  1551. 0.168750137090683,-0.691875576972961,0.70201963186264,0.0789769366383553,-0.711780548095703,0.697947800159454,-0.0114558171480894,-0.725723505020142,0.687891066074371,-0.177991941571236,0.831929922103882,0.525558233261108,-0.0566088631749153,0.842966675758362,0.534979104995728,-0.0214207731187344,0.834056615829468,0.551263034343719,-0.179189816117287,0.825333714485168,0.535458028316498,-0.243963465094566,0.815710425376892,0.524498164653778,-0.0572059899568558,0.847285926342011,0.528047382831573,-0.0151165034621954,0.856887757778168,0.515281319618225,-0.0565297976136208,0.84239250421524,0.535891056060791,0.137496218085289,0.841136574745178,0.523052632808685,-0.0571368932723999,0.846787631511688,0.528853595256805,-0.243892803788185,0.815182447433472,0.525351226329803,-0.151030346751213,0.842967212200165,0.516329526901245,0.137506127357483,0.844052195549011,0.518332123756409,-0.0565125830471516,0.842267453670502,0.536089420318604,0.0372239463031292,0.839863836765289,0.541519224643707,0.0328398644924164,0.85322231054306,0.520512461662292,-0.0566621944308281,0.843353629112244,0.534363448619843,-0.144027456641197,0.826399028301239,0.544353485107422,-0.15324330329895,0.550491154193878,0.820655941963196,-0.0223011486232281,0.55727744102478,0.830026805400848,0.0110523300245404,0.541257739067078,0.840784132480621,-0.154214575886726,0.540512800216675,0.827081620693207,-0.215169683098793,0.53630918264389,0.816133856773376,-0.0230134073644876,0.563818395137787,0.825578093528748,0.0170096922665834,0.578004658222198,0.815856158733368,-0.0223067011684179,0.557328462600708,0.829992413520813,0.161792010068893,0.560720682144165,0.812044143676758,-0.0230443421751261,0.564101994037628,0.825383484363556,-0.215211793780327,0.536678910255432,0.815879821777344,-0.130567580461502,0.564402341842651,0.81510865688324,0.161699563264847,0.565462112426758,0.808768093585968,-0.0223118625581265,0.557375907897949,0.829960405826569,0.0629827380180359,0.551568925380707,0.831748127937317,0.0559859126806259,0.581041634082794,0.811945915222168,-0.0233833994716406,0.567207336425781,0.823243141174316,
  1552. -0.124596536159515,0.544652819633484,0.829354703426361,-0.104243762791157,-0.278096050024033,-0.954879999160767,0.018493764102459,-0.260967403650284,-0.965170562267303,0.0486376248300076,-0.237716257572174,-0.970116257667542,-0.110032394528389,-0.255312830209732,-0.960577011108398,-0.170354157686234,-0.26554462313652,-0.948928594589233,0.018204215914011,-0.256881207227707,-0.96627151966095,0.0613409876823425,-0.278320103883743,-0.958527624607086,0.0184332728385925,-0.260114371776581,-0.965401828289032,0.201154679059982,-0.239364475011826,-0.949863910675049,0.0182659327983856,-0.257752060890198,-0.966038405895233,-0.170289576053619,-0.266531616449356,-0.948663473129272,-0.0796791911125183,-0.27826926112175,-0.957192480564117,0.201922416687012,-0.244532972574234,-0.948383331298828,0.0184123516082764,-0.259819358587265,-0.965481698513031,0.107186675071716,-0.240631073713303,-0.964680075645447,0.106507152318954,-0.26421719789505,-0.958564400672913,0.0185578558593988,-0.261871963739395,-0.964924216270447,-0.0779014900326729,-0.255887389183044,-0.963562667369843,-0.108970753848553,-0.567556023597717,0.816091656684875,0.00909775588661432,-0.577707529067993,0.816193282604218,0.0433098860085011,-0.594108104705811,0.803218424320221,-0.112352542579174,-0.585169553756714,0.80308997631073,-0.178412616252899,-0.572826206684113,0.800024449825287,0.00913500785827637,-0.580072999000549,0.814513266086578,0.0502635054290295,-0.567156612873077,0.822074770927429,0.00923224724829197,-0.586247682571411,0.810079276561737,0.197107255458832,-0.575995445251465,0.793333470821381,0.00912643782794476,-0.57952880859375,0.814900636672974,-0.178430944681168,-0.572108507156372,0.800533711910248,-0.0860074907541275,-0.565461874008179,0.820277750492096,0.197491377592087,-0.57101035118103,0.79683393239975,0.00923036690801382,-0.586128234863281,0.810165703296661,0.101327702403069,-0.59337192773819,0.798525154590607,0.0976154282689095,-0.569279968738556,0.816328227519989,0.00917027518153191,-0.58231246471405,0.812913477420807,-0.0812436491250992,-0.590431272983551,0.802988409996033,
  1553. -0.120420068502426,0.965885043144226,0.22927126288414,0.0114318802952766,0.970544338226318,0.240651309490204,0.0428227856755257,0.964402079582214,0.260949969291687,-0.123016498982906,0.961659908294678,0.245106443762779,-0.181318044662476,0.954590678215027,0.236390367150307,0.0113912560045719,0.971270084381104,0.237707123160362,0.0522646121680737,0.974700927734375,0.217316657304764,0.0114128738641739,0.970884203910828,0.239277362823486,0.197619706392288,0.951554179191589,0.235565558075905,0.0113859018310905,0.971364974975586,0.237319305539131,-0.181329727172852,0.954727411270142,0.235828623175621,-0.0938584059476852,0.970274686813354,0.22306427359581,0.197917252779007,0.95277214050293,0.230335012078285,0.0114123616367579,0.970893144607544,0.239241451025009,0.102358132600784,0.963142573833466,0.248755395412445,0.0990512743592262,0.97036200761795,0.220423728227615,0.0113257206976414,0.972416877746582,0.232974588871002,-0.0901377946138382,0.965167582035065,0.245615050196648,-0.12036544084549,0.228939563035965,-0.965970516204834,0.0114271799102426,0.240310609340668,-0.970628798007965,0.0428941361606121,0.260623812675476,-0.964487075805664,-0.122986041009426,0.24491985142231,-0.961711347103119,-0.181322067975998,0.236198171973228,-0.954637587070465,0.0113885561004281,0.237511798739433,-0.971317887306213,0.052344087511301,0.216945260763168,-0.974779367446899,0.0114074358716607,0.238883510231972,-0.970981240272522,0.197641998529434,0.23517732322216,-0.95164555311203,0.011390583589673,0.23765803873539,-0.971282124519348,-0.181322827935219,0.236160710453987,-0.954646587371826,-0.0938033610582352,0.223401084542274,-0.970202505588531,0.197940841317177,0.229915231466293,-0.952868521213531,0.0114064076915383,0.238810330629349,-0.970999240875244,0.102309614419937,0.248335748910904,-0.963256001472473,0.0995195582509041,0.224403023719788,-0.96940153837204,0.0113800084218383,0.236896127462387,-0.971468329429626,-0.0894767642021179,0.249576553702354,-0.964212357997894,-0.118003703653812,0.983961880207062,0.133769080042839,0.0100600402802229,0.989518940448761,0.144052177667618,
  1554. 0.0384723320603371,0.985704779624939,0.164030939340591,-0.120042450726032,0.981903612613678,0.146475538611412,-0.180298835039139,0.973885774612427,0.137982100248337,0.00996359158307314,0.990457653999329,0.137456700205803,0.0488617941737175,0.992182612419128,0.114831246435642,0.00997040700167418,0.99039226770401,0.137926653027534,0.191587463021278,0.972019672393799,0.135912492871284,0.00995306391268969,0.990557253360748,0.136738002300262,-0.180312424898148,0.973993539810181,0.137201443314552,-0.084443099796772,0.989034593105316,0.12116102874279,0.191742822527885,0.972360670566559,0.133226782083511,0.0100121265277267,0.989990592002869,0.140777841210365,0.0973065942525864,0.983655273914337,0.15150485932827,0.0940979272127151,0.987859487533569,0.123609013855457,0.00993179716169834,0.990756154060364,0.135290801525116,-0.0801323354244232,0.985835611820221,0.147332787513733,-0.114914059638977,0.367818206548691,-0.922770023345947,0.0132515309378505,0.378774046897888,-0.925394415855408,0.0474163889884949,0.398791372776031,-0.915814995765686,-0.118201747536659,0.387017905712128,-0.914464592933655,-0.180993393063545,0.376377791166306,-0.908614993095398,0.0132732568308711,0.380508035421371,-0.924682378768921,0.0564082264900208,0.359478503465652,-0.93144690990448,0.0132639305666089,0.379768222570419,-0.924986600875854,0.196106478571892,0.373851776123047,-0.90651923418045,0.013265784829855,0.379910230636597,-0.924928247928619,-0.181004345417023,0.375704526901245,-0.908891499042511,-0.0824969261884689,0.363973677158356,-0.927748560905457,0.196495190262794,0.368010580539703,-0.908822357654572,0.0132571160793304,0.379225164651871,-0.92520946264267,0.103035449981689,0.388737797737122,-0.915569007396698,0.0994339734315872,0.36140501499176,-0.927091836929321,0.0132035510614514,0.374949634075165,-0.926951169967651,-0.0788385719060898,0.385109037160873,-0.919497430324554,-0.114685520529747,0.366488575935364,-0.923327326774597,0.0132350269705057,0.377457022666931,-0.92593252658844,0.047723013907671,0.397469371557236,-0.916373610496521,-0.117794901132584,0.384634584188461,-0.915522038936615,
  1555. -0.181032285094261,0.373957395553589,-0.909606039524078,0.0132424486801028,0.378047078847885,-0.925691664218903,0.0559840686619282,0.361358553171158,-0.930744767189026,0.0132871558889747,0.38162550330162,-0.924221515655518,0.195979923009872,0.375725716352463,-0.905771553516388,0.0132335154339671,0.377333760261536,-0.925982892513275,-0.181044474244118,0.373181879520416,-0.909922063350677,-0.0829321444034576,0.361429542303085,-0.928703904151917,0.196354106068611,0.370145410299301,-0.907985389232636,0.0132843814790249,0.381404966115952,-0.924312591552734,0.103310115635395,0.390836894512177,-0.914643943309784,0.0994346216320992,0.361409902572632,-0.927089869976044,0.0132036209106445,0.374955236911774,-0.92694890499115,-0.0788377672433853,0.385113626718521,-0.919495582580566,-0.164760902523994,-0.587066352367401,-0.792595088481903,0.00925784930586815,-0.587873458862305,-0.808899939060211,-0.205868378281593,-0.577198624610901,-0.790227770805359,-0.163109093904495,-0.575640320777893,-0.801270008087158,0.0189239531755447,-0.607927858829498,-0.793766736984253,0.00924529321491718,-0.587076127529144,-0.809478938579559,-0.20578607916832,-0.578494131565094,-0.789301335811615,0.00926879234611988,-0.588568329811096,-0.808394372463226,-0.0635694041848183,-0.568304717540741,-0.820358872413635,0.00926469918340445,-0.588308393955231,-0.808583617210388,0.0270435158163309,-0.572443127632141,-0.819498360157013,0.160618782043457,-0.582255661487579,-0.796981751918793,-0.0573068931698799,-0.595085263252258,-0.801616787910461,0.00919853057712317,-0.584106683731079,-0.811624765396118,0.114075116813183,-0.573109149932861,-0.811500310897827,0.115757040679455,-0.587910175323486,-0.800601005554199,0.00926135759800673,-0.58809620141983,-0.808737993240356,0.161233201622963,-0.576431810855865,-0.801080703735352,-0.10955560952425,0.379182577133179,-0.918813467025757,0.0133812306448817,0.389173477888107,-0.921067416667938,0.0450839661061764,0.40880498290062,-0.911507487297058,-0.112175695598125,0.394218266010284,-0.912145018577576,-0.180892258882523,0.382332861423492,-0.906145572662354,
  1556. 0.0133487535640597,0.386559158563614,-0.922168135643005,0.0547599829733372,0.366769880056381,-0.928698658943176,0.01335867960006,0.387362629175186,-0.921830773353577,0.198558121919632,0.380982547998428,-0.903009951114655,0.0133446212857962,0.386226803064346,-0.922307312488556,-0.180900096893311,0.381886005401611,-0.906332314014435,-0.0886548683047295,0.370648086071014,-0.924532473087311,0.198864296078682,0.375945150852203,-0.905051529407501,0.0133565813302994,0.387195408344269,-0.921901047229767,0.0930052921175957,0.397454768419266,-0.912896335124969,0.0895515233278275,0.369997799396515,-0.924706518650055,0.0132864527404308,0.381566524505615,-0.924245893955231,-0.0847658440470696,0.392581313848495,-0.915802776813507,-0.00344833475537598,-0.958980083465576,0.283452481031418,0.117424011230469,-0.952731847763062,0.280202925205231,0.15038113296032,-0.953726589679718,0.260367333889008,-0.00462765665724874,-0.962241768836975,0.272156894207001,-0.0718884915113449,-0.958601117134094,0.27552855014801,0.116801172494888,-0.950444161891937,0.288120448589325,0.157135188579559,-0.940053045749664,0.302669793367386,0.117486193776131,-0.952958285808563,0.279405981302261,0.303915113210678,-0.911217331886292,0.278062552213669,0.116760857403278,-0.950294852256775,0.288628816604614,-0.0719331502914429,-0.958439588546753,0.276078253984451,0.0218926016241312,-0.953945100307465,0.299181342124939,0.303899437189102,-0.909632205963135,0.283221811056137,0.11751264333725,-0.953054428100586,0.279066383838654,0.208039551973343,-0.940332293510437,0.269248366355896,0.201716259121895,-0.931100964546204,0.303910493850708,0.116525739431381,-0.949421286582947,0.291583567857742,0.0273265019059181,-0.960729956626892,0.276136308908463,-0.201657563447952,0.488270372152328,0.849073767662048,-0.0809629857540131,0.498540163040161,0.863077461719513,-0.0446669049561024,0.485146552324295,0.873291313648224,-0.202317029237747,0.478465259075165,0.854481637477875,-0.263883233070374,0.471989214420319,0.841184914112091,-0.0818399637937546,0.505529463291168,0.858919203281403,
  1557. -0.0396103337407112,0.522772073745728,0.85155189037323,-0.080842100083828,0.497577160596848,0.863644301891327,0.117600344121456,0.510766625404358,0.851638317108154,-0.0817383006215096,0.504718840122223,0.85940545797348,-0.263790816068649,0.471274644136429,0.841614305973053,-0.174622356891632,0.502401471138,0.846817433834076,0.117415584623814,0.515449404716492,0.848837733268738,-0.0808173418045044,0.497379899024963,0.863760232925415,0.0168338213115931,0.496752053499222,0.867729246616364,0.0114351389929652,0.518501937389374,0.855000019073486,-0.081039234995842,0.49914738535881,0.862719297409058,-0.166910648345947,0.475824773311615,0.863557517528534,-0.154695838689804,0.104093872010708,0.98246306180954,-0.0307294707745314,0.110894151031971,0.993357121944427,0.00888179894536734,0.093258835375309,0.995602309703827,-0.155609428882599,0.0800644531846046,0.984568655490875,-0.218434542417526,0.078920915722847,0.972655057907104,-0.0301355496048927,0.106432810425758,0.993863105773926,0.0131106246262789,0.137661620974541,0.990392565727234,-0.0306850615888834,0.110560163855553,0.993395626544952,0.152610659599304,0.129646047949791,0.979745805263519,-0.0302428342401981,0.107238575816154,0.993773341178894,-0.218563869595528,0.0798529908061028,0.972549915313721,-0.13105471432209,0.109006933867931,0.985363960266113,0.152296513319016,0.135645091533661,0.978982210159302,-0.0306735802441835,0.110473766922951,0.99340558052063,0.0559667982161045,0.108612813055515,0.992507517337799,0.0503972060978413,0.132164359092712,0.989945828914642,-0.0308612715452909,0.111884504556656,0.993241906166077,-0.124327130615711,0.0859858617186546,0.988508582115173,-0.114014223217964,0.188309088349342,-0.975469350814819,0.00899273436516523,0.213429689407349,-0.976917147636414,0.0364014022052288,0.236538276076317,-0.970940053462982,-0.120494641363621,0.210510596632957,-0.970137298107147,-0.183553397655487,0.193649008870125,-0.963746964931488,0.00854110531508923,0.217530086636543,-0.976016342639923,0.0505407899618149,0.196031421422958,-0.979294300079346,0.00889411382377148,0.214325085282326,-0.976722002029419,
  1558. 0.193995252251625,0.233272537589073,-0.952863991260529,0.00863812398165464,0.216649740934372,-0.976211190223694,-0.183456793427467,0.19276650249958,-0.963942289352417,-0.0823619589209557,0.190953552722931,-0.978137671947479,0.194991186261177,0.227967694401741,-0.953944027423859,0.00886006467044353,0.214634120464325,-0.976654350757599,0.0958457887172699,0.235576838254929,-0.967117965221405,0.0959947779774666,0.21065092086792,-0.972836673259735,0.00909158308058977,0.212531447410584,-0.97711193561554,-0.0816173255443573,0.213051646947861,-0.973626017570496,-0.111964024603367,-0.144590884447098,0.983136594295502,0.0102086337283254,-0.154258474707603,0.987977802753448,0.044044628739357,-0.174973651766777,0.983587563037872,-0.115478932857513,-0.166502445936203,0.979255616664886,-0.179929450154305,-0.157156363129616,0.971044540405273,0.0102474996820092,-0.156935855746269,0.987555623054504,0.0509997494518757,-0.142436891794205,0.988489151000977,0.0103626465424895,-0.164902225136757,0.986255586147308,0.197429955005646,-0.163014993071556,0.966668248176575,0.0102175613865256,-0.1548712849617,0.98788183927536,-0.179975360631943,-0.154954805970192,0.971389770507813,-0.0901784524321556,-0.140610367059708,0.985949575901031,0.197818368673325,-0.156964376568794,0.967589855194092,0.0103622497990727,-0.164876028895378,0.986259877681732,0.10221690684557,-0.175633460283279,0.979134619235992,0.097403347492218,-0.136277064681053,0.985870778560638,0.0101366555318236,-0.149307981133461,0.988738775253296,-0.0868192166090012,-0.161659985780716,0.983020067214966,-0.117481879889965,0.967412889003754,-0.224299550056458,0.00428143749013543,0.976319909095764,-0.216289490461349,0.0425001829862595,0.979844987392426,-0.195186004042625,-0.120289251208305,0.970790386199951,-0.207597106695175,-0.182559326291084,0.959893941879272,-0.212781012058258,0.00422196416184306,0.975561022758484,-0.219688236713409,0.0520670749247074,0.969592332839966,-0.239122867584229,0.00426941597834229,0.976168036460876,-0.216974049806595,0.198047712445259,0.95689183473587,-0.212450265884399,
  1559. 0.00421344162896276,0.975451290607452,-0.220174953341484,-0.182575017213821,0.959746479988098,-0.213431686162949,-0.0874707400798798,0.968574285507202,-0.23283614218235,0.19830995798111,0.955726385116577,-0.217394173145294,0.00427373917773366,0.976223230361938,-0.216726005077362,0.0979712456464767,0.973722517490387,-0.205587223172188,0.0948113799095154,0.967704951763153,-0.233576431870461,0.00414883671328425,0.97461348772049,-0.223855748772621,-0.0838135778903961,0.973976314067841,-0.210583627223969,-0.117421373724937,-0.224656537175179,-0.967337429523468,0.00427504070103168,-0.216655150055885,-0.97623884677887,0.04257682710886,-0.195538029074669,-0.979771554470062,-0.120258770883083,-0.207779929041862,-0.970755040645599,-0.182563826441765,-0.21296751499176,-0.959851682186127,0.00421864679083228,-0.219877615571022,-0.975518465042114,0.0521444641053677,-0.239478290081024,-0.969500422477722,0.00426269881427288,-0.217357888817787,-0.976082682609558,0.198067873716354,-0.212826609611511,-0.956804156303406,0.00420965394005179,-0.220391139388084,-0.975402593612671,-0.18258011341095,-0.213643491268158,-0.959698379039764,-0.0875046476721764,-0.233043238520622,-0.968521416187286,0.19833154976368,-0.217805236577988,-0.955628335475922,0.00426629418507218,-0.217151507735252,-0.976128697395325,0.0979248061776161,-0.20600514113903,-0.973638832569122,0.0947519689798355,-0.234094440937042,-0.967585682868958,0.00413967808708549,-0.224377349019051,-0.974493563175201,-0.083897739648819,-0.211093932390213,-0.973858594894409,-0.115076199173927,0.941323459148407,-0.317281633615494,0.00258241919800639,0.950344502925873,-0.311189442873001,0.0380813404917717,0.955693304538727,-0.291890919208527,-0.116985321044922,0.944987833499908,-0.305470824241638,-0.181571811437607,0.933401882648468,-0.309503823518753,0.00245924200862646,0.948120832443237,-0.317900985479355,0.0481986589729786,0.939800024032593,-0.338309079408646,0.0024851425550878,0.948593258857727,-0.316487997770309,0.195094749331474,0.93045574426651,-0.310145348310471,0.00244525982998312,0.947865426540375,-0.318661540746689,
  1560. -0.18159231543541,0.933107852935791,-0.310377478599548,-0.0836088433861732,0.939624667167664,-0.331836193799973,0.195258155465126,0.929539442062378,-0.312778979539871,0.00253956182859838,0.949577152729034,-0.313523203134537,0.0965048149228096,0.948516845703125,-0.301666408777237,0.0932552665472031,0.939820349216461,-0.328696221113205,0.00243058055639267,0.947597742080688,-0.319457113742828,-0.0791759416460991,0.94854611158371,-0.306580603122711,-0.151646733283997,0.985505044460297,-0.0760469287633896,0.0162427648901939,0.997575283050537,-0.0676738768815994,-0.210192829370499,0.975327968597412,-0.0674858465790749,-0.149990007281303,0.986760973930359,-0.0616907961666584,0.015181546099484,0.995765447616577,-0.0906682014465332,0.0162310879677534,0.997689962387085,-0.0659644529223442,-0.210125654935837,0.975238859653473,-0.0689666196703911,0.0162478908896446,0.997523725032806,-0.0684284567832947,-0.071733646094799,0.996428191661835,-0.0445545502007008,0.016233840957284,0.997662663459778,-0.0663755908608437,0.0232854261994362,0.998617708683014,-0.04712138697505,0.16053606569767,0.984689056873322,-0.0679402202367783,-0.0650256797671318,0.994788825511932,-0.0785293132066727,0.0162027832120657,0.997954249382019,-0.0618449300527573,0.116828188300133,0.991827309131622,-0.0512815564870834,0.118936516344547,0.990315735340118,-0.0716173201799393,0.0162295531481504,0.997704148292542,-0.0657500177621841,0.161075755953789,0.985038936138153,-0.0612607523798943,-0.114626787602901,-0.0838588029146194,-0.98986291885376,0.0066582765430212,-0.0757524818181992,-0.997104406356812,0.0439633689820766,-0.0541182607412338,-0.997566282749176,-0.117859579622746,-0.0624757260084152,-0.991063117980957,-0.18266573548317,-0.0689774751663208,-0.980752527713776,0.00669808918610215,-0.0733169391751289,-0.997286200523376,0.0524259023368359,-0.0934759750962257,-0.994240283966064,0.00674146506935358,-0.0706540122628212,-0.997478127479553,0.194896221160889,-0.0684802606701851,-0.978430330753326,0.00668420968577266,-0.0741672813892365,-0.997223436832428,-0.182682052254677,-0.0698678493499756,-0.980686366558075,
  1561. -0.0862581878900528,-0.0881419703364372,-0.992366135120392,0.195304319262505,-0.0748574659228325,-0.977881669998169,0.00673827854916453,-0.0708483532071114,-0.99746435880661,0.104506224393845,-0.059642992913723,-0.99273419380188,0.101063653826714,-0.0885750576853752,-0.990929186344147,0.00664670020341873,-0.0764599516987801,-0.997050523757935,-0.0822783783078194,-0.06350177526474,-0.994584321975708,0.117947161197662,0.442805677652359,-0.888825953006744,-0.0141763584688306,0.455011457204819,-0.890372753143311,-0.0443820133805275,0.472851634025574,-0.880023598670959,0.121618360280991,0.462728202342987,-0.878118216991425,0.186088994145393,0.451786935329437,-0.872501850128174,-0.0142088495194912,0.457784503698349,-0.888949632644653,-0.0521970391273499,0.438860505819321,-0.897037863731384,-0.0142167638987303,0.458467751741409,-0.888597309589386,-0.193842381238937,0.450879275798798,-0.871282398700714,-0.0142016494646668,0.457168340682983,-0.889266788959503,0.186102747917175,0.451037406921387,-0.872886598110199,0.0896698534488678,0.442142009735107,-0.892451524734497,-0.194148898124695,0.445817887783051,-0.87381500005722,-0.0142099289223552,0.457884401082993,-0.888898193836212,-0.0983420163393021,0.467178195714951,-0.878677189350128,-0.0949066653847694,0.441548675298691,-0.892203748226166,-0.0141652850434184,0.454068124294281,-0.890854358673096,0.0857173725962639,0.464226961135864,-0.881558895111084,-0.114404402673244,-0.0773098096251488,-0.990421533584595,0.00678183604031801,-0.0681792721152306,-0.997650027275085,0.042411919683218,-0.0469291992485523,-0.997997462749481,-0.118532307446003,-0.0524252243340015,-0.99156528711319,-0.18248550593853,-0.0596299469470978,-0.981398642063141,0.00685269664973021,-0.0638251155614853,-0.997937679290771,0.0494935289025307,-0.0798102170228958,-0.995580613613129,0.00697185518220067,-0.056475106626749,-0.998379766941071,0.201130300760269,-0.0542998053133488,-0.978058338165283,0.00682030571624637,-0.0658176690340042,-0.997808337211609,-0.182526543736458,-0.0616879239678383,-0.981263816356659,
  1562. -0.0926413387060165,-0.078780323266983,-0.992578089237213,0.201460927724838,-0.05996323376894,-0.977659404277802,0.00697492947801948,-0.056284062564373,-0.998390436172485,0.097615122795105,-0.0446693673729897,-0.994221270084381,0.0934280827641487,-0.0806211829185486,-0.992356598377228,0.00676027406007051,-0.0695022270083427,-0.997558891773224,-0.0888856425881386,-0.0555127710103989,-0.994493663311005,-0.0410294234752655,-0.99555104970932,-0.0848215594887733,0.0849673822522163,-0.99260938167572,-0.0866440311074257,0.110434845089912,-0.988250434398651,-0.105665847659111,-0.0422506146132946,-0.994472563266754,-0.0961206331849098,-0.112022489309311,-0.989529013633728,-0.0910127013921738,0.0844415500760078,-0.993333160877228,-0.0784780904650688,0.117415875196457,-0.99113517999649,-0.062167301774025,0.0850163400173187,-0.992538154125214,-0.0874086990952492,0.268835633993149,-0.960152268409729,-0.0763875618577003,0.0844076573848724,-0.993377387523651,-0.0779544562101364,-0.112078227102757,-0.989592313766479,-0.090253658592701,-0.017699982970953,-0.997456908226013,-0.0690396279096603,0.268859297037125,-0.960534691810608,-0.0713285207748413,0.0850372537970543,-0.992507517337799,-0.0877355709671974,0.175893217325211,-0.980059385299683,-0.0924399942159653,0.170278996229172,-0.983702838420868,-0.0577390491962433,0.0842043459415436,-0.993635416030884,-0.0748214423656464,-0.012704879976809,-0.995624244213104,-0.0925804451107979,-0.177078753709793,0.152905598282814,0.972246468067169,-0.0591184794902802,0.153021112084389,0.986453115940094,-0.0200103558599949,0.135102406144142,0.990629553794861,-0.178205162286758,0.141455978155136,0.973772644996643,-0.242540583014488,0.143383622169495,0.959486961364746,-0.0596740990877151,0.160783633589745,0.985184073448181,-0.0137529252097011,0.177090257406235,0.984098613262177,-0.0590773746371269,0.152447938919067,0.9865443110466,0.135728970170021,0.161205098032951,0.977543115615845,-0.0597032755613327,0.161192402243614,0.985115587711334,-0.242576107382774,0.143862679600716,0.95940637588501,-0.15059432387352,0.168454140424728,0.974137961864471,
  1563. 0.135735213756561,0.16663983464241,0.976630508899689,-0.0590753890573978,0.152420178055763,0.986548602581024,0.0386160090565681,0.146687150001526,0.988428890705109,0.0323114991188049,0.182053536176682,0.982757687568665,-0.0599495843052864,0.164647400379181,0.984528958797455,-0.145920872688293,0.14658634364605,0.978375971317291,-0.151393443346024,-0.238352030515671,0.959306180477142,-0.0270298607647419,-0.241446226835251,0.970037698745728,0.0130334720015526,-0.259483873844147,0.965659499168396,-0.153880804777145,-0.267837345600128,0.95109623670578,-0.211332008242607,-0.262295216321945,0.941562533378601,-0.0260764211416245,-0.251880794763565,0.967406868934631,0.0148746240884066,-0.246269911527634,0.969087243080139,-0.024363012984395,-0.270477294921875,0.962418138980865,0.159246370196342,-0.254884779453278,0.953768491744995,-0.0263076703995466,-0.249355599284172,0.968054592609406,-0.211606025695801,-0.259572416543961,0.942255318164825,-0.124400787055492,-0.240132018923759,0.962736248970032,0.159102335572243,-0.245745599269867,0.956188023090363,-0.0246824324131012,-0.267025917768478,0.963373303413391,0.0625384524464607,-0.27177768945694,0.96032589673996,0.0538885369896889,-0.228404179215431,0.9720738530159,-0.0266631375998259,-0.245467320084572,0.969038128852844,-0.11875182390213,-0.263044804334641,0.957447350025177,-0.10265076905489,0.535070657730103,-0.838547706604004,0.0197093561291695,0.553896367549896,-0.83235228061676,0.0479784607887268,0.572900474071503,-0.818219482898712,-0.10550595074892,0.544535875320435,-0.832075238227844,-0.173334926366806,0.527577638626099,-0.831635057926178,0.0202832650393248,0.547022104263306,-0.836872398853302,0.0609635300934315,0.53700464963913,-0.841373682022095,0.0196668561547995,0.554403305053711,-0.832015752792358,0.20491224527359,0.556721866130829,-0.805029034614563,0.020214481279254,0.54784882068634,-0.836333096027374,-0.17339251935482,0.528306484222412,-0.831160187721252,-0.0747783184051514,0.527209758758545,-0.846438467502594,0.205757275223732,0.551901757717133,-0.808126509189606,
  1564. 0.0196537598967552,0.554559469223022,-0.831912100315094,0.107837222516537,0.567176103591919,-0.816506206989288,0.107028894126415,0.546266436576843,-0.830745339393616,0.0197788588702679,0.553066730499268,-0.832902133464813,-0.0722173079848289,0.555755138397217,-0.828203439712524
  1565. }
  1566. TangentsW: *2199 {
  1567. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1568. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1569. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1570. }
  1571. }
  1572. LayerElementColor: 0 {
  1573. Version: 101
  1574. Name: "colorSet0"
  1575. MappingInformationType: "ByPolygonVertex"
  1576. ReferenceInformationType: "IndexToDirect"
  1577. Colors: *8796 {
  1578. a: 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,
  1579. 0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
  1580. 0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,
  1581. 0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,
  1582. 0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.627451002597809,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.356862753629684,0,0,1,0.627451002597809,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,0.317647069692612,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.317647069692612,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.627451002597809,0,0,1,0.788235366344452,0,0,1,0.466666698455811,0,0,1,0.298039227724075,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0.788235366344452,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.788235366344452,0,0,1,0.796078503131866,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,
  1583. 0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,1,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.454901993274689,0,0,1,0.65490198135376,0,0,1,1,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.454901993274689,0,0,1,0.588235318660736,0,0,1,1,0,0,1,1,0,0,1,0.588235318660736,0,0,1,0.486274540424347,0,0,1,0.588235318660736,0,0,1,0.811764776706696,0,0,1,0.588235318660736,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,
  1584. 0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,
  1585. 0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,
  1586. 0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.313725501298904,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,
  1587. 0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.454901993274689,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,1,0,0,1,1,0,0,1,0.5686274766922,0,0,1,0.811764776706696,0,0,1,0.0156862754374743,0,0,1,0.5686274766922,0,0,1,0.5686274766922,0,0,1,1,0,0,1,0.811764776706696,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.427451014518738,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.427451014518738,0,0,1,1,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.427451014518738,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,1,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.701960802078247,0,0,1,0.980392217636108,0,0,1,1,0,0,1,0.360784322023392,0,0,1,0.980392217636108,0,0,1,0.701960802078247,0,0,1,0,0,0,1,0.701960802078247,0,0,1,1,0,0,1,0.701960802078247,0,0,1,0.466666698455811,0,0,1,0.360784322023392,0,0,1,0,0,0,1,0.466666698455811,0,0,1,0.701960802078247,0,0,1,0.274509817361832,0,0,1,0.360784322023392,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.466666698455811,0,0,1,0,0,0,1,0.274509817361832,0,0,1,0.466666698455811,0,0,1,0.454901993274689,0,0,1,0.454901993274689,0,0,1,0.00784313771873713,0,0,1,0.313725501298904,0,0,1,0.454901993274689,0,0,1,0.313725501298904,0,0,1,1,0,0,1,0.00784313771873713,0,0,1,0.0156862754374743,0,0,1,0.313725501298904,0,0,1,0.313725501298904,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.313725501298904,0,0,1,0.0156862754374743,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.647058844566345,0,0,1,1,0,0,1,0.0156862754374743,0,0,1,0.811764776706696,0,0,1,0.647058844566345,
  1588. 0,0,1,0.647058844566345,0,0,1,0.811764776706696,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
  1589. 0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,
  1590. 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1
  1591. }
  1592. ColorIndex: *2199 {
  1593. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,
  1594. 534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,
  1595. 1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,
  1596. 1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,
  1597. 1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198
  1598. }
  1599. }
  1600. LayerElementUV: 0 {
  1601. Version: 101
  1602. Name: "UVmap_0"
  1603. MappingInformationType: "ByPolygonVertex"
  1604. ReferenceInformationType: "IndexToDirect"
  1605. UV: *3878 {
  1606. a: 0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.362060546875,1.55029296875,0.62646484375,1.556640625,0.56201171875,1.61083984375,0.703125,1.822265625,0.439453125,1.587890625,0.323486328125,1.6220703125,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.63330078125,2.0791015625,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.38232421875,2.25,0.31298828125,2.3203125,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.2496337890625,2.15625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.450439453125,3.40625,0.71826171875,3.302734375,0.25390625,3.091796875,0.27197265625,2.7548828125,0.6533203125,3.1953125,0.8359375,2.990234375,0.52099609375,3.05859375,0.76806640625,2.974609375,0.71630859375,2.744140625,0.3603515625,2.7890625,0.61376953125,2.78125,0.343505859375,2.5009765625,0.2861328125,2.4365234375,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.349609375,2.19140625,0.51123046875,2.330078125,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.22119140625,0.658203125,0.07513427734375,0.50732421875,0.1429443359375,0.4970703125,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,
  1607. 0.158203125,0.46484375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.1416015625,0.01220703125,0.0168914794921875,0.2177734375,0.07000732421875,0.7755126953125,0.155029296875,0.17236328125,0.067626953125,0.1376953125,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.0112228393554688,0.8890380859375,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.43359375,0.3388671875,1.0009765625,0.39404296875,0.638671875,0.0107421875,0.96630859375,0.00244140625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,
  1608. 1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,
  1609. 0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,
  1610. 2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.48779296875,1.4208984375,0.456787109375,1.2685546875,0.48779296875,1.4208984375,0.362060546875,1.55029296875,0.3388671875,1.479248046875,0.5556640625,1.3642578125,0.62646484375,1.556640625,0.48779296875,1.4208984375,0.56201171875,1.61083984375,0.48779296875,1.4208984375,0.62646484375,1.556640625,0.62646484375,1.556640625,0.703125,1.822265625,0.56201171875,1.61083984375,0.362060546875,1.55029296875,0.48779296875,1.4208984375,0.439453125,1.587890625,0.56201171875,1.61083984375,0.439453125,1.587890625,0.48779296875,1.4208984375,0.439453125,1.587890625,0.323486328125,1.6220703125,0.362060546875,1.55029296875,0.2261962890625,1.57421875,0.362060546875,1.55029296875,0.323486328125,1.6220703125,0.323486328125,1.6220703125,0.335205078125,1.75732421875,0.2261962890625,1.57421875,0.335205078125,1.75732421875,0.323486328125,1.6220703125,0.40283203125,1.7978515625,0.323486328125,1.6220703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.40283203125,1.7978515625,0.354248046875,1.99658203125,0.335205078125,1.75732421875,0.56201171875,1.61083984375,0.51123046875,1.845703125,0.439453125,1.587890625,0.40283203125,1.7978515625,0.439453125,1.587890625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.51123046875,1.845703125,
  1611. 0.56201171875,1.61083984375,0.60888671875,1.83447265625,0.56201171875,1.61083984375,0.703125,1.822265625,0.51123046875,1.845703125,0.52197265625,2.140625,0.40283203125,1.7978515625,0.51123046875,1.845703125,0.60888671875,1.83447265625,0.52197265625,2.140625,0.703125,1.822265625,0.63330078125,2.0791015625,0.60888671875,1.83447265625,0.52197265625,2.140625,0.60888671875,1.83447265625,0.63330078125,2.0791015625,0.63330078125,2.0791015625,0.703125,1.822265625,0.72412109375,2.0986328125,0.72412109375,2.0986328125,0.5634765625,2.2421875,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.52197265625,2.140625,0.63330078125,2.0791015625,0.5634765625,2.2421875,0.72412109375,2.0986328125,0.63916015625,2.3095703125,0.63916015625,2.3095703125,0.45361328125,2.3583984375,0.5634765625,2.2421875,0.456787109375,2.2734375,0.52197265625,2.140625,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.456787109375,2.2734375,0.5634765625,2.2421875,0.45361328125,2.3583984375,0.38232421875,2.25,0.456787109375,2.2734375,0.38232421875,2.25,0.52197265625,2.140625,0.456787109375,2.2734375,0.38232421875,2.25,0.45361328125,2.3583984375,0.31298828125,2.3203125,0.40283203125,1.7978515625,0.52197265625,2.140625,0.384033203125,2.0517578125,0.38232421875,2.25,0.384033203125,2.0517578125,0.52197265625,2.140625,0.354248046875,1.99658203125,0.40283203125,1.7978515625,0.384033203125,2.0517578125,0.31298828125,2.3203125,0.32421875,2.1806640625,0.38232421875,2.25,0.384033203125,2.0517578125,0.38232421875,2.25,0.32421875,2.1806640625,0.384033203125,2.0517578125,0.32421875,2.1806640625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.31298828125,2.3203125,0.2496337890625,2.15625,0.2496337890625,2.15625,0.354248046875,1.99658203125,0.32421875,2.1806640625,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,
  1612. 3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,
  1613. 0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.29931640625,3.306640625,0.44091796875,3.484375,0.197998046875,3.466796875,0.1336669921875,3.125,0.29931640625,3.306640625,0.197998046875,3.466796875,0.44091796875,3.484375,0.29931640625,3.306640625,0.450439453125,3.40625,0.71826171875,3.302734375,0.44091796875,3.484375,0.450439453125,3.40625,0.29931640625,3.306640625,0.1336669921875,3.125,0.25390625,3.091796875,0.27197265625,2.7548828125,0.25390625,3.091796875,0.1336669921875,3.125,0.450439453125,3.40625,0.6533203125,3.1953125,0.71826171875,3.302734375,0.8359375,2.990234375,0.71826171875,3.302734375,0.6533203125,3.1953125,0.450439453125,3.40625,0.29931640625,3.306640625,0.52099609375,3.05859375,0.6533203125,3.1953125,0.450439453125,3.40625,0.52099609375,3.05859375,0.29931640625,3.306640625,0.25390625,3.091796875,0.52099609375,3.05859375,0.8359375,2.990234375,0.6533203125,3.1953125,0.76806640625,2.974609375,0.76806640625,2.974609375,0.6533203125,3.1953125,0.52099609375,3.05859375,0.71630859375,2.744140625,0.8359375,2.990234375,0.76806640625,2.974609375,0.52099609375,3.05859375,0.25390625,3.091796875,0.3603515625,2.7890625,0.25390625,3.091796875,0.27197265625,2.7548828125,0.3603515625,2.7890625,0.61376953125,2.78125,0.76806640625,2.974609375,0.52099609375,3.05859375,0.71630859375,2.744140625,0.76806640625,2.974609375,0.61376953125,2.78125,0.343505859375,2.5009765625,0.3603515625,2.7890625,0.27197265625,2.7548828125,0.27197265625,2.7548828125,0.2861328125,2.4365234375,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.52099609375,3.05859375,0.3603515625,2.7890625,0.3603515625,2.7890625,0.343505859375,2.5009765625,0.51123046875,2.6357421875,0.51123046875,2.6357421875,0.61376953125,2.78125,0.52099609375,3.05859375,0.2861328125,2.4365234375,0.3857421875,2.4033203125,0.343505859375,2.5009765625,0.343505859375,2.5009765625,
  1614. 0.3857421875,2.4033203125,0.51123046875,2.6357421875,0.349609375,2.19140625,0.3857421875,2.4033203125,0.2861328125,2.4365234375,0.51123046875,2.330078125,0.3857421875,2.4033203125,0.349609375,2.19140625,0.60302734375,2.5498046875,0.71630859375,2.744140625,0.61376953125,2.78125,0.60302734375,2.5498046875,0.61376953125,2.78125,0.51123046875,2.6357421875,0.71630859375,2.744140625,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.3857421875,2.4033203125,0.51953125,2.44140625,0.51123046875,2.6357421875,0.51953125,2.44140625,0.60302734375,2.5498046875,0.51123046875,2.6357421875,0.3857421875,2.4033203125,0.51123046875,2.330078125,0.51953125,2.44140625,0.51953125,2.44140625,0.759765625,2.4716796875,0.60302734375,2.5498046875,0.759765625,2.4716796875,0.51953125,2.44140625,0.51123046875,2.330078125,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,
  1615. 0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.308349609375,0.41259765625,0.1204833984375,0.4755859375,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.308349609375,0.41259765625,0.09381103515625,0.29736328125,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.1572265625,0.169921875,0.09381103515625,0.29736328125,0.08441162109375,0.224609375,0.159912109375,0.19921875,0.10272216796875,0.158203125,0.159912109375,0.19921875,0.08441162109375,0.224609375,0.10272216796875,0.158203125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.09381103515625,0.29736328125,0.053436279296875,0.36767578125,0.08441162109375,0.224609375,0.060699462890625,0.1474609375,0.08441162109375,0.224609375,0.0181427001953125,0.2177734375,0.08441162109375,0.224609375,0.053436279296875,0.36767578125,0.0181427001953125,0.2177734375,0.0181427001953125,0.2177734375,0.053436279296875,0.36767578125,0.015899658203125,0.36962890625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,
  1616. 0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1357421875,0.624755859375,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.13330078125,0.69091796875,0.2130126953125,0.7431640625,0.210693359375,0.888916015625,0.13330078125,0.69091796875,0.210693359375,0.888916015625,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.13330078125,0.69091796875,0.0787353515625,0.787109375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0787353515625,0.787109375,0.036407470703125,0.731689453125,0.0787353515625,0.787109375,0.0099639892578125,0.8890380859375,0.0787353515625,0.787109375,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,
  1617. 0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,
  1618. 0.224609375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,
  1619. 0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,
  1620. 0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,
  1621. 0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.1357421875,0.624755859375,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.22119140625,0.658203125,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.22119140625,0.658203125,0.210693359375,0.888916015625,0.1357421875,0.624755859375,0.1429443359375,0.4970703125,0.1357421875,0.624755859375,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.07513427734375,0.50732421875,0.1357421875,0.624755859375,0.210693359375,0.888916015625,0.06622314453125,0.986373901367188,0.07000732421875,0.7755126953125,0.0099639892578125,0.8890380859375,0.07513427734375,0.50732421875,0.07000732421875,0.7755126953125,0.07000732421875,0.7755126953125,0.06622314453125,0.986373901367188,0.0099639892578125,0.8890380859375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.1585693359375,0.19921875,0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.1585693359375,0.19921875,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.1416015625,0.01220703125,0.1585693359375,0.19921875,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.1416015625,0.01220703125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.12298583984375,0.3310546875,0.30712890625,0.41259765625,0.158203125,0.46484375,0.155029296875,0.17236328125,
  1622. 0.30712890625,0.41259765625,0.12298583984375,0.3310546875,0.0130844116210938,0.4755859375,0.12298583984375,0.3310546875,0.158203125,0.46484375,0.12298583984375,0.3310546875,0.08319091796875,0.224609375,0.155029296875,0.17236328125,0.0130844116210938,0.4755859375,0.08319091796875,0.224609375,0.12298583984375,0.3310546875,0.067626953125,0.1376953125,0.155029296875,0.17236328125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.08319091796875,0.224609375,0.0130844116210938,0.4755859375,0.067626953125,0.1376953125,0.08319091796875,0.224609375,0.0168914794921875,0.2177734375,0.2225341796875,0.658203125,0.144287109375,0.4970703125,0.136962890625,0.624755859375,0.2225341796875,0.658203125,0.136962890625,0.624755859375,0.2119140625,0.888916015625,0.144287109375,0.4970703125,0.076416015625,0.50732421875,0.136962890625,0.624755859375,0.136962890625,0.624755859375,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.136962890625,0.624755859375,0.076416015625,0.50732421875,0.09625244140625,0.8033447265625,0.2119140625,0.888916015625,0.09625244140625,0.8033447265625,0.0675048828125,0.986373901367188,0.076416015625,0.50732421875,0.0112228393554688,0.8890380859375,0.09625244140625,0.8033447265625,0.09625244140625,0.8033447265625,0.0112228393554688,0.8890380859375,0.0675048828125,0.986373901367188,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,
  1623. 0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,
  1624. 0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,
  1625. 0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,
  1626. 0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,
  1627. 0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,
  1628. 0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,
  1629. 0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,
  1630. 0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,
  1631. 1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875,0.55029296875,0.513671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.55029296875,0.513671875,0.43359375,0.3388671875,0.7451171875,0.3017578125,0.7705078125,0.566162109375,0.7451171875,0.3017578125,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.43359375,0.3388671875,0.638671875,0.0107421875,1.0009765625,0.39404296875,0.7451171875,0.3017578125,0.96630859375,0.00244140625,0.96630859375,0.00244140625,0.7451171875,0.3017578125,0.638671875,0.0107421875
  1632. }
  1633. UVIndex: *2199 {
  1634. a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,28,29,30,31,28,30,29,28,32,33,29,32,28,31,34,35,34,31,32,36,33,37,33,36,32,28,38,36,32,38,28,34,38,37,36,39,39,36,38,40,37,39,38,34,41,34,35,41,42,39,38,40,39,42,43,41,35,35,44,43,45,38,41,41,43,45,45,42,38,44,46,43,43,46,45,47,46,44,48,46,47,49,40,42,49,42,45,40,49,
  1635. 50,46,51,45,51,49,45,46,48,51,51,50,49,50,51,48,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,52,53,54,55,52,54,55,56,57,54,58,55,56,55,58,56,58,59,54,60,58,59,58,61,58,60,61,61,60,62,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,63,64,65,66,63,65,67,63,66,66,65,68,67,66,69,69,66,68,70,71,760,70,761,72,73,70,72,762,763,72,73,72,764,72,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,74,75,76,77,75,74,78,74,76,74,79,77,78,79,74,80,77,79,81,79,78,80,79,81,839,840,841,842,843,844,845,846,847,848,849,82,850,82,851,852,853,82,854,855,82,82,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,
  1636. 895,896,897,898,899,900,901,902,903,904,905,906,907,908,83,909,910,911,912,913,914,915,83,916,917,918,84,83,919,920,921,922,84,923,924,85,86,87,85,87,88,86,89,87,87,90,88,87,89,90,88,90,91,89,92,90,90,92,91,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,93,94,95,93,96,94,95,94,97,94,96,98,97,94,99,99,94,98,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,
  1637. 1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,
  1638. 1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938
  1639. }
  1640. }
  1641. LayerElementUV: 1 {
  1642. Version: 101
  1643. Name: "LightMapUV"
  1644. MappingInformationType: "ByPolygonVertex"
  1645. ReferenceInformationType: "IndexToDirect"
  1646. UV: *1404 {
  1647. a: 0.5546875,0.82421875,0.5595703125,0.847412109375,0.53662109375,0.8563232421875,0.56982421875,0.8388671875,0.5400390625,0.8671875,0.58056640625,0.8681640625,0.57080078125,0.8763427734375,0.59228515625,0.9085693359375,0.5517578125,0.8729248046875,0.5341796875,0.8780517578125,0.51953125,0.870849609375,0.5361328125,0.898681640625,0.54638671875,0.90484619140625,0.5390625,0.93511962890625,0.56298828125,0.912109375,0.57763671875,0.910400390625,0.564453125,0.95703125,0.58154296875,0.947662353515625,0.59521484375,0.950653076171875,0.57080078125,0.972503662109375,0.58251953125,0.982772827148438,0.55419921875,0.990196228027344,0.5546875,0.977264404296875,0.54345703125,0.97369384765625,0.53271484375,0.984397888183594,0.54345703125,0.943511962890625,0.5341796875,0.963134765625,0.52294921875,0.95941162109375,0.65283203125,0.82421875,0.6572265625,0.847412109375,0.634765625,0.8563232421875,0.66796875,0.8388671875,0.63818359375,0.8671875,0.6787109375,0.8681640625,0.6689453125,0.8763427734375,0.6904296875,0.9085693359375,0.64990234375,0.8729248046875,0.63232421875,0.8780517578125,0.6171875,0.870849609375,0.63427734375,0.898681640625,0.64453125,0.90484619140625,0.63720703125,0.93511962890625,0.6611328125,0.912109375,0.67578125,0.910400390625,0.66259765625,0.95703125,0.6796875,0.947662353515625,0.693359375,0.950653076171875,0.6689453125,0.972503662109375,0.6806640625,0.982772827148438,0.65234375,0.990196228027344,0.65283203125,0.977264404296875,0.64111328125,0.97369384765625,0.630859375,0.984397888183594,0.6416015625,0.943511962890625,0.63232421875,0.963134765625,0.62109375,0.95941162109375,0.75048828125,0.82421875,0.75537109375,0.847412109375,0.732421875,0.8563232421875,0.765625,0.8388671875,0.736328125,0.8671875,0.7763671875,0.8681640625,0.7666015625,0.8763427734375,0.7880859375,0.9085693359375,0.748046875,0.8729248046875,0.73046875,0.8780517578125,0.71533203125,0.870849609375,0.73193359375,0.898681640625,0.7421875,0.90484619140625,0.73486328125,0.93511962890625,0.7587890625,0.912109375,0.77392578125,0.910400390625,
  1648. 0.7607421875,0.95703125,0.77783203125,0.947662353515625,0.79150390625,0.950653076171875,0.76708984375,0.972503662109375,0.7783203125,0.982772827148438,0.75,0.990196228027344,0.75048828125,0.977264404296875,0.7392578125,0.97369384765625,0.728515625,0.984397888183594,0.73974609375,0.943511962890625,0.73046875,0.963134765625,0.71923828125,0.95941162109375,0.456787109375,0.82421875,0.46142578125,0.847412109375,0.438720703125,0.8563232421875,0.4716796875,0.8388671875,0.442138671875,0.8671875,0.482666015625,0.8681640625,0.47265625,0.8763427734375,0.494384765625,0.9085693359375,0.4541015625,0.8729248046875,0.436279296875,0.8780517578125,0.42138671875,0.870849609375,0.43798828125,0.898681640625,0.448486328125,0.90484619140625,0.44091796875,0.93511962890625,0.465087890625,0.912109375,0.47998046875,0.910400390625,0.466552734375,0.95703125,0.483642578125,0.947662353515625,0.49755859375,0.950653076171875,0.472900390625,0.972503662109375,0.484619140625,0.982772827148438,0.456298828125,0.990196228027344,0.456787109375,0.977264404296875,0.4453125,0.97369384765625,0.434814453125,0.984397888183594,0.445556640625,0.943511962890625,0.4365234375,0.963134765625,0.425048828125,0.95941162109375,0.17333984375,0.961822509765625,0.19580078125,0.990196228027344,0.1572265625,0.987388610839844,0.14697265625,0.93280029296875,0.197265625,0.97772216796875,0.2398681640625,0.961181640625,0.1661376953125,0.927490234375,0.1689453125,0.8736572265625,0.2294921875,0.94403076171875,0.258544921875,0.9112548828125,0.20849609375,0.92218017578125,0.247802734375,0.90875244140625,0.239501953125,0.8719482421875,0.1829833984375,0.879150390625,0.2232666015625,0.87786865234375,0.1802978515625,0.8331298828125,0.1712646484375,0.8228759765625,0.2069091796875,0.8546142578125,0.18701171875,0.8175048828125,0.1812744140625,0.78369140625,0.2069091796875,0.8057861328125,0.2215576171875,0.8409423828125,0.2464599609375,0.8284912109375,0.208251953125,0.8236083984375,0.036102294921875,0.961822509765625,0.05859375,0.990196228027344,0.02001953125,0.987388610839844,0.00980377197265625,
  1649. 0.93280029296875,0.06011962890625,0.97772216796875,0.10260009765625,0.961181640625,0.028900146484375,0.927490234375,0.031768798828125,0.8736572265625,0.09228515625,0.94403076171875,0.121337890625,0.9112548828125,0.0712890625,0.92218017578125,0.11053466796875,0.90875244140625,0.102294921875,0.8719482421875,0.045806884765625,0.879150390625,0.0860595703125,0.87786865234375,0.043121337890625,0.8331298828125,0.03399658203125,0.8228759765625,0.06976318359375,0.8546142578125,0.049835205078125,0.8175048828125,0.044097900390625,0.78369140625,0.06976318359375,0.8057861328125,0.0843505859375,0.8409423828125,0.1092529296875,0.8284912109375,0.071044921875,0.8236083984375,0.310546875,0.961822509765625,0.3330078125,0.990196228027344,0.29443359375,0.987388610839844,0.2841796875,0.93280029296875,0.33447265625,0.97772216796875,0.376953125,0.961181640625,0.30322265625,0.927490234375,0.30615234375,0.8736572265625,0.36669921875,0.94403076171875,0.395751953125,0.9112548828125,0.345703125,0.92218017578125,0.385009765625,0.90875244140625,0.376708984375,0.8719482421875,0.3203125,0.879150390625,0.3603515625,0.87786865234375,0.317626953125,0.8331298828125,0.308349609375,0.8228759765625,0.34423828125,0.8546142578125,0.32421875,0.8175048828125,0.318603515625,0.78369140625,0.34423828125,0.8057861328125,0.358642578125,0.8409423828125,0.383544921875,0.8284912109375,0.345458984375,0.8236083984375,0.55078125,0.171875,0.50537109375,0.1865234375,0.4990234375,0.14453125,0.5146484375,0.12158203125,0.5009765625,0.11181640625,0.51416015625,0.11474609375,0.496826171875,0.12744140625,0.490966796875,0.109375,0.4892578125,0.1611328125,0.480712890625,0.1259765625,0.480224609375,0.16162109375,0.74658203125,0.171875,0.70166015625,0.1865234375,0.69482421875,0.14453125,0.7109375,0.12158203125,0.697265625,0.11181640625,0.71044921875,0.11474609375,0.69287109375,0.12744140625,0.68701171875,0.109375,0.68505859375,0.1611328125,0.6767578125,0.1259765625,0.67626953125,0.16162109375,0.8251953125,0.13232421875,0.77978515625,0.1474609375,0.7734375,0.10546875,0.78955078125,
  1650. 0.08251953125,0.775390625,0.07275390625,0.78857421875,0.07568359375,0.77099609375,0.08837890625,0.765625,0.0703125,0.763671875,0.1220703125,0.75537109375,0.0869140625,0.7548828125,0.12255859375,0.3037109375,0.13232421875,0.34912109375,0.1474609375,0.35546875,0.10546875,0.339599609375,0.08251953125,0.353271484375,0.07275390625,0.34033203125,0.07568359375,0.357666015625,0.08837890625,0.363525390625,0.0703125,0.365234375,0.1220703125,0.373779296875,0.0869140625,0.374267578125,0.12255859375,0.8662109375,0.06689453125,0.88427734375,0.03955078125,0.8662109375,0.02880859375,0.8173828125,0.052734375,0.82373046875,0.06884765625,0.7958984375,0.04150390625,0.7939453125,0.05419921875,0.98583984375,0.2890625,0.97607421875,0.30419921875,0.94921875,0.3037109375,0.9677734375,0.27880859375,0.97802734375,0.2705078125,0.93115234375,0.2763671875,0.94921875,0.265625,0.282470703125,0.03076171875,0.2646484375,0.05810546875,0.282470703125,0.06884765625,0.331298828125,0.044921875,0.324951171875,0.02880859375,0.352783203125,0.056640625,0.354736328125,0.0439453125,0.3583984375,0.19091796875,0.3486328125,0.2060546875,0.32177734375,0.20556640625,0.340576171875,0.1806640625,0.350830078125,0.1728515625,0.3037109375,0.17822265625,0.32177734375,0.16748046875,0.65478515625,0.08642578125,0.63720703125,0.05908203125,0.65478515625,0.04833984375,0.70361328125,0.072265625,0.697265625,0.08837890625,0.72509765625,0.06103515625,0.72705078125,0.07373046875,0.69970703125,0.6025390625,0.71484375,0.612060546875,0.71435546875,0.638916015625,0.689453125,0.6201171875,0.68115234375,0.60986328125,0.68701171875,0.656982421875,0.67626953125,0.638916015625,0.03753662109375,0.484375,0.08404541015625,0.504150390625,0.046417236328125,0.51708984375,0.0465087890625,0.4521484375,0.00980377197265625,0.519775390625,0.027496337890625,0.4580078125,0.042236328125,0.40625,0.0107650756835938,0.45654296875,0.9716796875,0.9212646484375,0.95556640625,0.92742919921875,0.95654296875,0.95098876953125,0.9697265625,0.878662109375,0.94384765625,0.9490966796875,0.94287109375,0.89959716796875,
  1651. 0.94189453125,0.8607177734375,0.93115234375,0.878662109375,0.9716796875,0.39208984375,0.95556640625,0.3984375,0.95654296875,0.421875,0.9697265625,0.349609375,0.94384765625,0.419921875,0.94287109375,0.37060546875,0.94189453125,0.33154296875,0.93115234375,0.349609375,0.8095703125,0.4365234375,0.82861328125,0.48046875,0.8408203125,0.44482421875,0.77880859375,0.44482421875,0.84375,0.40966796875,0.78466796875,0.4267578125,0.73486328125,0.44091796875,0.783203125,0.41064453125,0.546875,0.3662109375,0.59326171875,0.38671875,0.5556640625,0.3994140625,0.55517578125,0.3271484375,0.51953125,0.40234375,0.537109375,0.33984375,0.533203125,0.318359375,0.5205078125,0.33837890625,0.0450439453125,0.7021484375,0.031982421875,0.676025390625,0.0307769775390625,0.696533203125,0.04327392578125,0.7392578125,0.0206756591796875,0.677734375,0.02398681640625,0.7255859375,0.019195556640625,0.7550048828125,0.00980377197265625,0.7392578125,0.98583984375,0.545166015625,0.97314453125,0.51904296875,0.9716796875,0.539794921875,0.984375,0.58251953125,0.96142578125,0.520751953125,0.96484375,0.568603515625,0.9599609375,0.59814453125,0.95068359375,0.58251953125,0.58544921875,0.4609375,0.5390625,0.44091796875,0.57666015625,0.42822265625,0.57666015625,0.49365234375,0.61328125,0.42578125,0.595703125,0.4873046875,0.58056640625,0.539306640625,0.6123046875,0.48876953125,0.9716796875,0.078125,0.95556640625,0.08447265625,0.95654296875,0.10791015625,0.9697265625,0.03564453125,0.94384765625,0.10595703125,0.94287109375,0.056640625,0.94189453125,0.017578125,0.93115234375,0.03564453125,0.442626953125,0.06689453125,0.426025390625,0.06103515625,0.427490234375,0.037109375,0.4404296875,0.10986328125,0.414306640625,0.0390625,0.413330078125,0.0888671875,0.41259765625,0.1279296875,0.40185546875,0.10986328125,0.89892578125,0.44677734375,0.94287109375,0.4658203125,0.9072265625,0.47802734375,0.9072265625,0.416015625,0.8720703125,0.48046875,0.88916015625,0.421875,0.9033203125,0.3720703125,0.873046875,0.42041015625,0.037445068359375,0.3466796875,0.083740234375,0.3671875,0.046295166015625,
  1652. 0.3798828125,0.045501708984375,0.3076171875,0.00980377197265625,0.3828125,0.027435302734375,0.3203125,0.0235137939453125,0.298828125,0.0107574462890625,0.31884765625,0.96630859375,0.7803955078125,0.953125,0.75439453125,0.9521484375,0.7750244140625,0.96484375,0.817626953125,0.94189453125,0.7559814453125,0.9453125,0.8038330078125,0.9404296875,0.8333740234375,0.93115234375,0.817626953125,0.488525390625,0.50390625,0.53466796875,0.52392578125,0.497314453125,0.53662109375,0.497314453125,0.4716796875,0.460693359375,0.539306640625,0.478271484375,0.47802734375,0.4931640625,0.42578125,0.461669921875,0.47607421875,0.2269287109375,0.04736328125,0.21044921875,0.04150390625,0.2117919921875,0.017578125,0.224853515625,0.09033203125,0.19873046875,0.01953125,0.19775390625,0.0693359375,0.197021484375,0.10791015625,0.1861572265625,0.09033203125,0.1484375,0.04736328125,0.1319580078125,0.04150390625,0.1334228515625,0.017578125,0.146484375,0.09033203125,0.120361328125,0.01953125,0.119384765625,0.0693359375,0.11865234375,0.10791015625,0.1077880859375,0.09033203125,0.1324462890625,0.4453125,0.08819580078125,0.42626953125,0.1240234375,0.4140625,0.12396240234375,0.47607421875,0.158935546875,0.4111328125,0.14208984375,0.47021484375,0.1280517578125,0.519775390625,0.1580810546875,0.4716796875,0.437744140625,0.37548828125,0.41748046875,0.421875,0.404541015625,0.38427734375,0.47705078125,0.38330078125,0.40185546875,0.34765625,0.464111328125,0.365234375,0.485595703125,0.361328125,0.4658203125,0.3486328125,0.2802734375,0.58447265625,0.26708984375,0.558349609375,0.265869140625,0.5791015625,0.278564453125,0.62158203125,0.255859375,0.56005859375,0.25927734375,0.60791015625,0.25439453125,0.637451171875,0.2449951171875,0.62158203125,0.63427734375,0.36865234375,0.662109375,0.39892578125,0.66552734375,0.361328125,0.6171875,0.3935546875,0.69873046875,0.3857421875,0.64697265625,0.4404296875,0.69384765625,0.44140625,0.46044921875,0.648193359375,0.492919921875,0.61328125,0.4970703125,0.656982421875,0.441162109375,0.619384765625,0.53515625,0.62841796875,0.47509765625,
  1653. 0.565185546875,0.529296875,0.563720703125,0.0291900634765625,0.628662109375,0.061553955078125,0.59375,0.0657958984375,0.637451171875,0.00980377197265625,0.599853515625,0.10406494140625,0.60888671875,0.04388427734375,0.54541015625,0.09832763671875,0.544189453125,0.8662109375,0.14111328125,0.88916015625,0.1162109375,0.892578125,0.1474609375,0.8525390625,0.12060546875,0.91943359375,0.126953125,0.876953125,0.08203125,0.91552734375,0.08154296875,0.63818359375,0.7847900390625,0.67333984375,0.7470703125,0.677734375,0.794189453125,0.6171875,0.7535400390625,0.71923828125,0.763427734375,0.654296875,0.695068359375,0.712890625,0.693603515625,0.87451171875,0.8436279296875,0.83984375,0.8057861328125,0.83544921875,0.85302734375,0.8955078125,0.8123779296875,0.7939453125,0.822265625,0.85888671875,0.7537841796875,0.80029296875,0.7523193359375,0.89306640625,0.64404296875,0.92822265625,0.681884765625,0.9326171875,0.634765625,0.8720703125,0.67529296875,0.97412109375,0.66552734375,0.9091796875,0.73388671875,0.9677734375,0.7353515625,0.244873046875,0.455078125,0.277099609375,0.48974609375,0.28125,0.4462890625,0.2254638671875,0.48388671875,0.319580078125,0.474609375,0.259521484375,0.5380859375,0.31396484375,0.539306640625,0.12408447265625,0.19873046875,0.151123046875,0.16943359375,0.1546630859375,0.2060546875,0.1077880859375,0.1748046875,0.186767578125,0.18212890625,0.1363525390625,0.12939453125,0.1820068359375,0.1279296875,0.75146484375,0.37548828125,0.7783203125,0.34619140625,0.78173828125,0.3828125,0.73486328125,0.35107421875,0.81396484375,0.35888671875,0.763671875,0.3056640625,0.80908203125,0.3046875,0.908203125,0.23828125,0.93505859375,0.20849609375,0.93896484375,0.2451171875,0.89208984375,0.2138671875,0.970703125,0.2216796875,0.92041015625,0.16845703125,0.96630859375,0.1669921875,0.2025146484375,0.296875,0.2296142578125,0.267578125,0.233154296875,0.30419921875,0.1861572265625,0.2724609375,0.26513671875,0.2802734375,0.2147216796875,0.22705078125,0.26025390625,0.22607421875,0.2220458984375,0.19873046875,0.249267578125,0.16943359375,0.252685546875,
  1654. 0.2060546875,0.205810546875,0.1748046875,0.28466796875,0.18212890625,0.234375,0.12939453125,0.280029296875,0.1279296875,0.10443115234375,0.31640625,0.131591796875,0.287109375,0.1351318359375,0.32373046875,0.08819580078125,0.29248046875,0.167236328125,0.2998046875,0.11676025390625,0.24658203125,0.162353515625,0.24560546875,0.0260467529296875,0.21826171875,0.05316162109375,0.18896484375,0.05670166015625,0.2255859375,0.00980377197265625,0.1943359375,0.08880615234375,0.20166015625,0.038360595703125,0.14892578125,0.083984375,0.1474609375,0.49658203125,0.27734375,0.5234375,0.248046875,0.52685546875,0.28466796875,0.480224609375,0.2529296875,0.55908203125,0.2607421875,0.5087890625,0.20751953125,0.55419921875,0.20654296875,0.30078125,0.41455078125,0.328857421875,0.38427734375,0.33251953125,0.421875,0.2841796875,0.3896484375,0.365478515625,0.3974609375,0.3134765625,0.3427734375,0.3603515625,0.341796875,0.3427734375,0.572509765625,0.375244140625,0.607421875,0.37939453125,0.563720703125,0.323486328125,0.601318359375,0.417724609375,0.59228515625,0.357421875,0.655517578125,0.411865234375,0.656982421875,0.146728515625,0.628662109375,0.17919921875,0.59375,0.183349609375,0.637451171875,0.12744140625,0.599853515625,0.2216796875,0.60888671875,0.1614990234375,0.54541015625,0.2159423828125,0.544189453125,0.023529052734375,0.12158203125,0.04644775390625,0.0966796875,0.0494384765625,0.1279296875,0.00980377197265625,0.10107421875,0.0765380859375,0.107421875,0.033935546875,0.0625,0.07244873046875,0.0615234375,0.5009765625,0.7847900390625,0.5361328125,0.7470703125,0.54052734375,0.794189453125,0.480224609375,0.7535400390625,0.58203125,0.763427734375,0.51708984375,0.695068359375,0.57568359375,0.693603515625,0.83447265625,0.9808349609375,0.869140625,0.9429931640625,0.8740234375,0.990196228027344,0.8134765625,0.949615478515625,0.91552734375,0.95947265625,0.85009765625,0.89105224609375,0.9091796875,0.88958740234375,0.2152099609375,0.753662109375,0.2529296875,0.71875,0.205810546875,0.714111328125,0.2464599609375,0.7745361328125,0.236572265625,0.6728515625,
  1655. 0.304931640625,0.73779296875,0.306396484375,0.678955078125,0.69580078125,0.56982421875,0.72802734375,0.534912109375,0.732421875,0.57861328125,0.67626953125,0.541015625,0.7705078125,0.550048828125,0.71044921875,0.48681640625,0.7646484375,0.4853515625,0.59423828125,0.21826171875,0.62158203125,0.18896484375,0.625,0.2255859375,0.578125,0.1943359375,0.6572265625,0.20166015625,0.60693359375,0.14892578125,0.65234375,0.1474609375,0.3984375,0.31640625,0.425537109375,0.287109375,0.42919921875,0.32373046875,0.38232421875,0.29248046875,0.461181640625,0.2998046875,0.410888671875,0.24658203125,0.45654296875,0.24560546875,0.7119140625,0.27734375,0.7392578125,0.248046875,0.74267578125,0.28466796875,0.69580078125,0.2529296875,0.77490234375,0.2607421875,0.724609375,0.20751953125,0.77001953125,0.20654296875,0.300537109375,0.296875,0.32763671875,0.267578125,0.3310546875,0.30419921875,0.2841796875,0.2724609375,0.36328125,0.2802734375,0.312744140625,0.22705078125,0.3583984375,0.22607421875,0.183349609375,0.34912109375,0.211181640625,0.37939453125,0.21484375,0.341796875,0.1666259765625,0.3740234375,0.247802734375,0.3662109375,0.1959228515625,0.42041015625,0.2427978515625,0.421875,0.578125,0.648193359375,0.6103515625,0.61328125,0.61474609375,0.656982421875,0.55859375,0.619384765625,0.65283203125,0.62841796875,0.5927734375,0.565185546875,0.64697265625,0.563720703125,0.8525390625,0.513671875,0.884765625,0.548583984375,0.88916015625,0.5048828125,0.8330078125,0.54248046875,0.92724609375,0.533447265625,0.8671875,0.5966796875,0.92138671875,0.59814453125,0.552734375,0.06787109375,0.57568359375,0.0927734375,0.57861328125,0.0615234375,0.5390625,0.08837890625,0.60595703125,0.08203125,0.56298828125,0.126953125,0.6015625,0.1279296875,0.07794189453125,0.753662109375,0.11578369140625,0.71875,0.068603515625,0.714111328125,0.10919189453125,0.7745361328125,0.09930419921875,0.6728515625,0.167724609375,0.73779296875,0.169189453125,0.678955078125,0.364013671875,0.702880859375,0.39892578125,0.74072265625,0.403564453125,0.693603515625,0.343017578125,0.734130859375,
  1656. 0.44482421875,0.724365234375,0.3798828125,0.792724609375,0.438720703125,0.794189453125,0.81591796875,0.70654296875,0.78076171875,0.668701171875,0.7763671875,0.7158203125,0.8369140625,0.67529296875,0.73486328125,0.68505859375,0.80029296875,0.61669921875,0.7412109375,0.615234375,0.3623046875,0.53076171875,0.394775390625,0.49560546875,0.39892578125,0.539306640625,0.343017578125,0.501708984375,0.437255859375,0.510986328125,0.377197265625,0.44775390625,0.431640625,0.4462890625,0.3984375,0.21826171875,0.425537109375,0.18896484375,0.42919921875,0.2255859375,0.38232421875,0.1943359375,0.461181640625,0.20166015625,0.410888671875,0.14892578125,0.45654296875,0.1474609375,0.84912109375,0.3359375,0.87646484375,0.306640625,0.8798828125,0.34326171875,0.8330078125,0.31201171875,0.912109375,0.3193359375,0.86181640625,0.2666015625,0.9072265625,0.26513671875,0.81005859375,0.23828125,0.83740234375,0.20849609375,0.8408203125,0.2451171875,0.7939453125,0.2138671875,0.873046875,0.2216796875,0.822265625,0.16845703125,0.8681640625,0.1669921875,0.6142578125,0.31640625,0.64111328125,0.287109375,0.64453125,0.32373046875,0.59765625,0.29248046875,0.6767578125,0.2998046875,0.62646484375,0.24658203125,0.671875,0.24560546875
  1657. }
  1658. UVIndex: *2199 {
  1659. a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,24,26,23,25,23,26,25,26,13,26,24,27,27,13,26,28,29,30,31,29,28,29,32,30,31,33,29,34,29,33,33,35,34,32,29,36,34,36,29,36,37,32,38,32,37,37,39,38,39,37,40,37,36,40,40,41,39,34,42,36,40,36,42,43,42,34,43,34,35,42,44,40,42,43,44,35,45,43,44,43,45,45,35,46,46,47,45,47,44,45,47,46,48,48,49,47,50,44,47,49,50,47,49,51,50,51,44,50,51,49,52,40,44,53,51,53,44,41,40,53,52,54,51,53,51,54,53,54,41,54,52,55,55,41,54,56,57,58,59,57,56,57,60,58,59,61,57,62,57,61,61,63,62,60,57,64,62,64,57,64,65,60,66,60,65,65,67,66,67,65,68,65,64,68,68,69,67,62,70,64,68,64,70,71,70,62,71,62,63,70,72,68,70,71,72,63,73,71,72,71,73,73,63,74,74,75,73,75,72,73,75,74,76,76,77,75,78,72,75,77,78,75,77,79,78,79,72,78,79,77,80,68,72,81,79,81,72,69,68,81,80,82,79,81,79,82,81,82,69,82,80,83,83,69,82,84,85,86,87,85,84,85,88,86,87,89,85,90,85,89,89,91,90,88,85,92,90,92,85,92,93,88,94,88,93,93,95,94,95,93,96,93,92,96,96,97,95,90,98,92,96,92,98,99,98,90,99,90,91,98,100,96,98,99,100,91,101,99,100,99,101,101,91,102,102,103,101,103,100,101,103,102,104,104,105,103,106,100,103,105,106,103,105,107,106,107,100,106,107,105,108,96,100,109,107,109,100,97,96,109,108,110,107,109,107,110,109,110,97,110,108,111,111,97,110,112,113,114,115,112,114,113,112,116,117,113,116,112,115,118,119,118,115,116,120,117,121,117,120,116,112,122,120,116,122,112,118,122,121,120,123,123,120,122,124,121,123,122,118,125,118,119,125,126,123,122,124,123,126,127,125,119,119,128,127,129,122,125,125,127,129,129,126,122,128,130,127,127,130,129,131,130,128,132,130,131,133,124,126,133,126,129,124,133,134,130,135,129,135,133,129,130,132,135,135,134,133,134,135,132,136,137,138,139,136,138,137,136,140,141,137,140,136,139,142,143,142,139,140,144,141,145,141,144,140,136,146,144,140,146,136,142,146,145,144,147,147,144,146,
  1660. 148,145,147,146,142,149,142,143,149,150,147,146,148,147,150,151,149,143,143,152,151,153,146,149,149,151,153,153,150,146,152,154,151,151,154,153,155,154,152,156,154,155,157,148,150,157,150,153,148,157,158,154,159,153,159,157,153,154,156,159,159,158,157,158,159,156,160,161,162,163,160,162,161,160,164,165,161,164,160,163,166,167,166,163,164,168,165,169,165,168,164,160,170,168,164,170,160,166,170,169,168,171,171,168,170,172,169,171,170,166,173,166,167,173,174,171,170,172,171,174,175,173,167,167,176,175,177,170,173,173,175,177,177,174,170,176,178,175,175,178,177,179,178,176,180,178,179,181,172,174,181,174,177,172,181,182,178,183,177,183,181,177,178,180,183,183,182,181,182,183,180,184,185,186,187,184,186,187,188,189,186,190,187,188,187,190,188,190,191,186,192,190,191,190,193,190,192,193,193,192,194,195,196,197,198,195,197,198,199,200,197,201,198,199,198,201,199,201,202,197,203,201,202,201,204,201,203,204,204,203,205,206,207,208,209,206,208,209,210,211,208,212,209,210,209,212,210,212,213,208,214,212,213,212,215,212,214,215,215,214,216,217,218,219,220,217,219,220,221,222,219,223,220,221,220,223,221,223,224,219,225,223,224,223,226,223,225,226,226,225,227,228,229,230,231,228,230,232,228,231,231,230,233,232,231,234,234,231,233,235,236,237,235,237,238,239,235,238,237,240,238,239,238,241,238,240,241,242,243,244,245,242,244,246,242,245,245,244,247,246,245,248,248,245,247,249,250,251,249,251,252,253,249,252,251,254,252,253,252,255,252,254,255,256,257,258,259,256,258,260,256,259,259,258,261,260,259,262,262,259,261,263,264,265,263,265,266,267,263,266,265,268,266,267,266,269,266,268,269,270,271,272,273,271,270,274,270,272,270,275,273,274,275,270,276,273,275,277,275,274,276,275,277,278,279,280,278,281,279,280,279,282,279,281,283,279,283,282,281,284,283,285,282,283,283,284,285,286,287,288,286,289,287,288,287,290,287,289,291,291,290,287,289,292,291,293,290,291,291,292,293,294,295,296,297,295,294,298,294,296,294,299,297,298,299,294,300,297,299,301,299,298,300,299,301,302,303,304,305,303,302,306,302,304,302,307,305,306,307,302,308,305,307,
  1661. 309,307,306,308,307,309,310,311,312,310,312,313,311,314,312,312,315,313,312,314,315,313,315,316,314,317,315,315,317,316,318,319,320,318,320,321,319,322,320,320,323,321,320,322,323,321,323,324,322,325,323,323,325,324,326,327,328,329,327,326,330,326,328,326,331,329,330,331,326,332,329,331,333,331,330,332,331,333,334,335,336,334,337,335,336,335,338,335,337,339,335,339,338,337,340,339,341,338,339,339,340,341,342,343,344,342,345,343,344,343,346,343,345,347,347,346,343,345,348,347,349,346,347,347,348,349,350,351,352,353,351,350,354,350,352,350,355,353,354,355,350,356,353,355,357,355,354,356,355,357,358,359,360,361,359,358,362,358,360,358,363,361,362,363,358,364,361,363,365,363,362,364,363,365,366,367,368,366,368,369,367,370,368,368,371,369,368,370,371,369,371,372,370,373,371,371,373,372,374,375,376,377,375,374,378,374,376,374,379,377,378,379,374,380,377,379,381,379,378,380,379,381,382,383,384,382,385,383,384,383,386,383,385,387,383,387,386,385,388,387,389,386,387,387,388,389,390,391,392,390,393,391,392,391,394,391,393,395,395,394,391,393,396,395,397,394,395,395,396,397,398,399,400,401,399,398,402,398,400,398,403,401,402,403,398,404,401,403,405,403,402,404,403,405,406,407,408,409,407,406,410,406,408,406,411,409,410,411,406,412,409,411,413,411,410,412,411,413,414,415,416,414,416,417,415,418,416,416,419,417,416,418,419,417,419,420,418,421,419,419,421,420,422,423,424,422,425,423,424,423,426,423,425,427,426,423,428,428,423,427,429,430,431,429,432,430,431,430,433,430,432,434,433,430,435,435,430,434,436,437,438,436,439,437,438,437,440,437,439,441,440,437,442,442,437,441,443,444,445,443,446,444,445,444,447,444,446,448,447,444,449,449,444,448,450,451,452,450,453,451,452,451,454,451,453,455,454,451,456,456,451,455,457,458,459,457,460,458,459,458,461,458,460,462,461,458,463,463,458,462,464,465,466,464,467,465,466,465,468,465,467,469,468,465,470,470,465,469,471,472,473,471,474,472,473,472,475,472,474,476,475,472,477,477,472,476,478,479,480,478,481,479,480,479,482,479,481,483,482,479,484,484,479,483,485,486,487,485,488,486,487,486,489,
  1662. 486,488,490,489,486,491,491,486,490,492,493,494,492,495,493,494,493,496,493,495,497,496,493,498,498,493,497,499,500,501,499,502,500,501,500,503,500,502,504,503,500,505,505,500,504,506,507,508,506,509,507,508,507,510,507,509,511,510,507,512,512,507,511,513,514,515,513,516,514,515,514,517,514,516,518,517,514,519,519,514,518,520,521,522,520,523,521,522,521,524,521,523,525,524,521,526,526,521,525,527,528,529,527,530,528,529,528,531,528,530,532,531,528,533,533,528,532,534,535,536,534,537,535,536,535,538,535,537,539,538,535,540,540,535,539,541,542,543,541,544,542,543,542,545,542,544,546,545,542,547,547,542,546,548,549,550,548,551,549,550,549,552,549,551,553,552,549,554,554,549,553,555,556,557,555,558,556,557,556,559,556,558,560,559,556,561,561,556,560,562,563,564,562,565,563,564,563,566,563,565,567,566,563,568,568,563,567,569,570,571,569,572,570,571,570,573,570,572,574,573,570,575,575,570,574,576,577,578,576,579,577,578,577,580,577,579,581,580,577,582,582,577,581,583,584,585,583,586,584,585,584,587,584,586,588,587,584,589,589,584,588,590,591,592,590,593,591,592,591,594,591,593,595,594,591,596,596,591,595,597,598,599,597,600,598,599,598,601,598,600,602,601,598,603,603,598,602,604,605,606,604,607,605,606,605,608,605,607,609,608,605,610,610,605,609,611,612,613,611,614,612,613,612,615,612,614,616,615,612,617,617,612,616,618,619,620,618,621,619,620,619,622,619,621,623,622,619,624,624,619,623,625,626,627,625,628,626,627,626,629,626,628,630,629,626,631,631,626,630,632,633,634,632,635,633,634,633,636,633,635,637,636,633,638,638,633,637,639,640,641,639,642,640,641,640,643,640,642,644,643,640,645,645,640,644,646,647,648,646,649,647,648,647,650,647,649,651,650,647,652,652,647,651,653,654,655,653,656,654,655,654,657,654,656,658,657,654,659,659,654,658,660,661,662,660,663,661,662,661,664,661,663,665,664,661,666,666,661,665,667,668,669,667,670,668,669,668,671,668,670,672,671,668,673,673,668,672,674,675,676,674,677,675,676,675,678,675,677,679,678,675,680,680,675,679,681,682,683,681,684,682,683,682,685,682,684,686,685,682,687,687,682,686,
  1663. 688,689,690,688,691,689,690,689,692,689,691,693,692,689,694,694,689,693,695,696,697,695,698,696,697,696,699,696,698,700,699,696,701,701,696,700
  1664. }
  1665. }
  1666. LayerElementSmoothing: 0 {
  1667. Version: 102
  1668. Name: ""
  1669. MappingInformationType: "ByEdge"
  1670. ReferenceInformationType: "Direct"
  1671. Smoothing: *1359 {
  1672. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  1673. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1674. }
  1675. }
  1676. LayerElementMaterial: 0 {
  1677. Version: 101
  1678. Name: ""
  1679. MappingInformationType: "ByPolygon"
  1680. ReferenceInformationType: "IndexToDirect"
  1681. Materials: *733 {
  1682. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1683. }
  1684. }
  1685. Layer: 0 {
  1686. Version: 100
  1687. LayerElement: {
  1688. Type: "LayerElementNormal"
  1689. TypedIndex: 0
  1690. }
  1691. LayerElement: {
  1692. Type: "LayerElementBinormal"
  1693. TypedIndex: 0
  1694. }
  1695. LayerElement: {
  1696. Type: "LayerElementTangent"
  1697. TypedIndex: 0
  1698. }
  1699. LayerElement: {
  1700. Type: "LayerElementMaterial"
  1701. TypedIndex: 0
  1702. }
  1703. LayerElement: {
  1704. Type: "LayerElementColor"
  1705. TypedIndex: 0
  1706. }
  1707. LayerElement: {
  1708. Type: "LayerElementSmoothing"
  1709. TypedIndex: 0
  1710. }
  1711. LayerElement: {
  1712. Type: "LayerElementUV"
  1713. TypedIndex: 0
  1714. }
  1715. }
  1716. Layer: 1 {
  1717. Version: 100
  1718. LayerElement: {
  1719. Type: "LayerElementBinormal"
  1720. TypedIndex: 1
  1721. }
  1722. LayerElement: {
  1723. Type: "LayerElementTangent"
  1724. TypedIndex: 1
  1725. }
  1726. LayerElement: {
  1727. Type: "LayerElementUV"
  1728. TypedIndex: 1
  1729. }
  1730. }
  1731. }
  1732. Geometry: 2267733782176, "Geometry::", "Mesh" {
  1733. Vertices: *552 {
  1734. a: -18.76953125,354.060668945313,106.564575195313,-10.623046875,330.256469726563,89.0972900390625,-16.421875,323.244934082031,105.514465332031,-16.52734375,340.680847167969,77.0294799804688,-15.314453125,308.881317138672,104.703582763672,-13.314453125,315.239318847656,45.8272094726563,-6.9365234375,300.705200195313,53.9444580078125,-8.6787109375,270.590789794922,14.9374694824219,-8.5966796875,302.557708740234,90.1416931152344,-8.251953125,287.87158203125,108.04150390625,-14.8759765625,289.191375732422,129.284149169922,-10.3955078125,246.495086669922,98.6063995361328,-4.0791015625,246.661346435547,82.0431671142578,-6.4365234375,210.209350585938,68.9456787109375,-5.9287109375,249.973754882813,50.8672943115234,-3.0576171875,262.142547607422,30.2255554199219,-1.0068359375,197.025527954102,27.9132232666016,1.078125,217.072174072266,11.9813537597656,-4.0078125,219.476455688477,-5.29307556152344,4.05078125,179.125793457031,8.72637939453125,-0.2802734375,171.930725097656,-9.43450927734375,-0.248046875,152.462707519531,24.4099731445313,3.9375,168.798980712891,29.7862854003906,3.3994140625,167.628234863281,44.6653442382813,-1.1240234375,148.418197631836,52.4230804443359,0.001953125,205.844360351563,57.5386962890625,0.4228515625,171.887878417969,81.3361206054688,-4.52734375,168.611877441406,97.4849090576172,-25.0830078125,301.334930419922,-192.544952392578,-16.9375,271.837829589844,-191.260803222656,-22.736328125,276.649261474609,-174.070465087891,-22.841796875,272.410369873047,-207.197052001953,-21.62890625,264.941955566406,-165.708435058594,-19.62890625,233.036911010742,-215.597854614258,-13.2509765625,226.785949707031,-200.169128417969,-14.994140625,178.882034301758,-211.729293823242,-14.9111328125,250.893585205078,-173.104461669922,-14.56640625,250.649841308594,-149.951721191406,-21.1904296875,264.978454589844,-134.214904785156,-16.7109375,212.479156494141,-131.403656005859,-10.39453125,202.238433837891,-144.422698974609,-12.751953125,165.614822387695,-131.812911987305,-12.244140625,185.302047729492,-170.805374145508,
  1735. -9.373046875,181.866943359375,-194.518798828125,-7.322265625,129.64453125,-155.552734375,-5.23828125,135.300796508789,-180.526351928711,-10.32421875,126.35986328125,-195.50146484375,-2.265625,103.674423217773,-159.306045532227,-6.5966796875,86.6936798095703,-168.96159362793,-6.5654296875,92.7037811279297,-130.38313293457,-2.37890625,108.807601928711,-136.419937133789,-2.9169921875,117.210861206055,-124.084060668945,-7.4404296875,107.089279174805,-106.007400512695,-6.314453125,155.069641113281,-137.973327636719,-5.8935546875,143.49186706543,-98.1585235595703,-10.84375,151.048446655273,-83.5150299072266,-16.345703125,250.499084472656,-76.9198608398438,-7.1376953125,224.07275390625,-89.36669921875,-12.7861328125,220.195892333984,-71.8939514160156,-13.3505859375,231.680191040039,-103.249496459961,-11.111328125,206.008697509766,-69.8653259277344,-8.8994140625,200.755676269531,-128.842956542969,-2.021484375,188.364776611328,-118.027801513672,-2.2783203125,151.131637573242,-150.355667114258,-4.037109375,197.221710205078,-82.9003601074219,-3.2587890625,186.362487792969,-62.4627075195313,-10.095703125,191.562530517578,-41.8945007324219,-3.7080078125,143.886764526367,-63.5829620361328,2.7275390625,141.049072265625,-79.855224609375,1.900390625,102.670318603516,-85.5337829589844,0.994140625,138.098327636719,-111.074523925781,3.548828125,146.081420898438,-133.703735351563,8.1640625,81.9129180908203,-123.17497253418,9.587890625,98.5074920654297,-142.73567199707,4.5478515625,97.2677459716797,-160.14533996582,14.068359375,60.8102264404297,-138.46907043457,10.1650390625,50.0219421386719,-154.860870361328,10.6923828125,37.5963287353516,-117.851913452148,14.193359375,54.8239288330078,-115.791305541992,13.5849609375,56.5774536132813,-100.971374511719,9.755859375,39.1000366210938,-89.5894165039063,8.59375,96.4108428955078,-95.8596649169922,10.15625,67.8331451416016,-65.8533782958984,5.2119140625,67.5972900390625,-49.3753662109375,-19.1103515625,88.3471374511719,193.459442138672,-10.9638671875,67.9376068115234,172.124130249023,-16.7626953125,58.181884765625,187.074462890625,
  1736. -16.8681640625,80.2992095947266,162.050186157227,-15.6552734375,44.1772308349609,183.780746459961,-13.6552734375,60.6623840332031,126.904571533203,-7.27734375,44.9396057128906,132.374176025391,-9.01953125,22.0562286376953,88.7290802001953,-8.9384765625,40.4784088134766,168.342666625977,-8.5927734375,22.9070129394531,183.420684814453,-15.2177734375,20.5181884765625,204.568969726563,-10.736328125,-16.2023773193359,166.943130493164,-4.419921875,-13.1624603271484,150.660781860352,-6.77734375,-46.7862396240234,131.432510375977,-6.26953125,-4.48680114746094,120.534683227539,-3.3984375,11.0814361572266,102.319717407227,-1.3466796875,-52.6446380615234,88.7342681884766,0.7373046875,-30.1360626220703,76.5250701904297,-4.3486328125,-24.7686004638672,59.9306182861328,3.7099609375,-66.9406890869141,66.7302093505859,-0.62109375,-70.8728790283203,47.5968475341797,-0.5888671875,-95.9221343994141,77.5456390380859,3.5966796875,-80.7675323486328,85.6768035888672,3.05859375,-84.5043182373047,100.126541137695,-1.46484375,-104.769607543945,104.431564331055,-0.3388671875,-49.1042633056641,119.441635131836,0.08203125,-86.6771392822266,136.980087280273,-4.869140625,-92.7076263427734,152.315811157227,-0.9833984375,-17.6160125732422,90.2863311767578,-7.4716796875,-75.9285736083984,87.3575592041016,-7.4716796875,-26.1660308837891,130.491195678711,-7.4716796875,35.5498962402344,87.2539978027344,-0.9833984375,-65.5331878662109,73.7080230712891,-7.4716796875,-103.94612121582,14.2999725341797,-0.9833984375,21.9994049072266,63.8568267822266,-7.4716796875,62.5724945068359,1.51487731933594,-0.9833984375,-77.5636138916016,7.59165954589844,-7.470703125,-62.9332427978516,-50.5943756103516,-4.337890625,-23.7965545654297,9.05403137207031,-0.982421875,-49.7334136962891,-42.4619293212891,-7.470703125,-6.63374328613281,-72.9413604736328,-0.982421875,43.8173522949219,-6.64944458007813,-0.982421875,2.54568481445313,-53.1564636230469,-0.982421875,109.278945922852,-61.1419525146484,-7.470703125,127.878608703613,-62.3586959838867,-4.337890625,57.5340576171875,-70.9093017578125,
  1737. -0.982421875,112.140655517578,-87.9550476074219,-7.470703125,149.776184082031,-115.263854980469,-7.470703125,97.6598815917969,-126.369415283203,-0.982421875,58.4306488037109,-95.0224761962891,-7.470703125,49.4598693847656,-126.397552490234,-0.982421875,86.1466064453125,-101.328002929688,2.9736328125,31.0390625,94.9423828125,-3.5146484375,1.85990905761719,44.3706512451172,-3.5146484375,-7.37248229980469,109.574783325195,-3.5146484375,62.4335632324219,137.957000732422,2.9736328125,18.9654083251953,45.6968536376953,-3.513671875,48.026123046875,-18.803955078125,2.9736328125,74.7350463867188,113.878601074219,-3.5146484375,149.116394042969,114.134963989258,2.974609375,67.9757995605469,-0.282012939453125,-3.513671875,124.790542602539,-19.5649261474609,-0.380859375,95.9210815429688,45.6749877929688,2.974609375,125.121154785156,-4.06341552734375,-3.513671875,174.109191894531,15.6023559570313,2.9736328125,145.797943115234,93.9502868652344,2.974609375,162.470199584961,34.0483245849609,2.9736328125,227.090240478516,119.371475219727,-3.5146484375,238.204010009766,134.334854125977,-0.380859375,207.218688964844,70.6063842773438,2.9736328125,251.166137695313,107.226684570313,-3.5146484375,294.525726318359,124.023773193359,-3.513671875,275.577026367188,74.2196044921875,2.974609375,227.960052490234,58.2754821777344,-3.513671875,249.448120117188,33.7156829833984,2.974609375,248.295471191406,78.1353149414063,-1.4306640625,-21.9943695068359,-95.8312835693359,-7.9189453125,-70.6231536865234,-128.144638061523,-7.9189453125,-49.8875579833984,-65.6385345458984,-7.9189453125,25.2565765380859,-71.2717437744141,-1.4306640625,-54.7130889892578,-134.565628051758,-7.91796875,-57.3770751953125,-205.260848999023,-1.4306640625,25.5638885498047,-98.3072052001953,-7.9189453125,92.2950286865234,-131.164932250977,-1.4296875,-31.2710113525391,-197.546401977539,-7.91796875,11.0365600585938,-240.088439941406,-4.78515625,14.2001495361328,-168.816452026367,-1.4296875,18.2276153564453,-226.352462768555,-7.91796875,70.8500671386719,-230.528839111328,-1.4306640625,80.3447113037109,-147.765640258789,
  1738. -1.4296875,68.6310729980469,-208.831817626953,-1.4296875,164.459350585938,-161.158813476563,-7.9189453125,181.069229125977,-152.701278686523,-4.78515625,124.970260620117,-195.994583129883,-1.4296875,180.619995117188,-182.745239257813,-7.91796875,226.925216674805,-186.988845825195,-7.91796875,187.800765991211,-223.166030883789,-1.4296875,138.061920166016,-216.264251708984,-7.91796875,146.382507324219,-247.818664550781,-1.4296875,165.108764648438,-207.523071289063
  1739. }
  1740. PolygonVertexIndex: *795 {
  1741. a: 0,1,-3,3,1,-1,1,4,-3,3,5,-2,6,1,-6,5,7,-7,4,1,-9,6,8,-2,8,9,-5,10,4,-10,9,11,-11,11,9,-13,9,8,-13,12,13,-12,6,14,-9,12,8,-15,15,14,-7,15,6,-8,14,16,-13,14,15,-17,7,17,-16,16,15,-18,17,7,-19,18,19,-18,19,16,-18,19,18,-21,20,21,-20,22,16,-20,21,22,-20,21,23,-23,23,16,-23,23,21,-25,12,16,-26,23,25,-17,13,12,-26,26,23,-25,25,23,-27,25,26,-14,24,27,-27,27,13,-27,28,29,-31,31,29,-29,29,32,-31,31,33,-30,34,29,-34,33,35,-35,32,29,-37,34,36,-30,36,37,-33,38,32,-38,37,39,-39,39,37,-41,37,36,-41,40,41,-40,34,42,-37,40,36,-43,43,42,-35,43,34,-36,42,44,-41,42,43,-45,35,45,-44,44,43,-46,45,35,-47,46,47,-46,47,44,-46,47,46,-49,48,49,-48,50,44,-48,49,50,-48,49,51,-51,51,44,-51,51,49,-53,40,44,-54,51,53,-45,41,40,-54,54,51,-53,53,51,-55,53,54,-42,52,55,-55,55,41,-55,56,57,-59,59,57,-57,57,60,-59,59,61,-58,62,57,-62,61,63,-63,60,57,-65,62,64,-58,64,65,-61,66,60,-66,65,67,-67,67,65,-69,65,64,-69,68,69,-68,62,70,-65,68,64,-71,71,70,-63,71,62,-64,70,72,-69,70,71,-73,63,73,-72,72,71,-74,73,63,-75,74,75,-74,75,72,-74,75,74,-77,76,77,-76,78,72,-76,77,78,-76,77,79,-79,79,72,-79,79,77,-81,68,72,-82,79,81,-73,69,68,-82,82,79,-81,81,79,-83,81,82,-70,80,83,-83,83,69,-83,84,85,-87,87,85,-85,85,88,-87,87,89,-86,90,85,-90,89,91,-91,88,85,-93,90,92,-86,92,93,-89,94,88,-94,93,95,-95,95,93,-97,93,92,-97,96,97,-96,90,98,-93,96,92,-99,99,98,-91,99,90,-92,98,100,-97,98,99,-101,91,101,-100,100,99,-102,101,91,-103,102,103,-102,103,100,-102,103,102,-105,104,105,-104,106,100,-104,105,106,-104,105,107,-107,107,100,-107,107,105,-109,96,100,-110,107,109,-101,97,96,-110,110,107,-109,109,107,-111,109,110,-98,108,111,-111,111,97,-111,112,113,-115,115,112,-115,113,112,-117,117,113,-117,112,115,-119,119,118,-116,116,120,-118,121,117,-121,116,112,-123,120,116,-123,112,118,-123,121,120,-124,123,120,-123,123,124,-122,122,118,-126,118,119,-126,126,123,-123,124,123,-127,127,125,-120,119,128,-128,129,122,-126,125,127,-130,129,126,-123,128,130,-128,127,130,-130,131,130,-129,132,130,-132,133,124,-127,133,126,-130,124,133,-135,130,135,-130,135,133,-130,130,
  1742. 132,-136,135,134,-134,134,135,-133,136,137,-139,139,136,-139,137,136,-141,141,137,-141,136,139,-143,143,142,-140,140,144,-142,145,141,-145,140,136,-147,144,140,-147,136,142,-147,145,144,-148,147,144,-147,147,148,-146,146,142,-150,142,143,-150,150,147,-147,148,147,-151,151,149,-144,143,152,-152,153,146,-150,149,151,-154,153,150,-147,152,154,-152,151,154,-154,155,154,-153,156,154,-156,157,148,-151,157,150,-154,148,157,-159,154,159,-154,159,157,-154,154,156,-160,159,158,-158,158,159,-157,160,161,-163,163,160,-163,161,160,-165,165,161,-165,160,163,-167,167,166,-164,164,168,-166,169,165,-169,164,160,-171,168,164,-171,160,166,-171,169,168,-172,171,168,-171,171,172,-170,170,166,-174,166,167,-174,174,171,-171,172,171,-175,175,173,-168,167,176,-176,177,170,-174,173,175,-178,177,174,-171,176,178,-176,175,178,-178,179,178,-177,180,178,-180,181,172,-175,181,174,-178,172,181,-183,178,183,-178,183,181,-178,178,180,-184,183,182,-182,182,183,-181
  1743. }
  1744. Edges: *442 {
  1745. a: 0,1,2,3,5,6,7,9,10,12,14,15,16,19,20,21,24,25,27,29,30,31,34,35,37,39,40,42,43,47,48,50,53,54,55,58,60,61,65,67,68,69,70,72,76,77,78,79,81,83,84,87,88,90,94,95,97,98,99,104,105,107,110,112,114,115,117,120,121,122,123,125,126,127,129,130,132,134,135,136,139,140,141,144,145,147,149,150,151,154,155,157,159,160,162,163,167,168,170,173,174,175,178,180,181,185,187,188,189,190,192,196,197,198,199,201,203,204,207,208,210,214,215,217,218,219,224,225,227,230,232,234,235,237,240,241,242,243,245,246,247,249,250,252,254,255,256,259,260,261,264,265,267,269,270,271,274,275,277,279,280,282,283,287,288,290,293,294,295,298,300,301,305,307,308,309,310,312,316,317,318,319,321,323,324,327,328,330,334,335,337,338,339,344,345,347,350,352,354,355,357,360,361,362,363,365,366,367,369,370,372,374,375,376,379,380,381,384,385,387,389,390,391,394,395,397,399,400,402,403,407,408,410,413,414,415,418,420,421,425,427,428,429,430,432,436,437,438,439,441,443,444,447,448,450,454,455,457,458,459,464,465,467,470,472,474,475,477,480,481,482,483,485,487,488,489,491,493,494,495,497,498,499,501,503,505,506,509,511,514,515,518,519,520,523,524,526,528,530,533,534,536,537,538,540,542,544,546,549,550,553,555,557,558,560,561,563,566,568,569,570,571,573,577,579,584,585,586,587,588,590,592,593,594,596,598,599,600,602,603,604,606,608,610,611,614,616,619,620,623,624,625,628,629,631,633,635,638,639,641,642,643,645,647,649,651,654,655,658,660,662,663,665,666,668,671,673,674,675,676,678,682,684,689,690,691,692,693,695,697,698,699,701,703,704,705,707,708,709,711,713,715,716,719,721,724,725,728,729,730,733,734,736,738,740,743,744,746,747,748,750,752,754,756,759,760,763,765,767,768,770,771,773,776,778,779,780,781,783,787,789,794
  1746. }
  1747. GeometryVersion: 124
  1748. LayerElementNormal: 0 {
  1749. Version: 102
  1750. Name: ""
  1751. MappingInformationType: "ByPolygonVertex"
  1752. ReferenceInformationType: "Direct"
  1753. Normals: *2385 {
  1754. a: -0.965813159942627,-0.212007775902748,-0.149190649390221,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.926695227622986,-0.0706801414489746,-0.36910742521286,-0.927869081497192,-0.338121801614761,0.157265961170197,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.965813159942627,-0.212007775902748,-0.149190649390221,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.926695227622986,-0.0706801414489746,-0.36910742521286,-0.927869081497192,-0.338121801614761,0.157265961170197,-0.934779226779938,-0.290645658969879,0.204237475991249,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.980183660984039,-0.173903554677963,0.0948564857244492,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.934779226779938,-0.290645658969879,0.204237475991249,-0.934779226779938,-0.290645658969879,0.204237475991249,-0.946202754974365,-0.22078064084053,0.236550688743591,-0.980183660984039,-0.173903554677963,0.0948564857244492,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.980183660984039,-0.173903554677963,0.0948564857244492,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.975169479846954,-0.220199555158615,-0.023592809215188,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.949202120304108,-0.0235339347273111,-0.313785821199417,-0.921231389045715,-0.228339403867722,-0.314950913190842,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.927553713321686,0.141491234302521,-0.345867514610291,-0.949202120304108,-0.0235339347273111,-0.313785821199417,-0.927553713321686,0.141491234302521,-0.345867514610291,-0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.987163484096527,0.0236919224262238,-0.157946154475212,
  1755. -0.968203842639923,-0.0551010295748711,-0.244018852710724,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.912509322166443,9.08286531881689e-017,-0.409055888652802,-0.927553713321686,0.141491234302521,-0.345867514610291,-0.980183660984039,-0.173903554677963,0.0948564857244492,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.989522039890289,-0.102093540132046,-0.102093540132046,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.983459711074829,-0.149485886096954,0.102279812097549,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.980183660984039,-0.173903554677963,0.0948564857244492,-0.983459711074829,-0.149485886096954,0.102279812097549,-0.980183660984039,-0.173903554677963,0.0948564857244492,-0.946202754974365,-0.22078064084053,0.236550688743591,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.983459711074829,-0.149485886096954,0.102279812097549,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.946202754974365,-0.22078064084053,0.236550688743591,-0.985903739929199,-0.118308454751968,0.118308454751968,-0.983459711074829,-0.149485886096954,0.102279812097549,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.983459711074829,-0.149485886096954,0.102279812097549,-0.985903739929199,-0.118308454751968,0.118308454751968,-0.985903739929199,-0.118308454751968,0.118308454751968,-0.946202754974365,-0.22078064084053,0.236550688743591,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.988790571689606,0.00784754473716021,0.149103343486786,-0.985903739929199,-0.118308454751968,0.118308454751968,
  1756. -0.988790571689606,0.00784754473716021,0.149103343486786,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.985903739929199,-0.118308454751968,0.118308454751968,-0.988790571689606,0.00784754473716021,0.149103343486786,-0.954978823661804,-0.142062962055206,0.260448753833771,-0.975320279598236,0.0157309714704752,0.220233619213104,-0.975320279598236,0.0157309714704752,0.220233619213104,-0.969074904918671,0.236359730362892,0.0709079131484032,-0.988790571689606,0.00784754473716021,0.149103343486786,-0.993605554103851,0.11040061712265,0.0236572753638029,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.988790571689606,0.00784754473716021,0.149103343486786,-0.969074904918671,0.236359730362892,0.0709079131484032,-0.993605554103851,0.11040061712265,0.0236572753638029,-0.988790571689606,0.00784754473716021,0.149103343486786,-0.969074904918671,0.236359730362892,0.0709079131484032,-0.994688630104065,0.0868378952145576,-0.0552604794502258,-0.993605554103851,0.11040061712265,0.0236572753638029,-0.994688630104065,0.0868378952145576,-0.0552604794502258,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.993605554103851,0.11040061712265,0.0236572753638029,-0.994688630104065,0.0868378952145576,-0.0552604794502258,-0.969074904918671,0.236359730362892,0.0709079131484032,-0.964073002338409,0.244969367980957,-0.102729082107544,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.994688630104065,0.0868378952145576,-0.0552604794502258,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.993976533412933,-0.0946644321084023,-0.0552209168672562,-0.912509322166443,9.08286531881689e-017,-0.409055888652802,-0.987163484096527,0.0236919224262238,-0.157946154475212,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.994688630104065,0.0868378952145576,-0.0552604794502258,-0.964073002338409,0.244969367980957,-0.102729082107544,
  1757. -0.986794292926788,-0.11841531842947,-0.110520958900452,-0.994688630104065,0.0868378952145576,-0.0552604794502258,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.986794292926788,-0.11841531842947,-0.110520958900452,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.912509322166443,9.08286531881689e-017,-0.409055888652802,-0.964073002338409,0.244969367980957,-0.102729082107544,-0.96048104763031,-0.0393639765679836,-0.275547832250595,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.96048104763031,-0.0393639765679836,-0.275547832250595,-0.912509322166443,9.08286531881689e-017,-0.409055888652802,-0.97710520029068,4.72414957753202e-017,-0.212756782770157,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.974928438663483,-0.188695833086967,0.117934897542,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.929133951663971,-0.165354341268539,0.330708682537079,-0.974928438663483,-0.188695833086967,0.117934897542,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.974928438663483,-0.188695833086967,0.117934897542,-0.920318841934204,-0.377566695213318,-0.102257646620274,-0.927639722824097,-0.283008724451065,-0.243701964616776,-0.929133951663971,-0.165354341268539,0.330708682537079,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.974928438663483,-0.188695833086967,0.117934897542,-0.980735242366791,-0.0711823925375938,0.181910574436188,-0.974928438663483,-0.188695833086967,0.117934897542,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.94602632522583,-0.0236506573855877,0.323225647211075,-0.980735242366791,-0.0711823925375938,0.181910574436188,-0.920318841934204,-0.377566695213318,-0.102257646620274,-0.974928438663483,-0.188695833086967,0.117934897542,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.980735242366791,-0.0711823925375938,0.181910574436188,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.974928438663483,-0.188695833086967,0.117934897542,-0.989827394485474,-0.141403913497925,-0.0157115459442139,
  1758. -0.967754244804382,-0.196698009967804,-0.157358407974243,-0.920318841934204,-0.377566695213318,-0.102257646620274,-0.950343310832977,-0.212060078978539,-0.227768227458,-0.920318841934204,-0.377566695213318,-0.102257646620274,-0.967754244804382,-0.196698009967804,-0.157358407974243,-0.967754244804382,-0.196698009967804,-0.157358407974243,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.950343310832977,-0.212060078978539,-0.227768227458,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.967754244804382,-0.196698009967804,-0.157358407974243,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.967754244804382,-0.196698009967804,-0.157358407974243,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.910651624202728,-0.259064674377441,-0.321868240833282,-0.926838159561157,-0.102109283208847,-0.361309796571732,-0.980735242366791,-0.0711823925375938,0.181910574436188,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.989827394485474,-0.141403913497925,-0.0157115459442139,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.980735242366791,-0.0711823925375938,0.181910574436188,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.980735242366791,-0.0711823925375938,0.181910574436188,-0.94602632522583,-0.0236506573855877,0.323225647211075,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.997467637062073,-0.0706866830587387,0.00785407610237598,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.94602632522583,-0.0236506573855877,0.323225647211075,
  1759. -0.986057102680206,-0.015776913613081,0.165657594799995,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.983368337154388,-0.0550686232745647,0.173072829842567,-0.986057102680206,-0.015776913613081,0.165657594799995,-0.986057102680206,-0.015776913613081,0.165657594799995,-0.94602632522583,-0.0236506573855877,0.323225647211075,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.98869913816452,0.102008640766144,0.109855458140373,-0.986057102680206,-0.015776913613081,0.165657594799995,-0.98869913816452,0.102008640766144,0.109855458140373,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.986057102680206,-0.015776913613081,0.165657594799995,-0.98869913816452,0.102008640766144,0.109855458140373,-0.955216944217682,0.0473661310970783,0.292091131210327,-0.976135909557343,0.14956921339035,0.157441273331642,-0.976135909557343,0.14956921339035,0.157441273331642,-0.968954622745514,0.228452697396278,-0.0945321545004845,-0.98869913816452,0.102008640766144,0.109855458140373,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.98869913816452,0.102008640766144,0.109855458140373,-0.968954622745514,0.228452697396278,-0.0945321545004845,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.98869913816452,0.102008640766144,0.109855458140373,-0.968954622745514,0.228452697396278,-0.0945321545004845,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.968954622745514,0.228452697396278,-0.0945321545004845,-0.963291347026825,0.12633328139782,-0.236874923110008,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.993760168552399,-0.110417798161507,0.0157739706337452,
  1760. -0.986149191856384,-0.165673062205315,-0.00788919348269701,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.986149191856384,-0.165673062205315,-0.00788919348269701,-0.993760168552399,-0.110417798161507,0.0157739706337452,-0.910651624202728,-0.259064674377441,-0.321868240833282,-0.98777973651886,-0.0790223777294159,-0.134338036179543,-0.986149191856384,-0.165673062205315,-0.00788919348269701,-0.977074861526489,-0.133953809738159,-0.165472343564034,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.963291347026825,0.12633328139782,-0.236874923110008,-0.986149191856384,-0.165673062205315,-0.00788919348269701,-0.994998693466187,0.0315872617065907,-0.0947617813944817,-0.977074861526489,-0.133953809738159,-0.165472343564034,-0.986149191856384,-0.165673062205315,-0.00788919348269701,-0.977074861526489,-0.133953809738159,-0.165472343564034,-0.910651624202728,-0.259064674377441,-0.321868240833282,-0.963291347026825,0.12633328139782,-0.236874923110008,-0.960421562194824,-0.204679980874062,-0.18893538415432,-0.977074861526489,-0.133953809738159,-0.165472343564034,-0.960421562194824,-0.204679980874062,-0.18893538415432,-0.910651624202728,-0.259064674377441,-0.321868240833282,-0.977074861526489,-0.133953809738159,-0.165472343564034,-0.955544471740723,-0.276397138834,-0.102661795914173,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.921831548213959,-0.1733358502388,-0.3466717004776,-0.914520561695099,-0.339003294706345,0.220746338367462,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.955544471740723,-0.276397138834,-0.102661795914173,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.907398462295532,-0.323507279157639,-0.268274307250977,-0.921831548213959,-0.1733358502388,-0.3466717004776,-0.914520561695099,-0.339003294706345,0.220746338367462,-0.924706161022186,-0.284524977207184,0.25291109085083,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.973995566368103,-0.18851526081562,0.125676840543747,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.924706161022186,-0.284524977207184,0.25291109085083,
  1761. -0.924706161022186,-0.284524977207184,0.25291109085083,-0.938960134983063,-0.205150946974754,0.27616474032402,-0.973995566368103,-0.18851526081562,0.125676840543747,-0.907398462295532,-0.323507279157639,-0.268274307250977,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.984374046325684,-0.157499849796295,-0.0787499248981476,-0.973995566368103,-0.18851526081562,0.125676840543747,-0.984374046325684,-0.157499849796295,-0.0787499248981476,-0.965723752975464,-0.259096622467041,0.0157028250396252,-0.984374046325684,-0.157499849796295,-0.0787499248981476,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.907398462295532,-0.323507279157639,-0.268274307250977,-0.945732593536377,-0.126097679138184,-0.299481987953186,-0.907398462295532,-0.323507279157639,-0.268274307250977,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.92829966545105,0.0393347330391407,-0.369746506214142,-0.945732593536377,-0.126097679138184,-0.299481987953186,-0.92829966545105,0.0393347330391407,-0.369746506214142,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.963021218776703,-0.142085090279579,-0.228914856910706,-0.984374046325684,-0.157499849796295,-0.0787499248981476,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.907709300518036,-0.118396870791912,-0.402549356222153,-0.92829966545105,0.0393347330391407,-0.369746506214142,-0.973995566368103,-0.18851526081562,0.125676840543747,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.984374046325684,-0.157499849796295,-0.0787499248981476,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.984374046325684,-0.157499849796295,-0.0787499248981476,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.978077471256256,-0.165642142295837,0.126203551888466,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.973995566368103,-0.18851526081562,0.125676840543747,-0.978077471256256,-0.165642142295837,0.126203551888466,
  1762. -0.973995566368103,-0.18851526081562,0.125676840543747,-0.938960134983063,-0.205150946974754,0.27616474032402,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.994440853595734,-0.102601043879986,-0.0236771646887064,-0.978077471256256,-0.165642142295837,0.126203551888466,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.938960134983063,-0.205150946974754,0.27616474032402,-0.981941223144531,-0.125688478350639,0.141399532556534,-0.978077471256256,-0.165642142295837,0.126203551888466,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.978077471256256,-0.165642142295837,0.126203551888466,-0.981941223144531,-0.125688478350639,0.141399532556534,-0.981941223144531,-0.125688478350639,0.141399532556534,-0.938960134983063,-0.205150946974754,0.27616474032402,-0.950871348381042,-0.125735059380531,0.282903850078583,-0.950871348381042,-0.125735059380531,0.282903850078583,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.981941223144531,-0.125688478350639,0.141399532556534,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.981941223144531,-0.125688478350639,0.141399532556534,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.950871348381042,-0.125735059380531,0.282903850078583,-0.976832389831543,0.0236330423504114,0.212697386741638,-0.976832389831543,0.0236330423504114,0.212697386741638,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.996883630752563,0.0784947723150253,0.00784947723150253,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.996883630752563,0.0784947723150253,0.00784947723150253,-0.989949524402618,-3.14018473127668e-017,0.141421347856522,-0.978442788124084,0.205157354474068,0.0236720032989979,
  1763. -0.997006475925446,0.0314017795026302,-0.07065399736166,-0.996883630752563,0.0784947723150253,0.00784947723150253,-0.997006475925446,0.0314017795026302,-0.07065399736166,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.996883630752563,0.0784947723150253,0.00784947723150253,-0.997006475925446,0.0314017795026302,-0.07065399736166,-0.978442788124084,0.205157354474068,0.0236720032989979,-0.971823513507843,0.181723102927208,-0.150119081139565,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.979510545730591,-0.181683406233788,-0.0868920683860779,-0.997006475925446,0.0314017795026302,-0.07065399736166,-0.979510545730591,-0.181683406233788,-0.0868920683860779,-0.989186525344849,-0.141312345862389,-0.0392534323036671,-0.907709300518036,-0.118396870791912,-0.402549356222153,-0.98633337020874,-0.0473439991474152,-0.157813340425491,-0.979510545730591,-0.181683406233788,-0.0868920683860779,-0.974085688591003,-0.0785553008317947,-0.212099298834801,-0.997006475925446,0.0314017795026302,-0.07065399736166,-0.971823513507843,0.181723102927208,-0.150119081139565,-0.979510545730591,-0.181683406233788,-0.0868920683860779,-0.997006475925446,0.0314017795026302,-0.07065399736166,-0.974085688591003,-0.0785553008317947,-0.212099298834801,-0.979510545730591,-0.181683406233788,-0.0868920683860779,-0.974085688591003,-0.0785553008317947,-0.212099298834801,-0.907709300518036,-0.118396870791912,-0.402549356222153,-0.971823513507843,0.181723102927208,-0.150119081139565,-0.956021547317505,-0.134317070245743,-0.260733127593994,-0.974085688591003,-0.0785553008317947,-0.212099298834801,-0.956021547317505,-0.134317070245743,-0.260733127593994,-0.907709300518036,-0.118396870791912,-0.402549356222153,-0.974085688591003,-0.0785553008317947,-0.212099298834801,-0.963972449302673,-0.188092187047005,-0.188092187047005,-0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.926295399665833,8.36659903849538e-017,-0.376798123121262,-0.927553713321686,-0.36158874630928,0.0943275019526482,
  1764. -0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.963972449302673,-0.188092187047005,-0.188092187047005,-0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.920518219470978,-0.165221214294434,-0.354045480489731,-0.926295399665833,8.36659903849538e-017,-0.376798123121262,-0.927553713321686,-0.36158874630928,0.0943275019526482,-0.934865713119507,-0.322096616029739,0.149264290928841,-0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.979816317558289,-0.189641863107681,0.0632139518857002,-0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.934865713119507,-0.322096616029739,0.149264290928841,-0.934865713119507,-0.322096616029739,0.149264290928841,-0.945321559906006,-0.259963423013687,0.196941986680031,-0.979816317558289,-0.189641863107681,0.0632139518857002,-0.920518219470978,-0.165221214294434,-0.354045480489731,-0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.989918947219849,-0.0785649940371513,-0.117847494781017,-0.979816317558289,-0.189641863107681,0.0632139518857002,-0.989918947219849,-0.0785649940371513,-0.117847494781017,-0.975169599056244,-0.21233531832695,-0.0629141703248024,-0.989918947219849,-0.0785649940371513,-0.117847494781017,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.920518219470978,-0.165221214294434,-0.354045480489731,-0.948997735977173,0.0313718244433403,-0.313718259334564,-0.920518219470978,-0.165221214294434,-0.354045480489731,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.924786567687988,0.203766539692879,-0.32132413983345,-0.948997735977173,0.0313718244433403,-0.313718259334564,-0.924786567687988,0.203766539692879,-0.32132413983345,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.987533092498779,0.0474015884101391,-0.150105029344559,-0.967754244804382,-0.00786792021244764,-0.251773446798325,-0.989918947219849,-0.0785649940371513,-0.117847494781017,-0.987533092498779,0.0474015884101391,-0.150105029344559,-0.987533092498779,0.0474015884101391,-0.150105029344559,
  1765. -0.910230994224548,0.0706213638186455,-0.408034563064575,-0.924786567687988,0.203766539692879,-0.32132413983345,-0.979816317558289,-0.189641863107681,0.0632139518857002,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.989918947219849,-0.0785649940371513,-0.117847494781017,-0.987533092498779,0.0474015884101391,-0.150105029344559,-0.989918947219849,-0.0785649940371513,-0.117847494781017,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.983703315258026,-0.165262147784233,0.0708266347646713,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.979816317558289,-0.189641863107681,0.0632139518857002,-0.983703315258026,-0.165262147784233,0.0708266347646713,-0.979816317558289,-0.189641863107681,0.0632139518857002,-0.945321559906006,-0.259963423013687,0.196941986680031,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.987533092498779,0.0474015884101391,-0.150105029344559,-0.99737536907196,-0.0549734458327293,-0.0471200942993164,-0.983703315258026,-0.165262147784233,0.0708266347646713,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.945321559906006,-0.259963423013687,0.196941986680031,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.983703315258026,-0.165262147784233,0.0708266347646713,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.983703315258026,-0.165262147784233,0.0708266347646713,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.945321559906006,-0.259963423013687,0.196941986680031,-0.954859972000122,-0.18939371407032,0.228850737214088,-0.954859972000122,-0.18939371407032,0.228850737214088,-0.98869913816452,-0.015693636611104,0.149089559912682,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.98869913816452,-0.015693636611104,0.149089559912682,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.985658526420593,-0.13404954969883,0.10250848531723,-0.98869913816452,-0.015693636611104,0.149089559912682,-0.954859972000122,-0.18939371407032,0.228850737214088,
  1766. -0.975169479846954,-0.023592809215188,0.220199555158615,-0.975169479846954,-0.023592809215188,0.220199555158615,-0.969105064868927,0.220609292387962,0.110304646193981,-0.98869913816452,-0.015693636611104,0.149089559912682,-0.993605554103851,0.102514855563641,0.0473145507276058,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.98869913816452,-0.015693636611104,0.149089559912682,-0.969105064868927,0.220609292387962,0.110304646193981,-0.993605554103851,0.102514855563641,0.0473145507276058,-0.98869913816452,-0.015693636611104,0.149089559912682,-0.969105064868927,0.220609292387962,0.110304646193981,-0.994719624519348,0.0947351977229118,-0.0394730009138584,-0.993605554103851,0.102514855563641,0.0473145507276058,-0.994719624519348,0.0947351977229118,-0.0394730009138584,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.993605554103851,0.102514855563641,0.0473145507276058,-0.994719624519348,0.0947351977229118,-0.0394730009138584,-0.969105064868927,0.220609292387962,0.110304646193981,-0.963381409645081,0.260586768388748,-0.0631725490093231,-0.987533092498779,0.0474015884101391,-0.150105029344559,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.985658526420593,-0.10250848531723,-0.13404954969883,-0.994719624519348,0.0947351977229118,-0.0394730009138584,-0.985658526420593,-0.10250848531723,-0.13404954969883,-0.994347870349884,-0.078916497528553,-0.0710248425602913,-0.910230994224548,0.0706213638186455,-0.408034563064575,-0.987533092498779,0.0474015884101391,-0.150105029344559,-0.985658526420593,-0.10250848531723,-0.13404954969883,-0.976347684860229,0.0393688566982746,-0.212591841816902,-0.994719624519348,0.0947351977229118,-0.0394730009138584,-0.963381409645081,0.260586768388748,-0.0631725490093231,-0.985658526420593,-0.10250848531723,-0.13404954969883,-0.994719624519348,0.0947351977229118,-0.0394730009138584,-0.976347684860229,0.0393688566982746,-0.212591841816902,-0.985658526420593,-0.10250848531723,-0.13404954969883,-0.976347684860229,0.0393688566982746,-0.212591841816902,-0.910230994224548,0.0706213638186455,-0.408034563064575,
  1767. -0.963381409645081,0.260586768388748,-0.0631725490093231,-0.96119624376297,0.00787865743041039,-0.275752991437912,-0.976347684860229,0.0393688566982746,-0.212591841816902,-0.96119624376297,0.00787865743041039,-0.275752991437912,-0.910230994224548,0.0706213638186455,-0.408034563064575,-0.976347684860229,0.0393688566982746,-0.212591841816902,-0.994595766067505,-0.0157872345298529,-0.102617025375366,-0.971823513507843,0.181723102927208,-0.150119081139565,-0.980459988117218,0.0156873594969511,-0.196091994643211,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.994595766067505,-0.0157872345298529,-0.102617025375366,-0.980459988117218,0.0156873594969511,-0.196091994643211,-0.971823513507843,0.181723102927208,-0.150119081139565,-0.994595766067505,-0.0157872345298529,-0.102617025375366,-0.989552557468414,0.125657469034195,-0.0706823170185089,-0.954028487205505,0.299612253904343,-0.00788453221321106,-0.971823513507843,0.181723102927208,-0.150119081139565,-0.989552557468414,0.125657469034195,-0.0706823170185089,-0.994595766067505,-0.0157872345298529,-0.102617025375366,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.969225406646729,-0.189117163419724,-0.157597616314888,-0.989552557468414,0.125657469034195,-0.0706823170185089,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.954028487205505,0.299612253904343,-0.00788453221321106,-0.941039025783539,0.235259756445885,0.243101730942726,-0.954028487205505,0.299612253904343,-0.00788453221321106,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.989552557468414,0.125657469034195,-0.0706823170185089,-0.994595766067505,-0.0157872345298529,-0.102617025375366,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.989552557468414,0.125657469034195,-0.0706823170185089,-0.999938011169434,-0.0078735277056694,0.0078735277056694,
  1768. -0.994595766067505,-0.0157872345298529,-0.102617025375366,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.941039025783539,0.235259756445885,0.243101730942726,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.989461004734039,0.141351565718651,0.0314114615321159,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.96125590801239,0.141824632883072,0.236374408006668,-0.941039025783539,0.235259756445885,0.243101730942726,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.990071713924408,-0.125723391771317,-0.0628616958856583,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.997529208660126,0.0314182415604591,0.0628364831209183,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.96125590801239,0.141824632883072,0.236374408006668,-0.985352337360382,0.0945938304066658,0.141890734434128,-0.997529208660126,0.0314182415604591,0.0628364831209183,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.942779958248138,-0.274977475404739,-0.188555985689163,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.999938011169434,0.0078735277056694,-0.0078735277056694,
  1769. -0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.997529208660126,0.0314182415604591,0.0628364831209183,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.977257013320923,-0.157622098922729,-0.141859874129295,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.952726364135742,-0.259834468364716,-0.157475426793098,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.96125590801239,0.141824632883072,0.236374408006668,-0.997529208660126,0.0314182415604591,0.0628364831209183,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.997529208660126,0.0314182415604591,0.0628364831209183,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.96125590801239,0.141824632883072,0.236374408006668,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.972795903682709,0.109831795096397,0.203973323106766,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.999938011169434,0.0078735277056694,-0.0078735277056694,-0.99277251958847,-0.110308051109314,0.0472748801112175,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.989918947219849,-0.00785649940371513,0.141416981816292,-0.972795903682709,0.109831795096397,0.203973323106766,-0.986057102680206,0.0867730304598808,0.141992211341858,-0.972795903682709,0.109831795096397,0.203973323106766,
  1770. -0.989918947219849,-0.00785649940371513,0.141416981816292,-0.978229522705078,-0.0315557904541492,0.205112636089325,-0.994347870349884,0.078916497528553,-0.0710248425602913,-0.970854341983795,0.228900596499443,0.0710381120443344,-0.980490148067474,0.172566279768944,-0.0941270589828491,-0.969195246696472,0.0315185450017452,-0.244268715381622,-0.994347870349884,0.078916497528553,-0.0710248425602913,-0.980490148067474,0.172566279768944,-0.0941270589828491,-0.970854341983795,0.228900596499443,0.0710381120443344,-0.994347870349884,0.078916497528553,-0.0710248425602913,-0.989064633846283,0.133445218205452,0.0627977550029755,-0.955306172370911,0.165796935558319,0.24474786221981,-0.970854341983795,0.228900596499443,0.0710381120443344,-0.989064633846283,0.133445218205452,0.0627977550029755,-0.994347870349884,0.078916497528553,-0.0710248425602913,-0.969195246696472,0.0315185450017452,-0.244268715381622,-0.989827394485474,-0.0157115459442139,-0.141403913497925,-0.941357553005219,0.007844646461308,-0.337319761514664,-0.989827394485474,-0.0157115459442139,-0.141403913497925,-0.969195246696472,0.0315185450017452,-0.244268715381622,-0.989064633846283,0.133445218205452,0.0627977550029755,-0.988455832004547,0.0549142137169838,0.141207963228226,-0.955306172370911,0.165796935558319,0.24474786221981,-0.941502332687378,-0.0706126689910889,0.329525798559189,-0.955306172370911,0.165796935558319,0.24474786221981,-0.988455832004547,0.0549142137169838,0.141207963228226,-0.989064633846283,0.133445218205452,0.0627977550029755,-0.994347870349884,0.078916497528553,-0.0710248425602913,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.988455832004547,0.0549142137169838,0.141207963228226,-0.989064633846283,0.133445218205452,0.0627977550029755,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.994347870349884,0.078916497528553,-0.0710248425602913,-0.989827394485474,-0.0157115459442139,-0.141403913497925,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.941502332687378,-0.0706126689910889,0.329525798559189,
  1771. -0.988455832004547,0.0549142137169838,0.141207963228226,-0.985474705696106,-0.0630703791975975,0.157675951719284,-0.985474705696106,-0.0630703791975975,0.157675951719284,-0.988455832004547,0.0549142137169838,0.141207963228226,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.985474705696106,-0.0630703791975975,0.157675951719284,-0.959589302539825,-0.125847771763802,0.251695543527603,-0.941502332687378,-0.0706126689910889,0.329525798559189,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.989827394485474,-0.0157115459442139,-0.141403913497925,-0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.989827394485474,-0.0157115459442139,-0.141403913497925,-0.941357553005219,0.007844646461308,-0.337319761514664,-0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.99771386384964,-0.0392800718545914,0.054992102086544,-0.985474705696106,-0.0630703791975975,0.157675951719284,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.959589302539825,-0.125847771763802,0.251695543527603,-0.985474705696106,-0.0630703791975975,0.157675951719284,-0.99771386384964,-0.0392800718545914,0.054992102086544,-0.976620197296143,0.0315038748085499,-0.212651163339615,-0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.941357553005219,0.007844646461308,-0.337319761514664,-0.941357553005219,0.007844646461308,-0.337319761514664,-0.951753377914429,-0.00786573067307472,-0.306763470172882,-0.976620197296143,0.0315038748085499,-0.212651163339615,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.976620197296143,0.0315038748085499,-0.212651163339615,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.99771386384964,-0.0392800718545914,0.054992102086544,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.951753377914429,-0.00786573067307472,-0.306763470172882,
  1772. -0.992218255996704,-0.102371722459793,-0.0708727315068245,-0.976620197296143,0.0315038748085499,-0.212651163339615,-0.976620197296143,0.0315038748085499,-0.212651163339615,-0.992218255996704,-0.102371722459793,-0.0708727315068245,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.987132668495178,-0.150044173002243,-0.0552794300019741,-0.992218255996704,-0.102371722459793,-0.0708727315068245,-0.951753377914429,-0.00786573067307472,-0.306763470172882,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.992218255996704,-0.102371722459793,-0.0708727315068245,-0.987132668495178,-0.150044173002243,-0.0552794300019741,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.959589302539825,-0.125847771763802,0.251695543527603,-0.99771386384964,-0.0392800718545914,0.054992102086544,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.99771386384964,-0.0392800718545914,0.054992102086544,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.959589302539825,-0.125847771763802,0.251695543527603,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.972795903682709,-0.109831795096397,0.203973323106766,-0.992218255996704,-0.102371722459793,-0.0708727315068245,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.992218255996704,-0.102371722459793,-0.0708727315068245,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.972795903682709,-0.109831795096397,0.203973323106766,-0.986149191856384,-0.0710027366876602,0.149894669651985,-0.972795903682709,-0.109831795096397,0.203973323106766,-0.989552557468414,-0.125657469034195,0.0706823170185089,-0.978077471256256,-0.189305320382118,0.0867649391293526,-0.993945598602295,0.0394422858953476,-0.102549932897091,
  1773. -0.970763623714447,0.236771613359451,-0.0394619330763817,-0.981456816196442,0.109923161566257,-0.157033085823059,-0.970280230045319,-0.0788845717906952,-0.228765249252319,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.981456816196442,0.109923161566257,-0.157033085823059,-0.970763623714447,0.236771613359451,-0.0394619330763817,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.954978823661804,0.260448753833771,0.142062962055206,-0.970763623714447,0.236771613359451,-0.0394619330763817,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.970280230045319,-0.0788845717906952,-0.228765249252319,-0.990500032901764,-0.0707499980926514,-0.11791667342186,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.990500032901764,-0.0707499980926514,-0.11791667342186,-0.970280230045319,-0.0788845717906952,-0.228765249252319,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.98869913816452,0.109855458140373,0.102008640766144,-0.954978823661804,0.260448753833771,0.142062962055206,-0.940952301025391,0.078412689268589,0.329333275556564,-0.954978823661804,0.260448753833771,0.142062962055206,-0.98869913816452,0.109855458140373,0.102008640766144,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.98869913816452,0.109855458140373,0.102008640766144,-0.988820910453796,0.149107918143272,3.31086087753168e-017,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.993945598602295,0.0394422858953476,-0.102549932897091,-0.990500032901764,-0.0707499980926514,-0.11791667342186,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.940952301025391,0.078412689268589,0.329333275556564,-0.98869913816452,0.109855458140373,0.102008640766144,-0.986057102680206,0.015776913613081,0.165657594799995,-0.986057102680206,0.015776913613081,0.165657594799995,
  1774. -0.98869913816452,0.109855458140373,0.102008640766144,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.986057102680206,0.015776913613081,0.165657594799995,-0.961226165294647,-6.12313764823029e-017,0.275761604309082,-0.940952301025391,0.078412689268589,0.329333275556564,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.990500032901764,-0.0707499980926514,-0.11791667342186,-0.99771386384964,-0.0392800718545914,-0.054992102086544,-0.990500032901764,-0.0707499980926514,-0.11791667342186,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.99771386384964,-0.0392800718545914,-0.054992102086544,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.986057102680206,0.015776913613081,0.165657594799995,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.961226165294647,-6.12313764823029e-017,0.275761604309082,-0.986057102680206,0.015776913613081,0.165657594799995,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.976771771907806,-0.0630175322294235,-0.204806983470917,-0.99771386384964,-0.0392800718545914,-0.054992102086544,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.941502332687378,-0.141225337982178,-0.305988252162933,-0.952992260456085,-0.14176744222641,-0.267782926559448,-0.976771771907806,-0.0630175322294235,-0.204806983470917,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.99771386384964,-0.0392800718545914,-0.054992102086544,-0.99771386384964,-0.0392800718545914,-0.054992102086544,-0.976771771907806,-0.0630175322294235,-0.204806983470917,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.952992260456085,-0.14176744222641,-0.267782926559448,-0.992864966392517,-0.118198208510876,-0.0157597605139017,-0.976771771907806,-0.0630175322294235,-0.204806983470917,-0.976771771907806,-0.0630175322294235,-0.204806983470917,
  1775. -0.992864966392517,-0.118198208510876,-0.0157597605139017,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.987317442893982,-0.157970786094666,0.0157970786094666,-0.992864966392517,-0.118198208510876,-0.0157597605139017,-0.952992260456085,-0.14176744222641,-0.267782926559448,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.992864966392517,-0.118198208510876,-0.0157597605139017,-0.987317442893982,-0.157970786094666,0.0157970786094666,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.961226165294647,-6.12313764823029e-017,0.275761604309082,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.961226165294647,-6.12313764823029e-017,0.275761604309082,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.97369521856308,-0.00785238109529018,0.227719038724899,-0.992864966392517,-0.118198208510876,-0.0157597605139017,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.992864966392517,-0.118198208510876,-0.0157597605139017,-0.979327261447906,-0.126364797353745,0.157956004142761,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.97369521856308,-0.00785238109529018,0.227719038724899,-0.986179888248444,-3.6787954462067e-017,0.165678218007088,-0.97369521856308,-0.00785238109529018,0.227719038724899,-0.989918947219849,-0.0785649940371513,0.117847494781017,-0.979327261447906,-0.126364797353745,0.157956004142761
  1776. }
  1777. NormalsW: *795 {
  1778. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1779. }
  1780. }
  1781. LayerElementBinormal: 0 {
  1782. Version: 102
  1783. Name: "UVmap_0"
  1784. MappingInformationType: "ByPolygonVertex"
  1785. ReferenceInformationType: "Direct"
  1786. Binormals: *2385 {
  1787. a: 0.14810349047184,-0.923571348190308,0.353668361902237,0.196296885609627,-0.908769726753235,0.368245959281921,-0.0418165437877178,-0.95666366815567,0.288177102804184,0.147483393549919,-0.720085084438324,-0.678031146526337,0.176619961857796,-0.709027230739594,-0.682704746723175,0.255133271217346,-0.675313591957092,-0.691996097564697,0.0475345812737942,-0.312171250581741,0.948835968971252,-0.224589049816132,-0.348877817392349,0.909859359264374,-0.322279661893845,-0.355759799480438,0.877251863479614,0.1480373442173,-0.721064567565918,-0.676868379116058,0.0855716615915298,-0.742255210876465,-0.664631366729736,0.176836624741554,-0.710113823413849,-0.681518316268921,0.0735921487212181,-0.764261424541473,-0.64069390296936,0.1805469840765,-0.728797614574432,-0.660497486591339,0.0947227478027344,-0.758071780204773,-0.645255744457245,0.121311813592911,-0.801571369171143,-0.585462927818298,0.0502446591854095,-0.822438538074493,-0.566630661487579,0.0881998017430305,-0.811903059482574,-0.577091097831726,0.11988776922226,-0.936848938465118,0.32854375243187,0.19757741689682,-0.913178503513336,0.35646641254425,0.0661420375108719,-0.949080646038055,0.308011680841446,0.135323584079742,-0.937539756298065,-0.320479065179825,0.129896193742752,-0.938199281692505,-0.320794582366943,0.216313362121582,-0.924253702163696,-0.314584940671921,0.0922558009624481,-0.991014778614044,0.0968431308865547,0.0366918481886387,-0.996170699596405,0.0793579816818237,0.196767315268517,-0.971914350986481,0.129093483090401,0.207586362957954,-0.796255648136139,-0.568229615688324,0.371438086032867,-0.756914556026459,-0.53769326210022,0.189279779791832,-0.799145221710205,-0.570561170578003,0.119788452982903,-0.958457231521606,-0.258863866329193,-0.0294286198914051,-0.950330138206482,-0.309849172830582,0.110468737781048,-0.958650887012482,-0.262269139289856,0.0203552823513746,-0.905042469501495,-0.42483377456665,0.146334916353226,-0.915890753269196,-0.37380513548851,0.0446937493979931,-0.908447444438934,-0.415603041648865,0.151274248957634,-0.90584808588028,-0.395670861005783,
  1788. 0.13461822271347,-0.907994627952576,-0.396766692399979,0.0421608053147793,-0.915201425552368,-0.400785237550735,0.0492337644100189,-0.89563512802124,-0.44205629825592,0.173520803451538,-0.905569434165955,-0.387084901332855,0.0313275307416916,-0.892846584320068,-0.449270069599152,0.12811104953289,-0.921738743782043,-0.366040050983429,0.0729072093963623,-0.92619252204895,-0.369935065507889,0.132774174213409,-0.921230375766754,-0.365657866001129,0.0357812121510506,-0.930992186069489,-0.363281399011612,0.132880300283432,-0.920524954795837,-0.367391884326935,0.0728402361273766,-0.928052127361298,-0.365258425474167,0.100800238549709,-0.920859634876251,-0.376638770103455,0.0730576887726784,-0.921719968318939,-0.380913227796555,0.12708468735218,-0.919369518756866,-0.372302532196045,0.132346376776695,-0.978582262992859,-0.157674327492714,0.156968995928764,-0.973961591720581,-0.163583144545555,0.183461546897888,-0.968242704868317,-0.169846951961517,0.0728970542550087,-0.926479399204254,-0.369217932224274,0.108444727957249,-0.922337174415588,-0.370855689048767,0.0364205054938793,-0.929487466812134,-0.367051303386688,0.073027178645134,-0.922662973403931,-0.378629416227341,0.101194255053997,-0.921800136566162,-0.374224811792374,0.108481623232365,-0.921454191207886,-0.373033493757248,0.188414037227631,-0.970267236232758,-0.151926562190056,0.10278732329607,-0.986217081546783,-0.129656165838242,0.134783744812012,-0.981207668781281,-0.138075336813927,0.108640000224113,-0.917423844337463,-0.382793456315994,0.0995350033044815,-0.91780823469162,-0.384344875812531,0.0634074807167053,-0.918559610843658,-0.390163958072662,0.0695909410715103,-0.933002352714539,-0.353077799081802,0.123303472995758,-0.921916544437408,-0.367241531610489,0.0449730455875397,-0.937071561813354,-0.346228778362274,0.0399682819843292,-0.931499421596527,-0.361540257930756,-0.057815745472908,-0.940836668014526,-0.333891957998276,0.0670369416475296,-0.927188694477081,-0.36854761838913,-0.0695984810590744,-0.907715737819672,-0.413773268461227,0.108680799603462,-0.916315138339996,-0.385428458452225,
  1789. 0.0627563446760178,-0.916966736316681,-0.393997192382813,-0.0580418258905411,-0.940278768539429,-0.335420608520508,0.03951271250844,-0.930979549884796,-0.362927049398422,-0.08879154920578,-0.941193699836731,-0.325991600751877,-0.0993368998169899,-0.922069668769836,-0.374058425426483,-0.245868757367134,-0.900335073471069,-0.359089583158493,-0.0640944391489029,-0.924236238002777,-0.376403301954269,-0.110918700695038,-0.915294170379639,-0.387212961912155,0.108658090233803,-0.916936278343201,-0.383954852819443,-0.065815344452858,-0.919274151325226,-0.38807675242424,-0.245571300387383,-0.895457625389099,-0.371282368898392,-0.111037522554398,-0.917494356632233,-0.381935626268387,-0.0652026534080505,-0.921061635017395,-0.383919596672058,-0.24483922123909,-0.885109186172485,-0.395772039890289,-0.058812715113163,-0.920100092887878,-0.387242645025253,-0.110830567777157,-0.913685262203217,-0.391019225120544,-0.0604991614818573,-0.927592992782593,-0.368661254644394,0.108433723449707,-0.92259681224823,-0.370212465524673,-0.111370518803597,-0.923881649971008,-0.366113990545273,-0.0571897029876709,-0.912642598152161,-0.404738038778305,-0.244369179010391,-0.879227936267853,-0.408952414989471,-0.183509409427643,-0.893799424171448,-0.409202754497528,0.0343699418008327,-0.934253334999084,-0.354950129985809,0.108282789587975,-0.925999581813812,-0.361662417650223,0.15109695494175,-0.918805420398712,-0.364645451307297,-0.0620078183710575,-0.934065639972687,-0.351676642894745,0.151349931955338,-0.91715544462204,-0.368672072887421,0.108370780944824,-0.924050569534302,-0.366587489843369,0.214730635285378,-0.85113799571991,-0.47901451587677,0.0732081383466721,-0.811804831027985,-0.579321622848511,0.15898385643959,-0.838661670684814,-0.520932614803314,0.0866970270872116,-0.91320812702179,-0.398164093494415,-0.0555820167064667,-0.905026495456696,-0.421708315610886,-0.177934020757675,-0.882675349712372,-0.434998780488968,0.152695715427399,-0.907725989818573,-0.390791088342667,-0.0573628433048725,-0.91344940662384,-0.402889251708984,0.0863446220755577,-0.913945376873016,-0.396545678377151,
  1790. 0.154879093170166,-0.889573097229004,-0.429735034704208,0.0970265120267868,-0.889957189559937,-0.445603221654892,0.188194289803505,-0.887882709503174,-0.419818073511124,-0.153173476457596,-0.828615605831146,-0.538455367088318,0.16089278459549,-0.886327743530273,-0.434208035469055,0.0999130979180336,-0.882873058319092,-0.458860129117966,0.156035721302032,-0.895920753479004,-0.415907293558121,0.183333933353424,-0.89393937587738,-0.408975720405579,0.0937134101986885,-0.897766351699829,-0.430387526750565,0.14772567152977,-0.498856157064438,0.854002177715302,0.196102365851402,-0.478118717670441,0.856122851371765,-0.0435893535614014,-0.566022157669067,0.82323682308197,0.147729530930519,-0.985953092575073,-0.0779269114136696,0.17885123193264,-0.979823052883148,-0.089213527739048,0.255577474832535,-0.9596928358078,-0.11691876500845,0.0453389398753643,0.350430548191071,0.935490667819977,-0.225170731544495,0.29758495092392,0.927761435508728,-0.321327745914459,0.272213488817215,0.906999588012695,0.148277714848518,-0.985989809036255,-0.0764051228761673,0.0888754799962044,-0.994538724422455,-0.054716769605875,0.179065629839897,-0.979928612709045,-0.0876100584864616,0.0687963217496872,-0.997442066669464,-0.0194014795124531,0.182741850614548,-0.981358468532562,-0.0595076307654381,0.0979535505175591,-0.994749009609222,-0.0296573415398598,0.124253079295158,-0.99126660823822,0.0441778972744942,0.0499169938266277,-0.996066153049469,0.0732156410813332,0.0833661630749702,-0.994697570800781,0.0602228604257107,0.121386043727398,-0.524169027805328,0.842918932437897,0.197420507669449,-0.488961040973663,0.849671840667725,0.0649976283311844,-0.547668635845184,0.834166944026947,0.130227476358414,-0.9323610663414,0.337259113788605,0.127882793545723,-0.932660460472107,0.337328314781189,0.21786068379879,-0.917309939861298,0.333285689353943,0.0907494053244591,-0.712549030780792,0.695728778839111,0.0363343022763729,-0.727165102958679,0.685500383377075,0.198646560311317,-0.676310241222382,0.709326505661011,0.204770848155022,-0.977237939834595,0.0554535128176212,
  1791. 0.373790502548218,-0.925904273986816,0.0546089671552181,0.190207406878471,-0.980177044868469,0.0554456487298012,0.120063424110413,-0.909359455108643,0.398309230804443,-0.0341000333428383,-0.935439825057983,0.351837396621704,0.108800947666168,-0.912110149860382,0.395243465900421,0.0159981250762939,-0.972175598144531,0.233706593513489,0.146819576621056,-0.948070168495178,0.282147288322449,0.0442317798733711,-0.9686279296875,0.244547516107559,0.151842162013054,-0.953967690467834,0.258630305528641,0.132555231451988,-0.956685841083527,0.259193480014801,0.0417347773909569,-0.964566349983215,0.260518610477448,0.0486627966165543,-0.975215077400208,0.215841218829155,0.175641462206841,-0.947846591472626,0.265964090824127,0.0270713865756989,-0.977978765964508,0.206941306591034,0.122954115271568,-0.94857382774353,0.291702002286911,0.0699039101600647,-0.954044163227081,0.291398942470551,0.130733191967011,-0.947540879249573,0.291676610708237,0.0355178229510784,-0.953386247158051,0.299654960632324,0.130824878811836,-0.948008716106415,0.290110796689987,0.0698323994874954,-0.952463865280151,0.296540409326553,0.103223331272602,-0.953518271446228,0.283104032278061,0.0700579062104225,-0.95751029253006,0.279760837554932,0.121843859553337,-0.950798153877258,0.284845858812332,0.134352117776871,-0.861784040927887,0.48916032910347,0.152276799082756,-0.861877262592316,0.483714252710342,0.183417081832886,-0.861315667629242,0.47380742430687,0.0698889493942261,-0.953712105751038,0.29248720407486,0.110265344381332,-0.951231241226196,0.288098216056824,0.0361403301358223,-0.954573452472687,0.295776069164276,0.0700274854898453,-0.956818222999573,0.282126128673553,0.103615388274193,-0.952736973762512,0.285580217838287,0.110297933220863,-0.95179146528244,0.286229431629181,0.188381910324097,-0.85167384147644,0.48904412984848,0.100467205047607,-0.850030124187469,0.517063856124878,0.136756151914597,-0.851584434509277,0.50606495141983,0.110466785728931,-0.954756736755371,0.276110112667084,0.101970963180065,-0.955960690975189,0.275211185216904,0.0608300268650055,-0.960773348808289,0.270581245422363,
  1792. 0.0671928972005844,-0.948481321334839,0.309626162052155,0.12311977148056,-0.948790311813354,0.290926873683929,0.0494284927845001,-0.94769561290741,0.315324932336807,0.0444732122123241,-0.95291268825531,0.299965798854828,-0.0606088005006313,-0.942227125167847,0.329445987939835,0.0646303370594978,-0.953654885292053,0.293880075216293,-0.0725036337971687,-0.966763556003571,0.245176270604134,0.110509693622589,-0.955528736114502,0.273409128189087,0.0601681210100651,-0.961946845054626,0.266529619693756,-0.0608343817293644,-0.942750930786133,0.327902138233185,0.0440205261111259,-0.953374981880188,0.298560351133347,-0.0896198377013206,-0.937838077545166,0.3353031873703,-0.0999684110283852,-0.95310652256012,0.285647094249725,-0.246185138821602,-0.926775097846985,0.283691316843033,-0.0669559165835381,-0.95611983537674,0.285222291946411,-0.111551433801651,-0.956061959266663,0.271112591028214,0.110489547252655,-0.955165326595306,0.2746841609478,-0.0686882361769676,-0.959598243236542,0.272861361503601,-0.245864242315292,-0.930613398551941,0.271126419305801,-0.111649625003338,-0.954471230506897,0.276621073484421,-0.0680689737200737,-0.958370685577393,0.277294844388962,-0.245083928108215,-0.937896966934204,0.245526254177094,-0.0566086024045944,-0.959945499897003,0.274408519268036,-0.11147728562355,-0.957205533981323,0.267077773809433,-0.0582271218299866,-0.95424473285675,0.293303161859512,0.110251627862453,-0.950996458530426,0.288877665996552,-0.111920088529587,-0.949551701545715,0.292959988117218,-0.055023118853569,-0.965098083019257,0.256043374538422,-0.244588583707809,-0.941565632820129,0.231582805514336,-0.184117779135704,-0.953037321567535,0.240459114313126,0.0341424159705639,-0.950710654258728,0.308194398880005,0.110094912350178,-0.948355376720428,0.297491669654846,0.156297579407692,-0.944155693054199,0.290071099996567,-0.0596814826130867,-0.948726415634155,0.310413420200348,0.156531542539597,-0.945354998111725,0.286010265350342,0.110187456011772,-0.94990599155426,0.292467564344406,0.216995730996132,-0.962804079055786,0.161000683903694,
  1793. 0.0720915868878365,-0.995841324329376,0.055703803896904,0.163487643003464,-0.978956460952759,0.122131139039993,0.0875109434127808,-0.961249172687531,0.261422783136368,-0.0534719303250313,-0.969741106033325,0.238208219408989,-0.178437232971191,-0.960541188716888,0.213356196880341,0.157766342163086,-0.951638579368591,0.263616740703583,-0.0551830753684044,-0.964597225189209,0.257889837026596,0.0871803462505341,-0.960837483406067,0.263041615486145,0.159776717424393,-0.961664855480194,0.222872376441956,0.0978193059563637,-0.972813725471497,0.209916219115257,0.190611571073532,-0.954575538635254,0.229025632143021,-0.15327063202858,-0.983221113681793,0.0989160016179085,0.162468165159225,-0.962576568126678,0.216911315917969,0.100679807364941,-0.975570678710938,0.195257365703583,0.157698303461075,-0.958649098873138,0.23690339922905,0.185741528868675,-0.952542901039124,0.241168275475502,0.0945154428482056,-0.969380557537079,0.226645484566689,0.182941615581512,-0.828840732574463,0.528730034828186,0.226405173540115,-0.811197102069855,0.539166152477264,-0.0104299793019891,-0.883009672164917,0.469239115715027,0.182147562503815,-0.832293927669525,-0.523554265499115,0.211609691381454,-0.820875883102417,-0.530456721782684,0.286424160003662,-0.78753262758255,-0.545668005943298,0.0479142554104328,-0.118480414152145,0.991799771785736,-0.222109660506248,-0.172769218683243,0.959592700004578,-0.314337074756622,-0.188937723636627,0.930319726467133,0.1827312707901,-0.833001852035522,-0.522223353385925,0.123848766088486,-0.853071391582489,-0.506883263587952,0.211853265762329,-0.821700394153595,-0.529080986976624,0.107143886387348,-0.872000396251678,-0.477635383605957,0.216020673513412,-0.835762619972229,-0.504812777042389,0.133390560746193,-0.864416360855103,-0.484759151935577,0.160917699337006,-0.894238710403442,-0.417663276195526,0.084415428340435,-0.915594100952148,-0.393143147230148,0.122926563024521,-0.905656039714813,-0.405803173780441,0.153032720088959,-0.848848640918732,0.506000936031342,0.22801074385643,-0.817836999893188,0.528350055217743,
  1794. 0.0996765941381454,-0.867051541805267,0.488145649433136,0.17220775783062,-0.976438522338867,-0.130047559738159,0.16679473221302,-0.977353930473328,-0.130226299166679,0.25511360168457,-0.958562195301056,-0.126789420843124,0.128627553582191,-0.948562800884247,0.289281100034714,0.0763194113969803,-0.958700299263,0.273987501859665,0.23372408747673,-0.91896116733551,0.317621648311615,0.244568288326263,-0.883050322532654,-0.400510251522064,0.408028215169907,-0.831083416938782,-0.377906650304794,0.226493313908577,-0.887079000473022,-0.402233242988586,0.160739153623581,-0.984859585762024,-0.0649208948016167,0.00521709444001317,-0.992913246154785,-0.118727304041386,0.152898356318474,-0.98591947555542,-0.0677129402756691,0.054694589227438,-0.969127595424652,-0.240416988730431,0.186512231826782,-0.964714050292969,-0.185849651694298,0.0832037404179573,-0.969847798347473,-0.229069039225578,0.191346690058708,-0.95882922410965,-0.209840357303619,0.170854315161705,-0.962515830993652,-0.21064718067646,0.0808313563466072,-0.973682940006256,-0.213091135025024,0.0873986780643463,-0.96230411529541,-0.257550567388535,0.213702440261841,-0.956063628196716,-0.200682818889618,0.0655339807271957,-0.961515486240387,-0.266820996999741,0.164820417761803,-0.970152676105499,-0.177870705723763,0.105197936296463,-0.977837979793549,-0.181014835834503,0.169316753745079,-0.96942663192749,-0.177606031298637,0.0748517066240311,-0.982035994529724,-0.173212394118309,0.169394537806511,-0.969121873378754,-0.179188087582588,0.105169519782066,-0.978882253170013,-0.175296351313591,0.140332013368607,-0.972046136856079,-0.188237369060516,0.105247043073177,-0.975474953651428,-0.193317487835884,0.163727596402168,-0.969060599803925,-0.184701949357986,0.171594396233559,-0.984443187713623,0.0377748347818851,0.193864941596985,-0.980516672134399,0.0316783115267754,0.220232635736465,-0.975142240524292,0.0243996009230614,0.105190470814705,-0.978128492832184,-0.179442882537842,0.146136954426765,-0.972327291965485,-0.182273358106613,0.0754537805914879,-0.981277704238892,-0.177202835679054,
  1795. 0.105238705873489,-0.975950419902802,-0.190907046198845,0.140734747052193,-0.972478926181793,-0.185684263706207,0.146169155836105,-0.971833944320679,-0.184860900044441,0.225148901343346,-0.973401069641113,0.0424084179103374,0.136353328824043,-0.988295197486877,0.0684134885668755,0.173912435770035,-0.983079254627228,0.0575299151241779,0.146287858486176,-0.969790279865265,-0.195209220051765,0.139042437076569,-0.970622837543488,-0.196363553404808,0.0954965874552727,-0.974500119686127,-0.20305161178112,0.102481074631214,-0.981637060642242,-0.160892158746719,0.159736558794975,-0.970947623252869,-0.178171038627625,0.0839790478348732,-0.98430609703064,-0.155206516385078,0.0788858309388161,-0.982051610946655,-0.171323344111443,-0.0202698167413473,-0.989675104618073,-0.141888737678528,0.099787674844265,-0.979080617427826,-0.177323952317238,-0.0325088128447533,-0.973220825195313,-0.227561697363853,0.146317586302757,-0.969210982322693,-0.198043957352638,0.0947780683636665,-0.973673939704895,-0.207306906580925,-0.0205006208270788,-0.989437341690063,-0.143504351377487,0.0784203633666039,-0.981831848621368,-0.172790199518204,-0.0530171543359756,-0.989625930786133,-0.133527755737305,-0.0640798881649971,-0.980583071708679,-0.185339152812958,-0.206098049879074,-0.962703943252563,-0.175285086035728,-0.0267625097185373,-0.98193097114563,-0.187337577342987,-0.0784783065319061,-0.976699769496918,-0.199747115373611,0.146299555897713,-0.969566226005554,-0.196310520172119,-0.0285512525588274,-0.97940868139267,-0.199858784675598,-0.205907821655273,-0.960310935974121,-0.188162088394165,-0.078524112701416,-0.97785872220993,-0.193975239992142,-0.0279122032225132,-0.980329275131226,-0.195385441184044,-0.205417811870575,-0.954994678497314,-0.213982701301575,-0.0167945586144924,-0.979948341846466,-0.198542714118958,-0.0784395113587379,-0.975743591785431,-0.204381793737412,-0.018278356641531,-0.983635067939758,-0.179243236780167,0.146129161119461,-0.972443759441376,-0.181657537817955,-0.0786419957876205,-0.981040120124817,-0.177131801843643,-0.0153446355834603,-0.975996315479279,-0.217246294021606,
  1796. -0.205087527632713,-0.951788365840912,-0.228118672966957,-0.145293220877647,-0.963334321975708,-0.225559055805206,0.0735170170664787,-0.983652710914612,-0.164385586977005,0.146006003022194,-0.974133551120758,-0.172470912337303,0.194673031568527,-0.964689016342163,-0.177419051527977,-0.0196256805211306,-0.986664950847626,-0.161577641963959,0.194890812039375,-0.963868796825409,-0.181588932871819,0.146077901124954,-0.973178863525391,-0.177719637751579,0.253402143716812,-0.919339299201965,-0.301003009080887,0.108914360404015,-0.906057715415955,-0.408897489309311,0.200624912977219,-0.917924165725708,-0.342293798923492,0.124169252812862,-0.969529688358307,-0.211173683404922,-0.0139442570507526,-0.971855044364929,-0.235166624188423,-0.139914765954018,-0.95728212594986,-0.253051251173019,0.196022868156433,-0.959057688713074,-0.20440998673439,-0.0154860503971577,-0.976396799087524,-0.215428754687309,0.123793013393879,-0.96998918056488,-0.209275603294373,0.197790339589119,-0.949085414409637,-0.245185390114784,0.134179919958115,-0.955611109733582,-0.262303620576859,0.22810098528862,-0.94446188211441,-0.236562415957451,-0.116329237818718,-0.923685014247894,-0.365066319704056,0.20135772228241,-0.946947634220123,-0.250490188598633,0.136972084641457,-0.951118052005768,-0.276791006326675,0.196891203522682,-0.95279985666275,-0.231098160147667,0.223412722349167,-0.948442339897156,-0.224820137023926,0.13097508251667,-0.960431218147278,-0.245799884200096,0.152310982346535,-0.970011532306671,0.189417734742165,0.195633232593536,-0.959092199802399,0.204620912671089,-0.0470513850450516,-0.99217289686203,0.11566799134016,0.149578392505646,-0.590571165084839,-0.793001890182495,0.177470862865448,-0.579338073730469,-0.7955322265625,0.261574357748032,-0.541799306869507,-0.798769295215607,0.0460999719798565,-0.472496539354324,0.880126118659973,-0.230566084384918,-0.50184029340744,0.833663940429688,-0.325732976198196,-0.502673923969269,0.800760209560394,0.150131464004517,-0.59173595905304,-0.792028546333313,0.0868143513798714,-0.615122437477112,-0.783637523651123,
  1797. 0.17768557369709,-0.580614268779755,-0.794553279876709,0.0747811496257782,-0.640999257564545,-0.763889908790588,0.181365057826042,-0.602685391902924,-0.777095258235931,0.0959548652172089,-0.634077787399292,-0.767292737960815,0.122483253479004,-0.687294661998749,-0.715977549552917,0.049733892083168,-0.711699783802032,-0.700721025466919,0.0894942283630371,-0.698914766311646,-0.709583699703217,0.114920794963837,-0.980596840381622,0.158817768096924,0.196934059262276,-0.961390137672424,0.192213803529739,0.0621706694364548,-0.988637864589691,0.13685829937458,0.137037545442581,-0.867452383041382,-0.478275179862976,0.125980690121651,-0.868652820587158,-0.479135870933533,0.216623827815056,-0.85552853345871,-0.47026053071022,0.0881098955869675,-0.993044853210449,-0.0780931934714317,0.0330662839114666,-0.994831085205078,-0.0960100665688515,0.192537099123001,-0.980342566967011,-0.043103288859129,0.208014726638794,-0.68543541431427,-0.697788059711456,0.371273875236511,-0.652102947235107,-0.660997331142426,0.187929645180702,-0.688106119632721,-0.700851261615753,0.117180302739143,-0.898839294910431,-0.422323077917099,-0.0307962261140347,-0.881823778152466,-0.47057232260704,0.110685802996159,-0.898552060127258,-0.424679726362228,0.0199224632233381,-0.817417919635773,-0.575700461864471,0.144194483757019,-0.83685290813446,-0.528095901012421,0.0465928912162781,-0.822830617427826,-0.566373407840729,0.149047568440437,-0.823649048805237,-0.547162652015686,0.130855455994606,-0.825703859329224,-0.54871666431427,0.0442212857306004,-0.831639409065247,-0.553552508354187,0.0510389395058155,-0.805644631385803,-0.590196549892426,0.176710158586502,-0.824886858463287,-0.536968410015106,0.031097050756216,-0.801205635070801,-0.59758049249649,0.129785940051079,-0.844018459320068,-0.520373463630676,0.0715514048933983,-0.847939372062683,-0.525242149829865,0.128950774669647,-0.844095408916473,-0.52045613527298,0.0379982553422451,-0.853597462177277,-0.519545614719391,0.129035219550133,-0.843328654766083,-0.521676778793335,0.0714930891990662,-0.85065758228302,-0.520836472511292,
  1798. 0.10316888988018,-0.841427683830261,-0.530429780483246,0.0716790556907654,-0.841560363769531,-0.535386264324188,0.128778785467148,-0.8406862616539,-0.525987386703491,0.133817359805107,-0.936028063297272,-0.325490921735764,0.158739924430847,-0.930341362953186,-0.330555140972137,0.184163227677345,-0.923859417438507,-0.33551099896431,0.0715411305427551,-0.848425924777985,-0.524457097053528,0.104543626308441,-0.844450175762177,-0.525332927703857,0.0386279448866844,-0.851450622081757,-0.52301037311554,0.0716535896062851,-0.84288489818573,-0.533301830291748,0.103555083274841,-0.842775285243988,-0.528210461139679,0.104602128267288,-0.842756628990173,-0.528033673763275,0.189161688089371,-0.928947985172272,-0.318235278129578,0.0981669500470161,-0.949561059474945,-0.297820538282394,0.136181563138962,-0.942028164863586,-0.306655257940292,0.104788646101952,-0.837077498435974,-0.536954998970032,0.101937852799892,-0.837109923362732,-0.537452936172485,0.0571458674967289,-0.8367018699646,-0.544669032096863,0.0639216303825378,-0.858764171600342,-0.508368134498596,0.123425111174583,-0.844105184078217,-0.521778345108032,0.0499037876725197,-0.8617182970047,-0.504926919937134,0.0449328757822514,-0.853615522384644,-0.51896196603775,-0.0603201538324356,-0.868802726268768,-0.491470754146576,0.061284851282835,-0.850322067737579,-0.522682130336761,-0.0722079277038574,-0.821687400341034,-0.565345942974091,0.10483880341053,-0.835469365119934,-0.539443969726563,0.0564497038722038,-0.834367632865906,-0.548310399055481,-0.0605480074882507,-0.86797958612442,-0.492895126342773,0.0444740876555443,-0.852856516838074,-0.520247995853424,-0.0883756801486015,-0.870249569416046,-0.484619081020355,-0.0989489853382111,-0.843123614788055,-0.528537333011627,-0.245702147483826,-0.824326455593109,-0.510016024112701,-0.0666654035449028,-0.844735085964203,-0.531016290187836,-0.111779130995274,-0.834061741828918,-0.540228128433228,0.104802198708057,-0.836646556854248,-0.537623524665833,-0.0683951675891876,-0.837751030921936,-0.541752219200134,-0.245397880673409,-0.817417144775391,-0.521161198616028,
  1799. -0.111868657171726,-0.837159276008606,-0.535396873950958,-0.0677762776613235,-0.840271234512329,-0.537913262844086,-0.244651943445206,-0.802986919879913,-0.543468058109283,-0.0584243163466454,-0.838918685913086,-0.541112005710602,-0.111710883677006,-0.831763923168182,-0.543773353099823,-0.0601042956113815,-0.849495530128479,-0.524161040782928,0.10453537851572,-0.844685673713684,-0.524955689907074,-0.112112984061241,-0.846202909946442,-0.520933091640472,-0.0568044856190681,-0.828544676303864,-0.557034134864807,-0.244174793362617,-0.794918954372406,-0.55541205406189,-0.182337000966072,-0.809417605400085,-0.558208167552948,0.0366250723600388,-0.858221173286438,-0.511971652507782,0.104351252317429,-0.849757730960846,-0.516742348670959,0.157936364412308,-0.84017288684845,-0.518811762332916,-0.0616091676056385,-0.858805954456329,-0.508583188056946,0.158186033368111,-0.83791595697403,-0.52237343788147,0.104455567896366,-0.846926987171173,-0.521347999572754,0.217995494604111,-0.756043791770935,-0.617151379585266,0.0744694545865059,-0.699435889720917,-0.710805058479309,0.165715575218201,-0.737978756427765,-0.65416032075882,0.0864408612251282,-0.830196917057037,-0.550727784633636,-0.0552012622356415,-0.818113684654236,-0.57240092754364,-0.176649644970894,-0.794062554836273,-0.581600844860077,0.159498944878578,-0.825334787368774,-0.541648089885712,-0.0569737777113914,-0.829636752605438,-0.555389046669006,0.0860783755779266,-0.831212282180786,-0.549251079559326,0.161654204130173,-0.801513493061066,-0.575711846351624,0.0969886556267738,-0.799042820930481,-0.593400180339813,0.191773146390915,-0.801429271697998,-0.566510558128357,-0.151438757777214,-0.723213851451874,-0.673816025257111,0.160343691706657,-0.7974454164505,-0.581696510314941,0.0999188423156738,-0.789817094802856,-0.605148911476135,0.15552531182766,-0.810116946697235,-0.565263092517853,0.186900958418846,-0.809216141700745,-0.556989550590515,0.0935966521501541,-0.80940705537796,-0.579741418361664,-0.0624064020812511,-0.698993742465973,0.71239960193634,-0.234541103243828,-0.682186484336853,0.692540287971497,
  1800. -0.152046039700508,-0.692924499511719,0.704796195030212,0.0195946376770735,-0.697418928146362,0.716395854949951,-0.0611950755119324,-0.709300756454468,0.702244758605957,-0.147785395383835,-0.716650366783142,0.681594967842102,-0.235146284103394,-0.703441917896271,0.670727729797363,-0.0621470138430595,-0.701222836971283,0.710228443145752,-0.13919335603714,-0.704947650432587,0.695466756820679,-0.211741596460342,-0.655144989490509,0.725224554538727,-0.233208507299423,-0.648755371570587,0.724382758140564,-0.137463763356209,-0.674520254135132,0.725345551967621,-0.0614171475172043,-0.70743054151535,0.704109370708466,0.0188041012734175,-0.695188701152802,0.71858137845993,0.0418875366449356,-0.69078665971756,0.721844434738159,0.0542568117380142,-0.684519171714783,0.726972997188568,0.0413040369749069,-0.687685608863831,0.724832713603973,0.0180488657206297,-0.693051874637604,0.720661818981171,-0.13771715760231,-0.67878919839859,0.721303820610046,-0.0756613165140152,-0.689665734767914,0.720164239406586,-0.213717296719551,-0.661606431007385,0.718750178813934,0.00747162103652954,-0.703973412513733,0.710187077522278,-0.205817624926567,-0.63578999042511,0.743915498256683,-0.0743487179279327,-0.682100772857666,0.72746878862381,-0.138355299830437,-0.689807057380676,0.710650563240051,-0.0627312585711479,-0.696185171604156,0.715116143226624,0.0111340489238501,-0.698528647422791,0.715495526790619,-0.0764961540699005,-0.694462239742279,0.715451300144196,-0.138449043035507,-0.69146066904068,0.709023296833038,0.0111330151557922,-0.694111764431,0.719781160354614,-0.0625033527612686,-0.698157548904419,0.713210642337799,0.0440806485712528,-0.70236200094223,0.710453808307648,0.0111345564946532,-0.701915860176086,0.71217280626297,0.0110318949446082,-0.696879386901855,0.717103540897369,-0.0723446160554886,-0.670496225357056,0.738377392292023,0.0347178392112255,-0.703349590301514,0.709995925426483,0.0373578928411007,-0.692102789878845,0.720831692218781,-0.0767838507890701,-0.69611257314682,0.713814795017242,0.0111329350620508,-0.69382905960083,0.720053672790527,
  1801. 0.0348498858511448,-0.702792108058929,0.710541188716888,0.0667009800672531,-0.712341964244843,0.698655843734741,0.0117978304624558,-0.695342779159546,0.718581438064575,0.0111345387995243,-0.701762795448303,0.712323665618896,0.0440669432282448,-0.702290058135986,0.710525751113892,0.0274201314896345,-0.702118933200836,0.711531579494476,0.0409248322248459,-0.685665726661682,0.726765275001526,0.0533600300550461,-0.682676553726196,0.728769838809967,0.0262953359633684,-0.689033210277557,0.724252700805664,0.0233793165534735,-0.694988310337067,0.718640863895416,0.0368640385568142,-0.694222867488861,0.718815505504608,0.0111334025859833,-0.695573449134827,0.718368768692017,0.0726590603590012,-0.696809947490692,0.71356612443924,0.0374250896275043,-0.69181364774704,0.721105575561523,0.0238692797720432,-0.689649760723114,0.72374963760376,0.00665575172752142,-0.691433846950531,0.722409188747406,0.0260575637221336,-0.686250686645508,0.726898312568665,0.0515708178281784,-0.678987622261047,0.732336163520813,0.0470435470342636,-0.66957813501358,0.741250336170197,0.0581853613257408,-0.664742290973663,0.744803488254547,0.00524795008823276,-0.686736226081848,0.726887822151184,-0.0111342538148165,-0.69971227645874,0.714338004589081,0.0111344680190086,-0.701184928417206,0.712892532348633,0.0274132899940014,-0.702039778232574,0.711610019207001,0.027313806116581,-0.700887441635132,0.712748825550079,0.00926423724740744,-0.700059831142426,0.714024126529694,-0.0111341066658497,-0.698848307132721,0.715183258056641,-0.0111328922212124,-0.69368302822113,0.720194399356842,0.0238133259117603,-0.690261960029602,0.723167598247528,0.0111322458833456,-0.691602885723114,0.722192287445068,0.0642814710736275,-0.678950130939484,0.731364965438843,0.109206184744835,-0.666989922523499,0.737020075321198,0.00683554168790579,-0.692031681537628,0.721834897994995,0.00910400599241257,-0.699532985687256,0.71454244852066,0.111297018826008,-0.698873281478882,0.706533193588257,-0.0111340973526239,-0.698792457580566,0.715237855911255,0.154970765113831,-0.658105731010437,0.73680454492569,
  1802. 0.109456516802311,-0.670708656311035,0.733600199222565,0.0653568357229233,-0.681433320045471,0.72895622253418,0.15970453619957,-0.745613634586334,0.646958112716675,0.114187330007553,-0.746991276741028,0.654954433441162,0.157597824931145,-0.74571293592453,0.647360146045685,0.0424970053136349,-0.693676769733429,0.719031751155853,0.0718924924731255,-0.698833227157593,0.711662650108337,0.0238312073051929,-0.690066397190094,0.723353683948517,0.0479206517338753,-0.669066250324249,0.741656243801117,0.0254065431654453,-0.672558188438416,0.7396080493927,-0.0111254844814539,-0.677471935749054,0.735464572906494,0.0776111707091331,-0.683561086654663,0.725755333900452,0.0456141866743565,-0.679656505584717,0.732110917568207,0.0751383528113365,-0.683285295963287,0.726275026798248,0.110488593578339,-0.686312079429626,0.718865752220154,0.108164608478546,-0.686529278755188,0.719011843204498,-0.011132569052279,-0.692606985569,0.721229314804077,0.111923836171627,-0.65526282787323,0.747063398361206,0.0489636026322842,-0.66421639919281,0.745935082435608,-0.0111204814165831,-0.670240640640259,0.742060542106628,0.112501479685307,-0.718238174915314,0.686642169952393,0.165371522307396,-0.715655148029327,0.678594172000885,0.103952743113041,-0.718461751937866,0.68775475025177,0.109442882239819,-0.676211595535278,0.728532910346985,0.0778084173798561,-0.674420773983002,0.734236001968384,0.0472778379917145,-0.672036468982697,0.739007353782654,0.0736607685685158,-0.688131332397461,0.721837520599365,0.107681550085545,-0.690348863601685,0.7154181599617,0.169416695833206,-0.692252933979034,0.701486885547638,-0.0632588714361191,-0.977623820304871,-0.200624540448189,-0.238618791103363,-0.950895190238953,-0.197128087282181,-0.151221543550491,-0.968124032020569,-0.199669748544693,0.0179045591503382,-0.980137348175049,-0.19751001894474,-0.0619996450841427,-0.974654197692871,-0.214954107999802,-0.146960124373436,-0.961548984050751,-0.232005178928375,-0.239200472831726,-0.943961799144745,-0.22741873562336,-0.0629832372069359,-0.976989030838013,-0.203778147697449,
  1803. -0.143990948796272,-0.965842068195343,-0.215443044900894,-0.207941025495529,-0.965345621109009,-0.157696977257729,-0.237301915884018,-0.959631621837616,-0.150980100035667,-0.142433881759644,-0.974745512008667,-0.171999543905258,-0.0622276142239571,-0.97520500421524,-0.21237450838089,0.0171153228729963,-0.980761289596558,-0.194459035992622,0.0424954108893871,-0.981163084506989,-0.188449740409851,0.0562965832650661,-0.982064306735992,-0.179945468902588,0.0419009812176228,-0.981995940208435,-0.184196203947067,0.0163819249719381,-0.981331944465637,-0.191622734069824,-0.14266511797905,-0.973632574081421,-0.178006544709206,-0.0812001526355743,-0.978857696056366,-0.187734186649323,-0.209859266877174,-0.963456749916077,-0.166463896632195,0.00195815414190292,-0.978932201862335,-0.204176440834999,-0.202189534902573,-0.970437288284302,-0.131798416376114,-0.0797021239995956,-0.981090128421783,-0.176379784941673,-0.14324226975441,-0.970563650131226,-0.193618014454842,-0.0635959059000015,-0.978387951850891,-0.196755081415176,0.00771711114794016,-0.980073094367981,-0.19848720729351,-0.082190990447998,-0.977298259735107,-0.195276483893394,-0.143333241343498,-0.970038056373596,-0.196167841553688,0.00772629026323557,-0.981238901615143,-0.192641094326973,-0.0633636265993118,-0.977862656116486,-0.199423387646675,0.0447390750050545,-0.977838456630707,-0.204524770379066,0.00770975649356842,-0.979139089584351,-0.203044876456261,0.0056208148598671,-0.980956673622131,-0.194145530462265,-0.0775826647877693,-0.983996152877808,-0.160413518548012,0.0300284959375858,-0.978562951087952,-0.203747048974037,0.0322933681309223,-0.981132745742798,-0.190619558095932,-0.082510881125927,-0.976780354976654,-0.197717189788818,0.00772673496976495,-0.981295347213745,-0.192353367805481,0.0302121061831713,-0.978777825832367,-0.202685460448265,0.0697157755494118,-0.972860813140869,-0.22063897550106,0.00649967044591904,-0.981425285339355,-0.191734924912453,0.0077101169154048,-0.979184865951538,-0.202824145555496,0.0447256788611412,-0.977859139442444,-0.204428717494011,
  1804. 0.020520992577076,-0.978878438472748,-0.203410983085632,0.0415161289274693,-0.982524633407593,-0.181443497538567,0.0553894303739071,-0.982574284076691,-0.177425742149353,0.0195574127137661,-0.982027769088745,-0.187720447778702,0.0279375519603491,-0.980679154396057,-0.193618074059486,0.0318135991692543,-0.980602920055389,-0.19340617954731,0.00772312888875604,-0.980837345123291,-0.194675415754318,0.0759626254439354,-0.977066159248352,-0.19892555475235,0.0326193533837795,-0.981488287448883,-0.188724368810654,0.028309216722846,-0.981820285320282,-0.187690109014511,0.00923655740916729,-0.98214054107666,-0.187922045588493,0.0193524416536093,-0.982663154602051,-0.184387132525444,0.0535366274416447,-0.983592391014099,-0.172278806567192,0.0488627888262272,-0.986021518707275,-0.159292012453079,0.0579228848218918,-0.986306011676788,-0.15441957116127,0.00772481039166451,-0.983421683311462,-0.181168988347054,-0.00771389715373516,-0.979664981365204,-0.200492069125175,0.00771163357421756,-0.979377508163452,-0.201891824603081,0.0204967260360718,-0.978961110115051,-0.20301541686058,0.0204034131020308,-0.97927713394165,-0.201494559645653,0.0121365357190371,-0.979545593261719,-0.200856029987335,-0.0077158659696579,-0.979914963245392,-0.199266493320465,-0.00772807095199823,-0.981465041637421,-0.191485658288002,0.0283634066581726,-0.98198390007019,-0.186823844909668,0.00773107446730137,-0.981846451759338,-0.189519748091698,0.0640644505620003,-0.98273640871048,-0.173565700650215,0.112576022744179,-0.980776369571686,-0.159387528896332,0.00946415960788727,-0.981943428516388,-0.188938125967979,0.0119541250169277,-0.979714214801788,-0.200043275952339,0.114868372678757,-0.972251832485199,-0.20379351079464,-0.00771615793928504,-0.979952037334442,-0.199084550142288,0.156858667731285,-0.975772857666016,-0.152521342039108,0.112848863005638,-0.979906558990479,-0.164463475346565,0.0651493072509766,-0.982061505317688,-0.176948845386505,0.159090831875801,-0.948120832443237,-0.275239765644073,0.117980368435383,-0.954927802085876,-0.272385001182556,0.159517243504524,-0.948041319847107,-0.275266945362091,
  1805. 0.0413734018802643,-0.980475008487701,-0.192242085933685,0.0751388669013977,-0.976539671421051,-0.201802894473076,0.0282604973763227,-0.981672644615173,-0.188468545675278,0.0467037744820118,-0.986042261123657,-0.159810930490494,0.0298511814326048,-0.986200332641602,-0.162843078374863,-0.00775993149727583,-0.985511302947998,-0.16943247616291,0.0810314938426018,-0.980116128921509,-0.181125447154045,0.044472698122263,-0.983838856220245,-0.173445373773575,0.0731285363435745,-0.981038928031921,-0.179484844207764,0.113990619778633,-0.975858807563782,-0.186294868588448,0.110646277666092,-0.976214945316315,-0.186445355415344,-0.00772975198924541,-0.981678545475006,-0.190387934446335,0.114467352628708,-0.98283052444458,-0.144711345434189,0.0477583184838295,-0.98701936006546,-0.15333603322506,-0.00777237815782428,-0.987092018127441,-0.159965395927429,0.116162575781345,-0.966012418270111,-0.230924874544144,0.164838045835495,-0.958422064781189,-0.232928469777107,0.106364585459232,-0.967252254486084,-0.230455368757248,0.111895501613617,-0.978531837463379,-0.17307522892952,0.075782984495163,-0.982899308204651,-0.167826920747757,0.046124592423439,-0.985487937927246,-0.163358807563782,0.0716281831264496,-0.979927480220795,-0.186041921377182,0.110111959278584,-0.975180923938751,-0.192087531089783,0.168951526284218,-0.964952051639557,-0.200805634260178,-0.0646078810095787,-0.964742004871368,0.255144894123077,-0.239092946052551,-0.939216315746307,0.246388539671898,-0.147439777851105,-0.95643025636673,0.251997470855713,0.0174525044858456,-0.96572357416153,0.258985459804535,-0.0632699057459831,-0.968530237674713,0.24071978032589,-0.143383428454399,-0.964710891246796,0.220848798751831,-0.239639535546303,-0.946503877639771,0.216109573841095,-0.0643019676208496,-0.965630829334259,0.251838028430939,-0.144878342747688,-0.960772097110748,0.236489802598953,-0.21171909570694,-0.933738350868225,0.288630753755569,-0.237826332449913,-0.926470637321472,0.291703671216965,-0.143159091472626,-0.949370801448822,0.279643535614014,-0.063507042825222,-0.967877566814423,0.243269249796867,
  1806. 0.0166761763393879,-0.96492326259613,0.262002170085907,0.0370700247585773,-0.963125348091125,0.266486972570419,0.054531067609787,-0.959835469722748,0.275213092565537,0.0365283451974392,-0.9620561003685,0.270395547151566,0.015960706397891,-0.964177012443542,0.264779448509216,-0.143412739038467,-0.951052904129028,0.273735642433167,-0.0791615918278694,-0.96042662858963,0.267047047615051,-0.213652729988098,-0.935993254184723,0.279766380786896,0.00713770091533661,-0.967994928359985,0.250868439674377,-0.205910682678223,-0.926615595817566,0.31461775302887,-0.0777226760983467,-0.957482933998108,0.277823358774185,-0.144047766923904,-0.955264151096344,0.258303374052048,-0.0649631693959236,-0.963692426681519,0.258992046117783,0.00760680483654141,-0.966064214706421,0.258190006017685,-0.0801012367010117,-0.962293922901154,0.259950667619705,-0.144149348139763,-0.955937743186951,0.255742341279984,0.00759456213563681,-0.96450936794281,0.263939380645752,-0.0647239908576012,-0.964400947093964,0.256401419639587,0.0390535444021225,-0.966913402080536,0.252098202705383,0.0076161827892065,-0.967255234718323,0.253691464662552,0.0107057159766555,-0.965427577495575,0.26045149564743,-0.075630709528923,-0.953024744987488,0.293298184871674,0.0271889213472605,-0.966843247413635,0.253919124603271,0.0291897859424353,-0.963661789894104,0.265526056289673,-0.080411821603775,-0.962901294231415,0.257594555616379,0.0075939679518342,-0.964433908462524,0.264215290546417,0.0273999609053135,-0.966514706611633,0.255144029855728,0.067726157605648,-0.969372153282166,0.236074030399323,0.0114792129024863,-0.964856743812561,0.262525588274002,0.00761573109775782,-0.967197835445404,0.253910213708878,0.0390377976000309,-0.966884016990662,0.252212911844254,0.0241292454302311,-0.96715235710144,0.25304964184761,0.0361492112278938,-0.961298823356628,0.273125916719437,0.0536216795444489,-0.959169149398804,0.277703642845154,0.0230393558740616,-0.962687253952026,0.269633948802948,0.0241406355053186,-0.964586734771729,0.262659251689911,0.0287278778851032,-0.964409649372101,0.262847810983658,
  1807. 0.00759886670857668,-0.96505606174469,0.261933386325836,0.0737425535917282,-0.963581740856171,0.257045477628708,0.0296688191592693,-0.962877631187439,0.268302738666534,0.0245608799159527,-0.962667405605316,0.269570529460907,0.00607517641037703,-0.963538825511932,0.267499566078186,0.0228086654096842,-0.961709320545197,0.273120820522308,0.0518070459365845,-0.957818984985352,0.282663971185684,0.0472218096256256,-0.954285800457001,0.295141667127609,0.0573069676756859,-0.952170729637146,0.300144970417023,0.00467611104249954,-0.961820006370544,0.273643165826797,-0.00761097390204668,-0.966593682765961,0.256200581789017,0.00761381164193153,-0.966954052448273,0.254837036132813,0.0241134166717529,-0.967089354991913,0.253291845321655,0.0240126084536314,-0.966686844825745,0.254833281040192,0.00865964498370886,-0.966606855392456,0.256117641925812,-0.00760843930765986,-0.966271817684174,0.257412016391754,-0.00759207736700773,-0.964193820953369,0.265090018510818,0.0245278626680374,-0.96282023191452,0.269027322530746,0.00758795812726021,-0.963670670986176,0.266985565423965,0.0633278638124466,-0.957463502883911,0.281519770622253,0.108460709452629,-0.950077474117279,0.292556136846542,0.0062515689060092,-0.963752627372742,0.266724079847336,0.00850259885191917,-0.966424465179443,0.256810516119003,0.11053192615509,-0.961840391159058,0.250291466712952,-0.00760805839672685,-0.966223418712616,0.257593661546707,0.155486866831779,-0.942074298858643,0.297186613082886,0.108709052205086,-0.951520562171936,0.287734180688858,0.0643932297825813,-0.958361268043518,0.278203576803207,0.153838470578194,-0.972303152084351,0.175956055521965,0.113411732017994,-0.97684633731842,0.181408360600472,0.158277735114098,-0.97170215845108,0.175337046384811,0.0442035831511021,-0.963750898838043,0.26311656832695,0.072963260114193,-0.964361488819122,0.254329085350037,0.024525310844183,-0.962831974029541,0.26898530125618,0.0497170425951481,-0.953913450241089,0.295934766530991,0.0259337946772575,-0.956006109714508,0.292198240756989,-0.00754334218800068,-0.958004474639893,0.286654025316238,
  1808. 0.0786961615085602,-0.95841521024704,0.274312317371368,0.0473155863583088,-0.958352744579315,0.281640410423279,0.0722417086362839,-0.958483695983887,0.275844424962997,0.109729312360287,-0.957359492778778,0.267249763011932,0.107814751565456,-0.957573652267456,0.267261505126953,-0.00758977653458714,-0.96390163898468,0.266150444746017,0.111591309309006,-0.945032477378845,0.307345271110535,0.0507358349859715,-0.951957225799561,0.301999032497406,-0.00752134155482054,-0.955210387706757,0.295832216739655,0.111731760203838,-0.968321859836578,0.223313271999359,0.15943805873394,-0.962769210338593,0.218300625681877,0.10358838737011,-0.969042003154755,0.224114403128624,0.109105467796326,-0.953548610210419,0.280786842107773,0.0748389437794685,-0.954981565475464,0.287070572376251,0.0489838570356369,-0.9552943110466,0.291570574045181,0.0707575753331184,-0.960416615009308,0.269431859254837,0.107336968183517,-0.958998799324036,0.262297987937927,0.163534507155418,-0.954187750816345,0.250563830137253
  1809. }
  1810. BinormalsW: *795 {
  1811. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1812. }
  1813. }
  1814. LayerElementBinormal: 1 {
  1815. Version: 102
  1816. Name: "LightMapUV"
  1817. MappingInformationType: "ByPolygonVertex"
  1818. ReferenceInformationType: "Direct"
  1819. Binormals: *2385 {
  1820. a: -0.147899940609932,0.92326545715332,-0.35455134510994,-0.196197584271431,0.908426284790039,-0.36914524435997,0.0421776473522186,0.956390023231506,-0.289031326770782,-0.147506326436996,0.720125675201416,0.677982926368713,-0.176629185676575,0.709073424339294,0.68265438079834,-0.255136519670486,0.675363600254059,0.691946089267731,-0.0466635785996914,0.308448940515518,-0.950095653533936,0.225968018174171,0.344922453165054,-0.91102522611618,0.323110789060593,0.351735532283783,-0.87856787443161,-0.148060694336891,0.721105813980103,0.676819443702698,-0.0855951607227325,0.74229633808136,0.664582371711731,-0.176845952868462,0.710160553455353,0.681467235088348,-0.0741585344076157,0.766171455383301,0.638342976570129,-0.180946081876755,0.730816185474396,0.658153653144836,-0.0957663133740425,0.759848475456238,0.643007874488831,-0.12297797948122,0.804171204566956,0.581536829471588,-0.0518420413136482,0.825049161911011,0.56267774105072,-0.0891010835766792,0.814727902412415,0.572956740856171,-0.120122201740742,0.937016606330872,-0.327979654073715,-0.197642773389816,0.913402557373047,-0.355855613946915,-0.0662272125482559,0.949278235435486,-0.307383716106415,-0.135095089673996,0.937063038349152,0.321966350078583,-0.129994362592697,0.937682271003723,0.322263091802597,-0.216239601373672,0.923769533634186,0.316054582595825,-0.0920642390847206,0.990864396095276,-0.0985495001077652,-0.0362795777618885,0.996056199073792,-0.0809679180383682,-0.196188256144524,0.971814692020416,-0.130714997649193,-0.206770151853561,0.798334240913391,0.565604627132416,-0.371035248041153,0.75903183221817,0.534979939460754,-0.188726007938385,0.801163375377655,0.56790828704834,-0.120170190930367,0.957969069480896,0.260488748550415,0.0287765674293041,0.949843525886536,0.311398774385452,-0.1109788864851,0.958158373832703,0.263849258422852,-0.0219472423195839,0.903322815895081,0.428399622440338,-0.147207260131836,0.914170026779175,0.377654880285263,-0.0453651361167431,0.906610131263733,0.419523626565933,-0.150615304708481,0.90723043680191,0.392744213342667,
  1821. -0.134448021650314,0.909309327602386,0.393802404403687,-0.0416553020477295,0.916516005992889,0.397823065519333,-0.0500496700406075,0.893234968185425,0.446795701980591,-0.175413802266121,0.903387188911438,0.391307771205902,-0.033266868442297,0.890607237815857,0.453554928302765,-0.127804204821587,0.921033382415771,0.367917865514755,-0.0729333385825157,0.925446689128876,0.371791988611221,-0.132886946201324,0.920480489730835,0.36750066280365,-0.0355139672756195,0.931616067886353,0.361704707145691,-0.132785141468048,0.921157717704773,0.365836828947067,-0.0728174969553947,0.928666472434998,0.363697975873947,-0.100732818245888,0.920698285102844,0.377051174640656,-0.073063001036644,0.921554028987885,0.381313771009445,-0.127016633749008,0.919211506843567,0.372715801000595,-0.13275058567524,0.979040503501892,0.154457569122314,-0.157364562153816,0.974433600902557,0.160361170768738,-0.18432754278183,0.968619108200073,0.166734397411346,-0.0728806480765343,0.926938831806183,0.368066221475601,-0.108425013720989,0.922801077365875,0.369705557823181,-0.0362230837345123,0.929953992366791,0.365887343883514,-0.0730322599411011,0.922506928443909,0.379008382558823,-0.101130574941635,0.921648561954498,0.374615430831909,-0.108487993478775,0.921299755573273,0.373412847518921,-0.18926577270031,0.970583617687225,0.14881494641304,-0.103218495845795,0.986590027809143,0.126435995101929,-0.135179921984673,0.981602668762207,0.134843304753304,-0.108695484697819,0.915908098220825,0.386390596628189,-0.0989220291376114,0.91631281375885,0.388053178787231,-0.0627802610397339,0.917025446891785,0.393856555223465,-0.0699202343821526,0.933735966682434,0.351067334413528,-0.123942874372005,0.922595083713531,0.365317225456238,-0.0455998331308365,0.937751173973084,0.344301283359528,-0.0405431836843491,0.932152569293976,0.359788537025452,0.0575434342026711,0.941504597663879,0.332050979137421,-0.0673389360308647,0.927887320518494,0.366729527711868,0.0701513513922691,0.905949950218201,0.417532593011856,-0.10873831063509,0.914696097373962,0.389239072799683,-0.0620884634554386,0.915318846702576,0.397915005683899,
  1822. 0.0574324205517769,0.941775798797607,0.331300467252731,-0.0407998859882355,0.932443141937256,0.359005808830261,0.0879050865769386,0.942663192749023,0.321960866451263,0.0995757356286049,0.92160040140152,0.375149637460709,0.245843008160591,0.899890065193176,0.36022087931633,0.0642553120851517,0.923779904842377,0.377494186162949,0.110969066619873,0.916222155094147,0.384997129440308,-0.108621835708618,0.917908072471619,0.381636381149292,0.0654849335551262,0.920240938663483,0.385834753513336,0.245665803551674,0.896950483322144,0.367597818374634,0.111117340624332,0.918994009494781,0.378289490938187,0.0646723657846451,0.92259007692337,0.380322486162186,0.244340658187866,0.878884971141815,0.409705847501755,0.0575388222932816,0.914266645908356,0.401005923748016,0.110490672290325,0.907643496990204,0.404938608407974,0.0599269866943359,0.925080716609955,0.375012546777725,-0.108542487025261,0.919953346252441,0.376702010631561,0.11124312132597,0.921395897865295,0.372363418340683,0.0571070909500122,0.912256717681885,0.405618578195572,0.244335487484932,0.878822982311249,0.409841954708099,0.183320760726929,0.893430233001709,0.410092562437058,-0.034453958272934,0.934061467647552,0.355446487665176,-0.108291633427143,0.92580783367157,0.362150311470032,-0.151127710938454,0.918606698513031,0.365133076906204,0.0620321966707706,0.934168338775635,0.351399332284927,-0.15133273601532,0.917268753051758,0.368397265672684,-0.108365938067436,0.924160361289978,0.366311997175217,-0.216356664896011,0.848673462867737,0.482641816139221,-0.0739331394433975,0.808810293674469,0.583403706550598,-0.159152045845985,0.835723638534546,0.525582194328308,-0.0866970270872116,0.91320812702179,0.398164093494415,0.0555820167064667,0.905026495456696,0.421708315610886,0.177934020757675,0.882675349712372,0.434998780488968,-0.152494445443153,0.909210801124573,0.387403100728989,0.0576766617596149,0.914904952049255,0.399527788162231,-0.0856134817004204,0.915463626384735,0.39318785071373,-0.154830753803253,0.890021622180939,0.428822726011276,-0.0968407094478607,0.890404045581818,0.444749921560287,
  1823. -0.18782414495945,0.888351023197174,0.418992340564728,0.151235282421112,0.824101388454437,0.545879900455475,-0.162784188985825,0.882443368434906,0.441355854272842,-0.101522512733936,0.878807544708252,0.46625155210495,-0.156688943505287,0.894661962985992,0.418364077806473,-0.184394717216492,0.892634451389313,0.411342084407806,-0.0942448079586029,0.896536588668823,0.432828009128571,-0.146932020783424,0.49578133225441,-0.855927526950836,-0.195706099271774,0.474894285202026,-0.858006119728088,0.0449818782508373,0.563110709190369,-0.825156331062317,-0.143835321068764,0.985618472099304,0.0887004733085632,-0.177279934287071,0.978979408740997,0.100853003561497,-0.255010634660721,0.958306908607483,0.12890912592411,-0.0460495091974735,-0.347435414791107,-0.93657249212265,0.224042475223541,-0.294493973255157,-0.929020047187805,0.320660620927811,-0.26899790763855,-0.908194422721863,-0.143835321068764,0.985618472099304,0.0887004733085632,-0.084401823580265,0.994177520275116,0.0669881626963615,-0.177279934287071,0.978979408740997,0.100853003561497,-0.0690363869071007,0.99744975566864,0.0181102510541677,-0.182910516858101,0.981406092643738,0.0581894963979721,-0.0983945801854134,0.994741141796112,0.0284344181418419,-0.126421645283699,0.990697920322418,-0.0503512173891068,-0.0520208738744259,0.99548327922821,-0.0794159919023514,-0.0845463201403618,0.994178652763367,-0.0667885020375252,-0.118604123592377,0.518450736999512,-0.846842408180237,-0.196623757481575,0.482385605573654,-0.853606045246124,-0.0640039592981339,0.541190087795258,-0.8384610414505,-0.129641771316528,0.93377685546875,-0.33354726433754,-0.128129154443741,0.933969795703888,-0.333591490983963,-0.217680603265762,0.918683528900146,-0.329599350690842,-0.0892559438943863,0.703169167041779,-0.705398201942444,-0.0330677926540375,0.718492269515991,-0.694748401641846,-0.194059312343597,0.667672276496887,-0.718717396259308,-0.20570071041584,0.977254211902618,-0.0515888407826424,-0.374248743057251,0.925944924354553,-0.0506346374750137,-0.190850645303726,0.980262160301209,-0.0515961684286594,
  1824. -0.118448913097382,0.90666800737381,-0.40487414598465,0.0368384644389153,0.932935416698456,-0.358154296875,-0.106683641672134,0.9095419049263,-0.401686578989029,-0.0165885593742132,0.972506165504456,-0.232285395264626,-0.14714440703392,0.948465824127197,-0.280644178390503,-0.0444735176861286,0.969007909297943,-0.242993518710136,-0.152739137411118,0.954970240592957,-0.254367113113403,-0.132781028747559,0.957794845104218,-0.25494772195816,-0.0424004681408405,0.965673565864563,-0.256275147199631,-0.0497255921363831,0.976675093173981,-0.208885431289673,-0.178191587328911,0.949092566967011,-0.259751945734024,-0.0296764373779297,0.979221642017365,-0.200610011816025,-0.121878787875175,0.950729012489319,-0.28506126999855,-0.0699934512376785,0.956048548221588,-0.284731566905975,-0.13111923635006,0.949505627155304,-0.285038560628891,-0.0344668440520763,0.95134824514389,-0.306183934211731,-0.130442380905151,0.946052014827728,-0.296597898006439,-0.0697395652532578,0.950436353683472,-0.302996933460236,-0.103219881653786,0.953525066375732,-0.28308230638504,-0.070058174431324,0.957516551017761,-0.279739409685135,-0.121840320527554,0.950805008411407,-0.284824132919312,-0.134882882237434,0.859580636024475,-0.492877095937729,-0.152808547019959,0.859681010246277,-0.487440437078476,-0.184570476412773,0.859113574028015,-0.477344334125519,-0.0697981044650078,0.951711654663086,-0.298953682184219,-0.110149018466473,0.949258983135223,-0.294575214385986,-0.0350899659097195,0.952561736106873,-0.302315950393677,-0.0700367242097855,0.957028031349182,-0.281411349773407,-0.103500470519066,0.952966809272766,-0.284854203462601,-0.110310256481171,0.952004253864288,-0.285516142845154,-0.189235731959343,0.849972367286682,-0.491667568683624,-0.100900374352932,0.848304331302643,-0.519806563854218,-0.137147545814514,0.8498694896698,-0.508834481239319,-0.110426984727383,0.954047679901123,-0.278566151857376,-0.102368712425232,0.955193698406219,-0.277715146541595,-0.0612404607236385,0.960035920143127,-0.273094564676285,-0.067522369325161,0.947793960571289,-0.31165274977684,
  1825. -0.123760528862476,0.948114573955536,-0.292851716279984,-0.0500522032380104,0.947018623352051,-0.317254841327667,-0.0452751964330673,0.952087819576263,-0.302454769611359,0.0602284632623196,0.941339075565338,-0.332044422626495,-0.0650539472699165,0.952820658683777,-0.296481072902679,0.0723689496517181,0.966522455215454,-0.24616464972496,-0.110494293272495,0.955250799655914,-0.274384826421738,-0.0603316649794579,0.961658835411072,-0.267530471086502,0.0599258318543434,0.940627992153168,-0.334107786417007,-0.0459363199770451,0.951402306556702,-0.30450564622879,0.0883209407329559,0.935764372348785,-0.34138634800911,0.1002017557621,0.953424394130707,-0.284502238035202,0.246157228946686,0.927137017250061,-0.282530665397644,0.0671160295605659,0.956447124481201,-0.284085184335709,0.111593000590801,0.955399215221405,-0.273421436548233,-0.110450804233551,0.954471409320831,-0.277100890874863,0.0683599933981895,0.958949685096741,-0.27521339058876,0.245965838432312,0.929468750953674,-0.274933874607086,0.111715011298656,0.953359127044678,-0.280403763055801,0.0675413906574249,0.957310914993286,-0.281058967113495,0.244558230042458,0.941772937774658,-0.230770736932755,0.0553680956363678,0.964012563228607,-0.260027468204498,0.111192502081394,0.96120423078537,-0.252433568239212,0.0576693117618561,0.956260919570923,-0.286774128675461,-0.110367350280285,0.952997386455536,-0.282161474227905,0.111817397177219,0.951523184776306,-0.286531895399094,0.0549426823854446,0.965348482131958,-0.255115300416946,0.244553178548813,0.941807329654694,-0.230635955929756,0.183925837278366,0.953307151794434,-0.239534616470337,-0.0342242270708084,0.950871765613556,-0.307687610387802,-0.110104277729988,0.948511183261871,-0.2969910800457,-0.156326815485954,0.944305598735809,-0.289566665887833,0.0597052350640297,0.948632955551147,-0.310694009065628,-0.156515225768089,0.94527143239975,-0.286295294761658,-0.11018231511116,0.949819207191467,-0.29275119304657,-0.224237903952599,0.964188635349274,-0.14162503182888,-0.075212262570858,0.996614277362823,-0.0332123339176178,
  1826. -0.164122968912125,0.981579661369324,-0.0978012979030609,-0.0875109434127808,0.961249172687531,-0.261422783136368,0.0534719303250313,0.969741106033325,-0.238208219408989,0.178437232971191,0.960541188716888,-0.213356196880341,-0.157575726509094,0.950673997402191,-0.267187118530273,0.0554888918995857,0.963627874851227,-0.261424034833908,-0.086450032889843,0.959919333457947,-0.266610711812973,-0.159955337643623,0.9625403881073,-0.218930050730705,-0.0985541939735413,0.973541378974915,-0.206165835261345,-0.192092895507813,0.955163240432739,-0.225307583808899,0.151303485035896,0.984353005886078,-0.0903125777840614,-0.164351224899292,0.964025795459747,-0.208909094333649,-0.102286651730537,0.97702968120575,-0.186950460076332,-0.158120021224022,0.959010899066925,-0.235151529312134,-0.18643593788147,0.952842116355896,-0.239444404840469,-0.0948593392968178,0.969750165939331,-0.224914073944092,-0.182448893785477,0.827803194522858,-0.530522704124451,-0.226131141185761,0.810065865516663,-0.540978789329529,0.0112640857696533,0.882068514823914,-0.470986515283585,-0.183561742305756,0.834006369113922,0.520325422286987,-0.212213471531868,0.822919189929962,0.527038395404816,-0.286710619926453,0.78980016708374,0.542229354381561,-0.0445785783231258,0.105952188372612,-0.993371486663818,0.227115631103516,0.159641474485397,-0.960694074630737,0.317474454641342,0.175415098667145,-0.931901037693024,-0.184331431984901,0.834934413433075,0.518561899662018,-0.125443980097771,0.855002880096436,0.503223657608032,-0.212533578276634,0.824001789093018,0.525214970111847,-0.107876926660538,0.873654961585999,0.474436163902283,-0.216554805636406,0.837558627128601,0.501596987247467,-0.13468636572361,0.865918219089508,0.481710940599442,-0.162100732326508,0.895419299602509,0.414665877819061,-0.0855604857206345,0.916776657104492,0.390128433704376,-0.123591482639313,0.906978964805603,0.402634501457214,-0.156236067414284,0.85224723815918,-0.499264448881149,-0.229052171111107,0.822155117988586,-0.521148800849915,-0.10092094540596,0.87108325958252,-0.480654716491699,
  1827. -0.172590643167496,0.976708710193634,0.12748558819294,-0.166648834943771,0.977714538574219,0.127681195735931,-0.255235195159912,0.958861768245697,0.124254286289215,-0.131139054894447,0.95415210723877,-0.269066035747528,-0.0815839692950249,0.963535308837891,-0.254841089248657,-0.241064414381981,0.92352819442749,-0.298301547765732,-0.241781085729599,0.888821721076965,0.389278501272202,-0.406681895256042,0.836905300617218,0.366332352161407,-0.224622696638107,0.892583429813385,0.390947192907333,-0.159673482179642,0.985336184501648,0.0601418875157833,-0.00337526993826032,0.993456602096558,0.114160962402821,-0.151491656899452,0.986445784568787,0.0630491077899933,-0.0562633536756039,0.968080282211304,0.244244173169136,-0.187347561120987,0.963750720024109,0.189961716532707,-0.0838262960314751,0.968790411949158,0.23327724635601,-0.191892951726913,0.958116054534912,0.212581127882004,-0.170974493026733,0.961885690689087,0.213409706950188,-0.0812422037124634,0.973040461540222,0.215851619839668,-0.0878989696502686,0.961337506771088,0.260967314243317,-0.214932724833488,0.955143451690674,0.203727662563324,-0.0668051317334175,0.960565030574799,0.269911289215088,-0.165284007787704,0.970604002475739,0.174954786896706,-0.105183966457844,0.978371560573578,0.178116366267204,-0.169174075126648,0.969974637031555,0.174726694822311,-0.0753659680485725,0.981389403343201,0.176620483398438,-0.169558838009834,0.968464076519012,0.182557284832001,-0.105186700820923,0.978270590305328,0.178668707609177,-0.140198186039925,0.971901059150696,0.189084097743034,-0.105249747633934,0.975310564041138,0.194143712520599,-0.163591414690018,0.968921840190887,0.185549288988113,-0.171853929758072,0.984311699867249,-0.0399589128792286,-0.194123193621635,0.980392396450043,-0.0338662303984165,-0.220810294151306,0.974956631660461,-0.0265015214681625,-0.105209976434708,0.977338016033173,0.183687970042229,-0.146189212799072,0.971514225006104,0.186517640948296,-0.0761003717780113,0.980443120002747,0.181494414806366,-0.105238981544971,0.975936472415924,0.190978765487671,
  1828. -0.140723139047623,0.972466468811035,0.185757786035538,-0.146170020103455,0.971820116043091,0.184932544827461,-0.225990891456604,0.973065316677094,-0.0455205850303173,-0.136781126260757,0.988007426261902,-0.0716400891542435,-0.174287363886833,0.982817351818085,-0.0607793852686882,-0.146388575434685,0.967678546905518,0.205349832773209,-0.137371405959129,0.968694865703583,0.206783503293991,-0.093736320734024,0.972446620464325,0.213450342416763,-0.102825075387955,0.981945395469666,0.158777311444283,-0.160387814044952,0.971208870410919,0.176150888204575,-0.0846158638596535,0.98456859588623,0.15318275988102,-0.0792340785264969,0.982214510440826,0.170225277543068,0.0201051216572523,0.989843010902405,0.140735864639282,-0.0999761000275612,0.979267597198486,0.17618165910244,0.033803004771471,0.971013844013214,0.236621052026749,-0.146404907107353,0.967290818691254,0.207157135009766,-0.0931887626647949,0.971787631511688,0.216667100787163,0.0217305012047291,0.988124132156372,0.152113512158394,-0.0758126750588417,0.980558693408966,0.18098908662796,0.0548188127577305,0.988355696201324,0.141943171620369,0.0648638904094696,0.979828000068665,0.189023599028587,0.206045761704445,0.962017178535461,0.179076045751572,0.0272875390946865,0.981208264827728,0.191012784838676,0.0784972906112671,0.977175831794739,0.197397097945213,-0.146273136138916,0.970065772533417,0.193846821784973,0.0282102413475513,0.979902625083923,0.197471708059311,0.205951899290085,0.960841834545136,0.185382887721062,0.0785449966788292,0.978399515151978,0.191219940781593,0.0275230146944523,0.980879306793213,0.192661106586456,0.205647081136703,0.957373321056366,0.202843606472015,0.0176376719027758,0.982087910175323,0.187596440315247,0.0785294845700264,0.977997004985809,0.19327475130558,0.0190563108772039,0.985421597957611,0.169059440493584,-0.145988449454308,0.97435462474823,0.171232476830482,0.078700914978981,0.982788324356079,0.167133063077927,0.0152715407311916,0.975787997245789,0.218185171484947,0.205063685774803,0.951564788818359,0.229070544242859,0.145110934972763,0.963140070438385,0.226504012942314,
  1829. -0.0735963955521584,0.983559012413025,0.164909794926643,-0.146013244986534,0.974040806293488,0.172987207770348,-0.194700241088867,0.964588403701782,0.177936062216759,0.0200477931648493,0.987551271915436,0.156015053391457,-0.194600075483322,0.964957237243652,0.176035732030869,-0.146001636981964,0.97418874502182,0.172162309288979,-0.249569401144981,0.923560976982117,0.291118919849396,-0.107359573245049,0.911246120929718,0.397623479366302,-0.200370877981186,0.922577083110809,0.329701483249664,-0.12521804869175,0.968225061893463,0.216473624110222,0.0135109107941389,0.970509588718414,0.240683659911156,0.138834118843079,0.955987989902496,0.258480489253998,-0.196065232157707,0.958857595920563,0.205305814743042,0.0154169145971537,0.976201415061951,0.216317519545555,-0.123969525098801,0.969774127006531,0.210165917873383,-0.197552546858788,0.950655519962311,0.239221781492233,-0.133096724748611,0.957279860973358,0.256710916757584,-0.225923120975494,0.946335732936859,0.231100410223007,0.115177825093269,0.921779036521912,0.370213001966476,-0.202476188540459,0.945399403572083,0.255388826131821,-0.137943342328072,0.949488997459412,0.28185498714447,-0.197725743055344,0.951745808124542,0.234701126813889,-0.224808931350708,0.947277665138245,0.228311002254486,-0.131669417023659,0.959416747093201,0.249364450573921,-0.152873694896698,0.97040581703186,-0.186928182840347,-0.195904299616814,0.959579110145569,-0.202062830328941,0.0460733771324158,0.992496132850647,-0.113263718783855,-0.150919497013092,0.59339439868927,0.790636718273163,-0.178002715110779,0.582501411437988,0.793099701404572,-0.261771678924561,0.54517650604248,0.796403229236603,-0.0475853160023689,0.478355199098587,-0.87687623500824,0.228222385048866,0.508118331432343,-0.830500066280365,0.32433158159256,0.509016335010529,-0.797315120697021,-0.15164902806282,0.594928324222565,0.789343297481537,-0.0883400067687035,0.618307709693909,0.78095555305481,-0.178284958004951,0.584183216094971,0.791798233985901,-0.0754617601633072,0.643727481365204,0.76152515411377,-0.181836560368538,0.605542600154877,0.774760365486145,
  1830. -0.0971970930695534,0.636629939079285,0.765019655227661,-0.12362614274025,0.689525187015533,0.713632702827454,-0.0508407056331635,0.713937163352966,0.69836163520813,-0.0901184156537056,0.701320707798004,0.707126617431641,-0.117980353534222,0.98142945766449,-0.151251465082169,-0.19778436422348,0.962837278842926,-0.183918163180351,-0.063262514770031,0.989702999591827,-0.128396898508072,-0.137416213750839,0.868647694587708,0.475991696119308,-0.125813588500023,0.869909584522247,0.476894468069077,-0.216740787029266,0.856732785701752,0.468008905649185,-0.0904302820563316,0.990973472595215,0.0989653840661049,-0.0381544046103954,0.992558300495148,0.115638554096222,-0.199685469269753,0.977841973304749,0.062855988740921,-0.209409713745117,0.681129097938538,0.701577305793762,-0.371989518404007,0.647699296474457,0.664913058280945,-0.188897266983986,0.683895230293274,0.704702198505402,-0.119047492742538,0.895130097866058,0.429616004228592,0.0275912545621395,0.878199458122253,0.477498024702072,-0.113148972392082,0.894862592220306,0.431761890649796,-0.0215436369180679,0.815111398696899,0.578903615474701,-0.14508219063282,0.834488987922668,0.531581878662109,-0.0472516939043999,0.820339679718018,0.56992107629776,-0.149633258581162,0.822008490562439,0.549465179443359,-0.131008669734001,0.824115991592407,0.551062166690826,-0.0446537286043167,0.830051600933075,0.555896103382111,-0.0515726879239082,0.803521394729614,0.593037605285645,-0.177985906600952,0.822970032691956,0.539482593536377,-0.0324139893054962,0.799246728420258,0.600128471851349,-0.130239561200142,0.84551340341568,0.517826974391937,-0.0715184435248375,0.849489271640778,0.522736251354218,-0.128778249025345,0.845648586750031,0.517971634864807,-0.0385336093604565,0.851773381233215,0.522491633892059,-0.12923526763916,0.84149569272995,0.524579107761383,-0.0715319067239761,0.848860621452332,0.523754596710205,-0.103040836751461,0.840979993343353,0.531163990497589,-0.071687638759613,0.841107249259949,0.536096513271332,-0.128645732998848,0.840244650840759,0.526724994182587,-0.134081661701202,0.936710476875305,0.323412358760834,
  1831. -0.159007608890533,0.93103152513504,0.328476697206497,-0.18475167453289,0.924471855163574,0.333494693040848,-0.0715886056423187,0.846144616603851,0.528123438358307,-0.104622684419155,0.842152714729309,0.528992414474487,-0.0393018946051598,0.849134266376495,0.526712775230408,-0.071654349565506,0.842845916748047,0.533363521099091,-0.103543981909752,0.842736542224884,0.528274297714233,-0.104603484272957,0.842717885971069,0.528095543384552,-0.190021753311157,0.929797351360321,0.315228015184402,-0.0986148044466972,0.95048201084137,0.294718652963638,-0.136566087603569,0.942981481552124,0.303538680076599,-0.104959964752197,0.831423759460449,0.545635342597961,-0.100343063473701,0.831467390060425,0.546436786651611,-0.055434949696064,0.830942928791046,0.553589224815369,-0.0642594024538994,0.859832108020782,0.506516933441162,-0.124070346355438,0.845106065273285,0.520002365112305,-0.0505298003554344,0.862722754478455,0.503146171569824,-0.0452743880450726,0.854179382324219,0.518003642559052,0.0601587146520615,0.869384050369263,0.490461319684982,-0.0614691190421581,0.850918054580688,0.521689713001251,0.0734423100948334,0.816284000873566,0.572963058948517,-0.104990452528,0.830367684364319,0.547235488891602,-0.0549061000347137,0.829147696495056,0.556326746940613,0.0617511942982674,0.863582909107208,0.500411331653595,-0.0419186502695084,0.848593473434448,0.52738231420517,0.0901392623782158,0.865935146808624,0.491966933012009,0.0997090637683868,0.841054558753967,0.531681716442108,0.245617151260376,0.822311282157898,0.513299465179443,0.0671729892492294,0.842704892158508,0.534168720245361,0.111817054450512,0.835361480712891,0.538208246231079,-0.104759156703949,0.838006198406219,0.535510241985321,0.0680665224790573,0.839092254638672,0.53971391916275,0.245467126369476,0.818919837474823,0.51876425743103,0.111911095678806,0.838663578033447,0.533028662204742,0.0674005523324013,0.841789603233337,0.535581529140472,0.244345441460609,0.797725915908813,0.551297247409821,0.0576394274830818,0.833913087844849,0.548877656459808,0.111552119255066,0.826606154441834,0.551614463329315,
  1832. 0.0595326535403728,0.845917880535126,0.529980003833771,-0.104662902653217,0.840955495834351,0.530885636806488,0.112020574510098,0.842667758464813,0.526652097702026,0.0571017265319824,0.830460906028748,0.554142653942108,0.24429626762867,0.796908438205719,0.552500188350677,0.183032542467117,0.811277389526367,0.555272996425629,-0.036707479506731,0.85794597864151,0.512426912784576,-0.10436150431633,0.849484205245972,0.517189800739288,-0.157967701554298,0.839891910552979,0.519256949424744,0.0616335161030293,0.858955204486847,0.508327901363373,-0.158168539404869,0.838075459003448,0.522122740745544,-0.104449927806854,0.84708297252655,0.52109569311142,-0.213968455791473,0.763411164283752,0.609443128108978,-0.0727272927761078,0.708309412002563,0.70214569568634,-0.16527284681797,0.746866047382355,0.644108712673187,-0.0849795192480087,0.834268450737,0.544770419597626,0.0558524951338768,0.822369992733002,0.566204965114594,0.178164169192314,0.79817670583725,0.57547515630722,-0.1592937707901,0.827385246753693,0.538571417331696,0.0572872459888458,0.831654071807861,0.552331149578094,-0.0853321626782417,0.833291172981262,0.54620897769928,-0.16135211288929,0.80513596534729,0.570720434188843,-0.0958394557237625,0.802591621875763,0.58877968788147,-0.189502447843552,0.805082440376282,0.562077462673187,0.150196209549904,0.719617903232574,0.677931547164917,-0.161523088812828,0.794258415699005,0.585716485977173,-0.10095376521349,0.786496996879578,0.609287142753601,-0.156399667263031,0.80785858631134,0.568246304988861,-0.188355311751366,0.806912004947662,0.559835135936737,-0.0943311005830765,0.807191133499146,0.582704126834869,-0.0624158568680286,-0.698912382125854,0.712478637695313,-0.234538435935974,-0.682105600833893,0.692620992660522,-0.152060404419899,-0.692841529846191,0.704874694347382,0.0193835701793432,-0.696824133396149,0.71698009967804,-0.0612680092453957,-0.708687543869019,0.702857255935669,-0.147897005081177,-0.716050505638123,0.682201027870178,-0.235151767730713,-0.703673660755157,0.670482754707336,-0.0621202886104584,-0.701451778411865,0.710004568099976,
  1833. -0.139205873012543,-0.705180406570435,0.695228338241577,-0.211698323488235,-0.655003428459167,0.725364983081818,-0.233201429247856,-0.648602426052094,0.724521994590759,-0.137454941868782,-0.674372732639313,0.725484371185303,-0.0615538842976093,-0.706274747848511,0.705256819725037,0.0184080749750137,-0.694068968296051,0.719673216342926,0.0416704453527927,-0.689633905887604,0.722958326339722,0.0534864068031311,-0.682936489582062,0.72851699590683,0.0409866683185101,-0.68599534034729,0.726450622081757,0.0174766089767218,-0.691428661346436,0.722233355045319,-0.137713387608528,-0.678725302219391,0.721364676952362,-0.0756505131721497,-0.689603567123413,0.720224916934967,-0.213698774576187,-0.661545753479004,0.718811511993408,0.00744785368442535,-0.704020500183105,0.710140645503998,-0.205832928419113,-0.635839879512787,0.74386864900589,-0.074357658624649,-0.682152390480042,0.727419435977936,-0.138366028666496,-0.689995765686035,0.7104651927948,-0.0627090111374855,-0.696378171443939,0.714930176734924,0.0111340843141079,-0.698721051216125,0.715307593345642,-0.0764462947845459,-0.694176137447357,0.715734302997589,-0.138433039188385,-0.691177845001221,0.709302127361298,0.0111329331994057,-0.69382119178772,0.720061242580414,-0.0624691359698772,-0.698452889919281,0.712924420833588,0.0441362820565701,-0.70265394449234,0.710161626338959,0.0111345890909433,-0.702208399772644,0.711884438991547,0.0120031237602234,-0.6949303150177,0.718976974487305,-0.0719695389270782,-0.668317198753357,0.740386784076691,0.03520692512393,-0.701282143592834,0.712013959884644,0.0373308323323727,-0.692219078540802,0.720721364021301,-0.0768035426735878,-0.69622540473938,0.713702619075775,0.0111329685896635,-0.693943202495575,0.719943702220917,0.0354159697890282,-0.700396239757538,0.712875127792358,0.0675913020968437,-0.710049033164978,0.700900673866272,0.0129020214080811,-0.693121135234833,0.720705687999725,0.0111345667392015,-0.702004969120026,0.712085008621216,0.0441129468381405,-0.702531576156616,0.710284113883972,0.0274410471320152,-0.702361047267914,0.71129184961319,
  1834. 0.0405859462916851,-0.683857381343842,0.728486061096191,0.0525369197130203,-0.680981576442719,0.730413556098938,0.0261378437280655,-0.687190771102905,0.726006746292114,0.0233589727431536,-0.69520890712738,0.718428134918213,0.0368120782077312,-0.694445490837097,0.718603134155273,0.0111334575340152,-0.695792973041534,0.718156158924103,0.0728366449475288,-0.696340203285217,0.714006423950195,0.037536047399044,-0.691336095333099,0.72155773639679,0.0239138267934322,-0.689161717891693,0.724212884902954,0.00598981138318777,-0.689215362071991,0.724531769752502,0.0258571784943342,-0.683901309967041,0.729116201400757,0.0505471229553223,-0.67686939239502,0.734365582466125,0.0495297908782959,-0.674758911132813,0.736374378204346,0.0604420825839043,-0.670027792453766,0.739871323108673,0.00689261313527822,-0.692221283912659,0.721652448177338,-0.0111341001465917,-0.698812484741211,0.715218245983124,0.0111343432217836,-0.70028692483902,0.713774740695953,0.0273355767130852,-0.701139688491821,0.712499856948853,0.0271756891161203,-0.699286043643951,0.714325308799744,0.00877065118402243,-0.698435425758362,0.715619325637817,-0.0111337909474969,-0.697247505187988,0.716744005680084,-0.0111333066597581,-0.695193767547607,0.718736171722412,0.023673040792346,-0.691794157028198,0.721706628799438,0.0111327264457941,-0.693117558956146,0.720738649368286,0.0647383034229279,-0.68000590801239,0.730343103408813,0.109284967184067,-0.668157637119293,0.735949873924255,0.00715875625610352,-0.693105161190033,0.720801055431366,0.00814378913491964,-0.696367144584656,0.717639625072479,0.111100643873215,-0.695792376995087,0.709598302841187,-0.0111334221437573,-0.695649981498718,0.718294680118561,0.154916673898697,-0.656804323196411,0.737976253032684,0.109370313584805,-0.669425308704376,0.734784305095673,0.0648471042513847,-0.680257141590118,0.730099439620972,0.159684643149376,-0.745713531970978,0.64684784412384,0.114192932844162,-0.747090697288513,0.654840052127838,0.15759950876236,-0.745811879634857,0.647245764732361,0.0426368042826653,-0.693055093288422,0.719622671604156,
  1835. 0.0721217691898346,-0.698228776454926,0.71223247051239,0.0238896049559116,-0.689427137374878,0.723961055278778,0.0471258796751499,-0.672736525535584,0.738379895687103,0.0250883549451828,-0.676138877868652,0.736347019672394,-0.0111275445669889,-0.680990397930145,0.732207775115967,0.0784645900130272,-0.681246280670166,0.727837085723877,0.0461316965520382,-0.677296459674835,0.734262526035309,0.0758446827530861,-0.680953800678253,0.72838830947876,0.110727772116661,-0.689995348453522,0.715294301509857,0.107690207660198,-0.690280795097351,0.715482532978058,-0.0111335935071111,-0.696361660957336,0.717604756355286,0.111610010266304,-0.657983303070068,0.744715511798859,0.0483731739223003,-0.666966617107391,0.74351567029953,-0.0111224539577961,-0.67291921377182,0.739632368087769,0.112671732902527,-0.721046686172485,0.683664262294769,0.164857193827629,-0.718503713607788,0.67570298910141,0.103560790419579,-0.721283435821533,0.68485426902771,0.109687186777592,-0.674203991889954,0.73035454750061,0.0784012228250504,-0.672433793544769,0.735993325710297,0.0477099008858204,-0.670041680335999,0.740788757801056,0.0742994025349617,-0.686041951179504,0.723758280277252,0.107950210571289,-0.68822979927063,0.717416524887085,0.1697668582201,-0.69013923406601,0.703482091426849,-0.0632685869932175,-0.977645933628082,-0.200513139367104,-0.238616213202477,-0.950918972492218,-0.197016373276711,-0.151235997676849,-0.96814489364624,-0.199557408690453,0.0176932476460934,-0.98030549287796,-0.196693271398544,-0.0620745569467545,-0.974835813045502,-0.214107096195221,-0.147072345018387,-0.961732268333435,-0.231172397732735,-0.239205524325371,-0.943881511688232,-0.22774638235569,-0.062955766916275,-0.976925313472748,-0.204091906547546,-0.144001588225365,-0.965768039226532,-0.215767964720726,-0.207898214459419,-0.965386807918549,-0.157501965761185,-0.237294942140579,-0.959665477275848,-0.150775849819183,-0.1424261033535,-0.974781811237335,-0.171799823641777,-0.0623680874705315,-0.975541591644287,-0.210781961679459,0.016718864440918,-0.981070876121521,-0.192925930023193,
  1836. 0.0422757714986801,-0.981473088264465,-0.186877846717834,0.0555172078311443,-0.98250287771225,-0.177780672907829,0.0415798835456371,-0.982437610626221,-0.181899458169937,0.0158092826604843,-0.981771349906921,-0.189407333731651,-0.142661809921265,-0.973648905754089,-0.177919745445251,-0.0811889544129372,-0.978874921798706,-0.187649145722389,-0.209840893745422,-0.963475286960602,-0.166379600763321,0.00193444639444351,-0.978918671607971,-0.204241290688515,-0.202204674482346,-0.970425009727478,-0.131865859031677,-0.079711377620697,-0.981076717376709,-0.176449820399284,-0.143251538276672,-0.970510542392731,-0.193876907229424,-0.0635730400681496,-0.978336572647095,-0.197018101811409,0.00771669065579772,-0.980019688606262,-0.198750704526901,-0.082139365375042,-0.977381110191345,-0.194882869720459,-0.143319442868233,-0.970118522644043,-0.195779353380203,0.00772690214216709,-0.981316566467285,-0.192245110869408,-0.0633284524083138,-0.977782607078552,-0.199826806783676,0.0447953753173351,-0.977751314640045,-0.204928606748581,0.00770909944549203,-0.979055643081665,-0.203447014093399,0.00658933818340302,-0.981472671031952,-0.191488891839981,-0.0771939679980278,-0.984497606754303,-0.157497629523277,0.030518414452672,-0.979133546352386,-0.200913310050964,0.0322662517428398,-0.98110294342041,-0.190777108073235,-0.0825312733650208,-0.976747095584869,-0.197872802615166,0.0077264946885407,-0.98126482963562,-0.192508950829506,0.0307782758027315,-0.979432880878448,-0.199408903717995,0.0706227645277977,-0.973501741886139,-0.217501580715179,0.00759900733828545,-0.982002019882202,-0.188717558979988,0.00770957348868251,-0.979115843772888,-0.203156992793083,0.044772244989872,-0.977787137031555,-0.204762682318687,0.0205414555966854,-0.978808581829071,-0.203744560480118,0.0411732532083988,-0.982988655567169,-0.178991824388504,0.0545566901564598,-0.983035683631897,-0.175112530589104,0.0194038338959217,-0.982505023479462,-0.185222744941711,0.0279186740517616,-0.980620384216309,-0.193918600678444,0.0317615158855915,-0.980544865131378,-0.193708464503288,
  1837. 0.00772265996783972,-0.98077780008316,-0.194975167512894,0.0761436372995377,-0.97718071937561,-0.198292702436447,0.0327304117381573,-0.981608510017395,-0.188078314065933,0.028350654989481,-0.98194545507431,-0.187027737498283,0.00856208056211472,-0.982718169689178,-0.184910014271736,0.0191568862646818,-0.983258187770844,-0.181208312511444,0.0525015369057655,-0.984147489070892,-0.169403091073036,0.0513755045831203,-0.984740316867828,-0.166274443268776,0.0602020546793938,-0.985030889511108,-0.161523535847664,0.00938995368778706,-0.982007801532745,-0.188606858253479,-0.00771587854251266,-0.979916572570801,-0.199258491396904,0.00771362846717238,-0.979630827903748,-0.200658932328224,0.0204206965863705,-0.979218780994415,-0.2017762362957,0.0202683340758085,-0.979730188846588,-0.199293524026871,0.0116360560059547,-0.980006337165833,-0.198625788092613,-0.00771935516968369,-0.980358064174652,-0.197074621915817,-0.00772488862276077,-0.981060862541199,-0.193545579910278,0.0282333362847567,-0.981590032577515,-0.188902303576469,0.00772792426869273,-0.981446385383606,-0.191581189632416,0.064526155591011,-0.982450723648071,-0.175005495548248,0.112660214304924,-0.980511784553528,-0.160948157310486,0.0097917877137661,-0.981657683849335,-0.190400466322899,0.0109806787222624,-0.98060154914856,-0.195704072713852,0.114658333361149,-0.973157525062561,-0.199544697999954,-0.00772295519709587,-0.980815291404724,-0.19478651881218,0.15680405497551,-0.976050317287445,-0.150792688131332,0.11275677382946,-0.980204105377197,-0.162744507193565,0.0646340474486351,-0.982383608818054,-0.175341963768005,0.159070655703545,-0.948082506656647,-0.275383502244949,0.117986410856247,-0.954885542392731,-0.272530615329742,0.159518912434578,-0.947998881340027,-0.275412052869797,0.0415129698812962,-0.980634033679962,-0.191399171948433,0.0753724798560143,-0.976689875125885,-0.200987339019775,0.0283148027956486,-0.981837153434753,-0.187600821256638,0.04591004550457,-0.985279440879822,-0.164671525359154,0.0295569933950901,-0.985409259796143,-0.167615443468094,-0.00775344856083393,-0.984687983989716,-0.174153596162796,
  1838. 0.081900991499424,-0.980606257915497,-0.178055539727211,0.0449894368648529,-0.984365522861481,-0.170295268297195,0.0738371461629868,-0.981548845767975,-0.176379963755608,0.114246234297752,-0.974855780601501,-0.191322207450867,0.110166892409325,-0.975288391113281,-0.191509589552879,-0.00772182596847415,-0.980671882629395,-0.195507034659386,0.114150524139404,-0.982336938381195,-0.148269414901733,0.0471686124801636,-0.986478090286255,-0.156959265470505,-0.00776777602732182,-0.986507534980774,-0.163531452417374,0.116345375776291,-0.965031147003174,-0.234901458024979,0.16431599855423,-0.957540392875671,-0.236889541149139,0.105967909097672,-0.966347396373749,-0.23440021276474,0.112142510712147,-0.978972733020782,-0.170400887727737,0.076377734541893,-0.98329746723175,-0.165204852819443,0.0465560033917427,-0.985901951789856,-0.160716697573662,0.0722686499357224,-0.980407238006592,-0.183245718479156,0.110383734107018,-0.975709974765778,-0.189223304390907,0.16930715739727,-0.965479969978333,-0.19794836640358,0.0648650825023651,0.963983952999115,-0.25792932510376,0.239030167460442,0.938490688800812,-0.249198466539383,0.147797375917435,0.955635249614716,-0.254788935184479,-0.0172851979732513,0.965551912784576,-0.259635865688324,0.0633328035473824,0.968357920646667,-0.241395711898804,0.143471613526344,0.964544653892517,-0.221516370773315,0.239748731255531,0.9483402967453,-0.207776933908463,0.0635755434632301,0.967687547206879,-0.244006246328354,0.145170882344246,0.962712168693542,-0.228277668356895,0.21086061000824,0.93271815776825,-0.292531430721283,0.237688064575195,0.925237119197845,-0.295703798532486,0.142986714839935,0.948227643966675,-0.283582866191864,0.0636533722281456,0.967470765113831,-0.244843974709511,-0.0162866413593292,0.964517951011658,-0.263514578342438,-0.0368556417524815,0.962703943252563,-0.268034964799881,-0.0538501515984535,0.95933723449707,-0.277078211307526,-0.0362547039985657,0.961510360240936,-0.272366672754288,-0.0154688321053982,0.963659048080444,-0.26668706536293,0.143399521708488,0.950965225696564,-0.27404722571373,
  1839. 0.0791207551956177,0.96034449338913,-0.267354428768158,0.213586136698723,0.935916602611542,-0.280073493719101,-0.00730423536151648,0.967877447605133,-0.251316249370575,0.205805778503418,0.926482319831848,-0.315078616142273,0.0776581466197968,0.957348525524139,-0.278304040431976,0.144087582826614,0.955528199672699,-0.257302671670914,0.0648697391152382,0.963970124721527,-0.257979810237885,-0.00760894222185016,0.966335654258728,-0.257172465324402,0.0800778716802597,0.962247967720032,-0.260127693414688,0.14414244890213,0.955892026424408,-0.255916804075241,-0.0075941807590425,0.964460909366608,-0.264116287231445,0.0646873190999031,0.964508831501007,-0.256004452705383,-0.0391084924340248,0.967015445232391,-0.251697897911072,-0.00761700281873345,0.967359364032745,-0.253294110298157,-0.0117201115936041,0.96467798948288,-0.263171285390854,0.0752271488308907,0.952140867710114,-0.296257734298706,-0.0276916921138763,0.966058015823364,-0.256837010383606,-0.0291199404746294,0.963775336742401,-0.265121102333069,0.0804650634527206,0.963005006313324,-0.2571901679039,-0.00759483175352216,0.964543581008911,-0.263814300298691,-0.027956273406744,0.965640962123871,-0.258372157812119,-0.0686160922050476,0.968548774719238,-0.239176079630852,-0.0125841125845909,0.964032590389252,-0.265486210584641,-0.00761663913726807,0.967313170433044,-0.25347027182579,-0.0390985943377018,0.966996967792511,-0.251769989728928,-0.0241580791771412,0.967266976833344,-0.252608388662338,-0.0357695296406746,0.960533201694489,-0.275855839252472,-0.0526763275265694,0.958469212055206,-0.280289381742477,-0.0228554885834455,0.96190869808197,-0.27241376042366,-0.0240952353924513,0.96479070186615,-0.261913031339645,-0.0285986755043268,0.964617311954498,-0.262098520994186,-0.00760045647621155,0.965257942676544,-0.261188358068466,-0.0730561092495918,0.96426910161972,-0.254652738571167,-0.0292468518018723,0.96356874704361,-0.265856832265854,-0.0244082771241665,0.963370740413666,-0.267060071229935,-0.00540233729407191,0.962717235088348,-0.270455718040466,-0.0226026680320501,0.960826456546783,-0.276227593421936,
  1840. -0.0507721602916718,0.957036674022675,-0.285487145185471,-0.0474464148283005,0.954462945461273,-0.294532388448715,-0.0575083717703819,0.952353656291962,-0.299525141716003,-0.00482456712052226,0.962004244327545,-0.272991836071014,0.00761252315714955,0.966790437698364,-0.255457371473312,-0.00761535251513124,0.96714973449707,-0.254093289375305,-0.0241623241454363,0.967283844947815,-0.252543419599533,-0.023984931409359,0.966575920581818,-0.255256116390228,-0.00856256764382124,0.966494083404541,-0.256545931100845,0.0076075573451817,0.966159820556641,-0.257832109928131,0.0075905411504209,0.963998734951019,-0.265798479318619,-0.0245711505413055,0.962619841098785,-0.269739538431168,-0.00758641213178635,0.963474333286285,-0.267693221569061,-0.063300184905529,0.95744001865387,-0.281605869531631,-0.108455933630466,0.950049638748169,-0.29264822602272,-0.00623173546046019,0.963728666305542,-0.266811311244965,-0.00827602948993444,0.966160237789154,-0.257809787988663,-0.110486447811127,0.961589395999908,-0.251274138689041,0.0076059796847403,0.965959429740906,-0.258581817150116,-0.155471101403236,0.941928803920746,-0.297655701637268,-0.108684994280338,0.951381146907806,-0.288203865289688,-0.0642505660653114,0.958241760730743,-0.27864807844162,-0.153811782598495,0.972342967987061,-0.175758808851242,-0.113419286906719,0.976882934570313,-0.181206732988358,-0.158280268311501,0.97173810005188,-0.175135746598244,-0.0438236221671104,0.964382886886597,-0.26085489988327,-0.0723359063267708,0.964982748031616,-0.252142310142517,-0.0243836883455515,0.963483452796936,-0.266655653715134,-0.0495547950267792,0.954221069812775,-0.294968992471695,-0.0258760713040829,0.956298351287842,-0.291245371103287,0.00754556944593787,0.958287358283997,-0.285706996917725,-0.0786605924367905,0.958453595638275,-0.274188339710236,-0.0472941659390926,0.958391308784485,-0.281512916088104,-0.0722126588225365,0.958522081375122,-0.275718867778778,-0.1097651720047,0.957561910152435,-0.266508519649506,-0.107743591070175,0.957788228988647,-0.266520649194717,0.00759141147136688,0.964109301567078,-0.265397220849991,
  1841. -0.111500509083271,0.945362210273743,-0.306362748146057,-0.0505671724677086,0.952284097671509,-0.300995081663132,0.00752376532182097,0.955518186092377,-0.294836193323135,-0.11175662279129,0.968453049659729,-0.222730994224548,-0.159363761544228,0.962911486625671,-0.217726185917854,-0.103531077504158,0.969180524349213,-0.223540768027306,-0.109105467796326,0.953548610210419,-0.280786842107773,-0.0748389437794685,0.954981565475464,-0.287070572376251,-0.0489838570356369,0.9552943110466,-0.291570574045181,-0.0707560479640961,0.960418462753296,-0.269425213336945,-0.107336297631264,0.959000706672668,-0.262291133403778,-0.163533672690392,0.954189717769623,-0.250557065010071
  1842. }
  1843. BinormalsW: *795 {
  1844. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1845. }
  1846. }
  1847. LayerElementTangent: 0 {
  1848. Version: 102
  1849. Name: "UVmap_0"
  1850. MappingInformationType: "ByPolygonVertex"
  1851. ReferenceInformationType: "Direct"
  1852. Tangents: *2385 {
  1853. a: 0.212768599390984,-0.319481879472733,-0.923396348953247,0.102528050541878,-0.354471057653427,-0.929429113864899,0.373480051755905,-0.282487154006958,-0.883580029010773,-0.34250196814537,0.605929970741272,-0.718012034893036,-0.13360333442688,0.669919788837433,-0.730313360691071,-0.0459580011665821,0.706402361392975,-0.706316888332367,0.21629823744297,-0.924154341220856,-0.314886957406998,0.317636132240295,-0.908925414085388,-0.270114600658417,0.193317860364914,-0.931900918483734,-0.30690211057663,-0.342262893915176,0.604764044284821,-0.719108164310455,-0.344768524169922,0.603806614875793,-0.718715727329254,-0.133316442370415,0.668767929077148,-0.731420695781708,-0.183914050459862,0.621016919612885,-0.761914432048798,-0.128246873617172,0.648356556892395,-0.750457525253296,-0.34236741065979,0.583825707435608,-0.736160397529602,-0.333873152732849,0.52250212430954,-0.784550964832306,-0.319649487733841,0.524262070655823,-0.789286673069,-0.17737241089344,0.557288885116577,-0.811152338981628,0.370080858469009,-0.264906018972397,-0.890429675579071,0.100038193166256,-0.342953741550446,-0.934010207653046,0.128340989351273,-0.298031657934189,-0.945888876914978,-0.14466418325901,0.301291972398758,-0.94249427318573,0.0630330294370651,0.330694854259491,-0.941630363464355,-0.0474657230079174,0.311877071857452,-0.948936104774475,0.111063249409199,-0.0864096879959106,-0.990049660205841,0.247457131743431,-0.0678811967372894,-0.966518044471741,0.335582405328751,-0.0569529086351395,-0.9402876496315,0.236481055617332,0.604502379894257,-0.760692834854126,0.115614406764507,0.612324595451355,-0.782107353210449,0.163568004965782,0.598607361316681,-0.784165024757385,0.219617992639542,0.279863655567169,-0.934582531452179,0.372529298067093,0.277223378419876,-0.885646283626556,0.294638872146606,0.283609956502914,-0.912553310394287,0.373135089874268,0.401096433401108,-0.83659553527832,0.202897548675537,0.397628039121628,-0.894832134246826,0.153332188725472,0.417327284812927,-0.895727157592773,0.199242129921913,0.420003831386566,-0.885380923748016,
  1854. 0.052193071693182,0.406352996826172,-0.912224292755127,0.154047921299934,0.402299672365189,-0.902454555034637,0.151935279369354,0.444158107042313,-0.882971823215485,0.370428472757339,0.424198240041733,-0.82634049654007,0.372374385595322,0.427557319402695,-0.82373058795929,-0.151088580489159,0.346634268760681,-0.925752103328705,0.0131251141428947,0.371781140565872,-0.928227722644806,0.0567203648388386,0.375381886959076,-0.925133109092712,0.155653461813927,0.364269614219666,-0.918193697929382,0.0564713105559349,0.377108573913574,-0.924445867538452,0.0134919015690684,0.367114663124084,-0.930077850818634,-0.150487571954727,0.360099196434021,-0.920696496963501,0.0122598772868514,0.382735013961792,-0.923776805400848,-0.151952937245369,0.352869987487793,-0.923251390457153,-0.123659260571003,0.141529977321625,-0.982180058956146,-0.120834246277809,0.14545202255249,-0.981958746910095,-0.266537398099899,0.11731169372797,-0.956658661365509,0.0131814209744334,0.371065557003021,-0.92851310968399,0.015825467184186,0.374610245227814,-0.927047312259674,0.155505135655403,0.368092119693756,-0.916693270206451,0.012440369464457,0.380456298589706,-0.924715340137482,-0.150222912430763,0.357684850692749,-0.921680331230164,0.0155705353245139,0.376776963472366,-0.926173150539398,-0.263059854507446,0.0991838648915291,-0.959667801856995,-0.132017254829407,0.115667894482613,-0.984475791454315,-0.12099801003933,0.122005864977837,-0.985126435756683,0.0144240539520979,0.386486887931824,-0.922182083129883,-0.151327416300774,0.36780720949173,-0.917506337165833,-0.154833033680916,0.377162426710129,-0.913112938404083,-0.152154147624969,0.339867532253265,-0.928083598613739,-0.299159795045853,0.318317413330078,-0.899542927742004,-0.293245404958725,0.318927973508835,-0.901272475719452,-0.293969333171844,0.334853619337082,-0.895240247249603,-0.13766160607338,0.338769674301147,-0.930743992328644,-0.153296574950218,0.355421423912048,-0.922049880027771,-0.132096379995346,0.419512420892715,-0.898086786270142,0.0141133889555931,0.389108270406723,-0.921083927154541,
  1855. -0.155098110437393,0.381018728017807,-0.911465585231781,-0.137566432356834,0.340314924716949,-0.930194199085236,-0.29403093457222,0.336296588182449,-0.894678950309753,-0.202154338359833,0.337501108646393,-0.91936206817627,-0.197186440229416,0.386704117059708,-0.900875926017761,0.0210334397852421,0.365418761968613,-0.930605590343475,-0.134852886199951,0.381740719079971,-0.914379000663757,0.0210951808840036,0.38736093044281,-0.921686768531799,0.014287194237113,0.387642294168472,-0.921699166297913,-0.134021401405334,0.393539875745773,-0.909485936164856,0.0242611709982157,0.377213329076767,-0.925808548927307,0.0204605087637901,0.382120192050934,-0.923886120319366,-0.134320542216301,0.389337927103043,-0.911248564720154,0.0307833254337311,0.400893777608871,-0.915607213973999,0.0844725072383881,0.381935834884644,-0.920320272445679,0.0215534623712301,0.391140788793564,-0.920078456401825,0.0832730010151863,0.363359928131104,-0.927919805049896,0.0159006882458925,0.373970299959183,-0.92730438709259,0.0185626875609159,0.366407632827759,-0.930269360542297,0.0855796635150909,0.399427980184555,-0.912761449813843,0.0343156568706036,0.413633197546005,-0.909796714782715,0.192061334848404,0.375649571418762,-0.906642079353333,0.155971169471741,0.355822384357452,-0.92144638299942,0.0168979857116938,0.365463405847549,-0.930672347545624,0.058367658406496,0.376529425382614,-0.924564123153687,0.0821557715535164,0.346382170915604,-0.934489071369171,0.0577084831893444,0.380530834197998,-0.922965884208679,0.0163241308182478,0.370363712310791,-0.928743481636047,0.34816300868988,0.52494204044342,-0.776671350002289,0.141946688294411,0.583448112010956,-0.799649715423584,0.0310032572597265,0.531624376773834,-0.846412658691406,0.194291204214096,0.407493591308594,-0.892300367355347,0.0866324454545975,0.416396915912628,-0.905046105384827,0.197237774729729,0.401091516017914,-0.894551753997803,0.0540470890700817,0.402506470680237,-0.913820266723633,0.0854637026786804,0.397579461336136,-0.913578987121582,0.194448083639145,0.40583723783493,-0.893020749092102,
  1856. 0.0474292524158955,0.441177427768707,-0.896165668964386,0.18934440612793,0.45604419708252,-0.869581699371338,0.363193690776825,0.460069954395294,-0.810201346874237,0.217027977108955,0.503374874591827,-0.83636873960495,0.227133542299271,0.461382240056992,-0.857634425163269,0.187837213277817,0.469611793756485,-0.862659811973572,0.230497255921364,0.442466378211975,-0.866657078266144,0.365671157836914,0.448187977075577,-0.815728008747101,0.191005870699883,0.440472036600113,-0.877212166786194,0.213435620069504,-0.827049851417542,-0.520032465457916,0.105159871280193,-0.857785820960999,-0.50313526391983,0.370923906564713,-0.774289965629578,-0.512728452682495,-0.338948756456375,0.0235490966588259,-0.940510094165802,-0.132389485836029,0.0658840090036392,-0.989005744457245,-0.0453631430864334,0.108897939324379,-0.993017435073853,0.217851161956787,-0.917383432388306,0.333089381456375,0.319861531257629,-0.876861870288849,0.358890056610107,0.190349861979485,-0.919677138328552,0.343454629182816,-0.33870929479599,0.021953858435154,-0.940634906291962,-0.341805130243301,0.0211455952376127,-0.939532935619354,-0.132099375128746,0.0642954483628273,-0.989149153232574,-0.182826295495033,0.00651293573901057,-0.983123660087585,-0.126965194940567,0.0364640466868877,-0.991236805915833,-0.339315056800842,-0.00536790024489164,-0.940657496452332,-0.330591559410095,-0.0833359062671661,-0.9400874376297,-0.320222526788712,-0.0853983759880066,-0.943485379219055,-0.17665921151638,-0.0742278769612312,-0.9814692735672,0.371858388185501,-0.76334148645401,-0.52823394536972,0.102663889527321,-0.851651966571808,-0.513954401016235,0.126559138298035,-0.824660062789917,-0.551288306713104,-0.14559942483902,-0.354451656341553,-0.923669219017029,0.0623530857264996,-0.331887543201447,-0.941255927085876,-0.0452932454645634,-0.350623041391373,-0.935420870780945,0.109573967754841,-0.687225520610809,-0.718132793903351,0.249262124300003,-0.657678425312042,-0.710864007472992,0.336975932121277,-0.632493376731873,-0.697423338890076,0.234343260526657,-0.00605956790968776,-0.972135126590729,
  1857. 0.115299306809902,-0.0120347198098898,-0.993257880210876,0.165145143866539,-0.0237270221114159,-0.985983848571777,0.221441969275475,-0.366572439670563,-0.903652667999268,0.373909413814545,-0.338416993618011,-0.863519370555878,0.291565030813217,-0.350835561752319,-0.889890015125275,0.375120162963867,-0.210827887058258,-0.902682960033417,0.204684600234032,-0.249945923686028,-0.946377992630005,0.149448290467262,-0.235617056488991,-0.960286319255829,0.200986936688423,-0.226396963000298,-0.953073382377625,0.0516819879412651,-0.254474133253098,-0.965697646141052,0.150164768099785,-0.251728445291519,-0.95607715845108,0.148064762353897,-0.206666335463524,-0.96714323759079,0.373983591794968,-0.18566720187664,-0.908660531044006,0.374483913183212,-0.182019934058189,-0.909192264080048,-0.15179155766964,-0.30844908952713,-0.939051926136017,0.0131048886105418,-0.291210025548935,-0.956569373607636,0.0561315454542637,-0.286655455827713,-0.956388056278229,0.151755511760712,-0.291221737861633,-0.944542407989502,0.0559175089001656,-0.285104125738144,-0.956864058971405,0.0134807322174311,-0.296337932348251,-0.954988121986389,-0.149437963962555,-0.296260684728622,-0.943343997001648,0.0122550101950765,-0.279602617025375,-0.960037708282471,-0.152684211730957,-0.30152302980423,-0.941154301166534,-0.122214004397392,-0.504277467727661,-0.854849696159363,-0.12235264480114,-0.502096354961395,-0.856112778186798,-0.267193466424942,-0.507519423961639,-0.819165229797363,0.0131844226270914,-0.292295455932617,-0.956237196922302,0.0168064944446087,-0.288039833307266,-0.957470953464508,0.15160845220089,-0.287306547164917,-0.945764124393463,0.012427638284862,-0.281961649656296,-0.959345161914825,-0.149166390299797,-0.298763543367386,-0.942597329616547,0.0165912695229054,-0.28618323802948,-0.958031356334686,-0.263716608285904,-0.523538410663605,-0.810161173343658,-0.132656306028366,-0.526497721672058,-0.839763462543488,-0.119517810642719,-0.521317005157471,-0.84495210647583,0.0154271367937326,-0.27612966299057,-0.960996568202972,-0.150295317173004,-0.288282364606857,-0.945676803588867,
  1858. -0.154890462756157,-0.276885539293289,-0.948337137699127,-0.152238190174103,-0.316440105438232,-0.936316847801209,-0.299792766571045,-0.315019965171814,-0.900492489337921,-0.291749179363251,-0.315641313791275,-0.902913630008698,-0.292545557022095,-0.299522638320923,-0.908131778240204,-0.137115135788918,-0.319064766168594,-0.937761783599854,-0.15334364771843,-0.300489038228989,-0.941377758979797,-0.131214365363121,-0.234440684318542,-0.963234424591064,0.0151167204603553,-0.27344623208046,-0.961768507957459,-0.155148774385452,-0.27278071641922,-0.949483811855316,-0.137015208601952,-0.31751361489296,-0.93830281496048,-0.292614012956619,-0.29804790019989,-0.908594787120819,-0.197805434465408,-0.313191592693329,-0.928861677646637,-0.192782312631607,-0.263091236352921,-0.945313692092896,0.0227999947965145,-0.298156440258026,-0.954244673252106,-0.134130120277405,-0.274643570184708,-0.952144980430603,0.0174425728619099,-0.27465695142746,-0.961384057998657,0.0152632668614388,-0.274713009595871,-0.961405217647552,-0.133251309394836,-0.262232005596161,-0.955760657787323,0.0260333325713873,-0.285951256752014,-0.957890450954437,0.0168026071041822,-0.280134856700897,-0.959813594818115,-0.133568704128265,-0.266683399677277,-0.954483807086945,0.0325702913105488,-0.261072129011154,-0.964769780635834,0.0822983458638191,-0.278400480747223,-0.956932783126831,0.0179103165864944,-0.270644456148148,-0.962512850761414,0.0811612755060196,-0.297353953123093,-0.951311469078064,0.0168962515890598,-0.288814216852188,-0.957236170768738,0.0148948589339852,-0.296382129192352,-0.95495331287384,0.0833667069673538,-0.259976923465729,-0.962009370326996,0.036102507263422,-0.247514709830284,-0.96821129322052,0.195372641086578,-0.275245070457459,-0.941312730312347,0.152070850133896,-0.299841493368149,-0.941790580749512,0.017889067530632,-0.297371953725815,-0.954594075679779,0.0555055998265743,-0.284820318222046,-0.956972599029541,0.0800978913903236,-0.314516484737396,-0.945866763591766,0.0548422895371914,-0.280813872814178,-0.958194077014923,0.017309857532382,-0.292380690574646,-0.956145346164703,
  1859. 0.351605653762817,-0.076771505177021,-0.932995080947876,0.138181179761887,-0.0453384481370449,-0.989368677139282,0.0279569979757071,-0.119149751961231,-0.992482721805573,0.194078728556633,-0.240948989987373,-0.950934827327728,0.0843700468540192,-0.242083936929703,-0.966580092906952,0.200574114918709,-0.247791469097137,-0.947823524475098,0.0511818565428257,-0.25872078537941,-0.964595258235931,0.0832609087228775,-0.261829286813736,-0.96151602268219,0.194227457046509,-0.242585405707359,-0.950488328933716,0.0445107035338879,-0.218524903059006,-0.974815726280212,0.189092844724655,-0.188917472958565,-0.963615119457245,0.366580009460449,-0.147210747003555,-0.918666481971741,0.220404028892517,-0.131590887904167,-0.966491520404816,0.226262152194977,-0.177630305290222,-0.95773321390152,0.187585428357124,-0.174121335148811,-0.96669203042984,0.229612112045288,-0.197732329368591,-0.952984869480133,0.369071513414383,-0.159835994243622,-0.915553867816925,0.19076569378376,-0.205809906125069,-0.959818065166473,0.231229722499847,-0.486443936824799,-0.842558681964874,0.126958042383194,-0.524240732192993,-0.8420529961586,0.387450397014618,-0.436175137758255,-0.812178194522858,-0.361212462186813,0.438592731952667,-0.822898507118225,-0.15032958984375,0.508951723575592,-0.847566604614258,-0.0699715465307236,0.550814867019653,-0.831689238548279,0.255111485719681,-0.958556890487671,-0.126833751797676,0.356784790754318,-0.930319309234619,-0.0849164351820946,0.226757124066353,-0.966569840908051,-0.119682863354683,-0.360917538404465,0.437246710062027,-0.82374382019043,-0.359972208738327,0.437395423650742,-0.824078559875488,-0.149986118078232,0.507619380950928,-0.848426043987274,-0.199631795287132,0.451749235391617,-0.869522750377655,-0.143919110298157,0.484117537736893,-0.863086044788361,-0.356546550989151,0.414523780345917,-0.837284028530121,-0.34499853849411,0.345517933368683,-0.872693181037903,-0.333508491516113,0.3458331823349,-0.877024233341217,-0.190320074558258,0.379801452159882,-0.905278503894806,0.391419261693954,-0.418089717626572,-0.819751143455505,
  1860. 0.124051354825497,-0.513820588588715,-0.848881423473358,0.145163118839264,-0.472668439149857,-0.869202196598053,-0.14723165333271,0.105023220181465,-0.983510553836823,0.056455921381712,0.1413264721632,-0.988351941108704,-0.0479028448462486,0.118437550961971,-0.991805374622345,0.12026097625494,-0.274631410837173,-0.953999400138855,0.258390247821808,-0.246385112404823,-0.93409252166748,0.349286556243896,-0.225507214665413,-0.909475326538086,0.213954284787178,0.452019363641739,-0.865968883037567,0.10070276260376,0.452375382184982,-0.886123836040497,0.145914241671562,0.43920686841011,-0.886457324028015,0.216224670410156,0.0993157625198364,-0.971279203891754,0.371796309947968,0.112143509089947,-0.921515762805939,0.286726623773575,0.109828621149063,-0.951696157455444,0.367788285017014,0.243402153253555,-0.897489488124847,0.194430887699127,0.221672549843788,-0.955540657043457,0.142209857702255,0.239069059491158,-0.960532307624817,0.189675077795982,0.24588280916214,-0.950560390949249,0.0426211506128311,0.220810383558273,-0.974385142326355,0.143571585416794,0.222935184836388,-0.96420294046402,0.139670938253403,0.267823368310928,-0.953290462493896,0.36110258102417,0.268187433481216,-0.893129587173462,0.366012305021286,0.271920770406723,-0.889996707439423,-0.155457079410553,0.152531176805496,-0.975995659828186,0.00458011496812105,0.182499304413795,-0.983195304870605,0.0483693480491638,0.188164442777634,-0.980945765972137,0.14677782356739,0.182657763361931,-0.97215861082077,0.0480961762368679,0.189727902412415,-0.980657994747162,0.00519158598035574,0.17681197822094,-0.984231054782867,-0.153855755925179,0.16640031337738,-0.973981201648712,0.00326188188046217,0.194734737277031,-0.980850517749786,-0.156607627868652,0.159322112798691,-0.974725961685181,-0.117983087897301,-0.0586025267839432,-0.991284906864166,-0.117256380617619,-0.0552188642323017,-0.991565346717834,-0.264294296503067,-0.0837307348847389,-0.960800528526306,0.00474830158054829,0.180935904383659,-0.98348343372345,0.0124097093939781,0.186038747429848,-0.982464134693146,
  1861. 0.146469220519066,0.186688676476479,-0.971439182758331,0.00352045241743326,0.192337512969971,-0.981322526931763,-0.153487458825111,0.163852334022522,-0.974471151828766,0.0120246894657612,0.188599541783333,-0.981980443000793,-0.260118901729584,-0.101998001337051,-0.960174262523651,-0.131145685911179,-0.0864583179354668,-0.987585842609406,-0.114538669586182,-0.0782170668244362,-0.990334808826447,0.0104821259155869,0.198840662837029,-0.979975879192352,-0.155022159218788,0.174511075019836,-0.972375452518463,-0.163315102458,0.185881584882736,-0.968904674053192,-0.159025311470032,0.143495857715607,-0.976790606975555,-0.304693460464478,0.123181901872158,-0.944451212882996,-0.297978848218918,0.123823419213295,-0.946507453918457,-0.299367487430573,0.140589341521263,-0.943723320960999,-0.139961168169975,0.143329262733459,-0.9797283411026,-0.160729110240936,0.160011753439903,-0.973941683769226,-0.137634217739105,0.229872047901154,-0.963439524173737,0.0100588034838438,0.201645851135254,-0.979406833648682,-0.163733124732971,0.190161630511284,-0.96800309419632,-0.139927566051483,0.144961297512054,-0.979493081569672,-0.299489766359329,0.1421158015728,-0.943455874919891,-0.207335144281387,0.141710832715034,-0.967951536178589,-0.204187348484993,0.194674879312515,-0.959379613399506,0.0131719019263983,0.176385149359703,-0.98423308134079,-0.138866007328033,0.189239531755447,-0.972062051296234,0.00801252014935017,0.199740633368492,-0.979816138744354,0.010317699983716,0.199930489063263,-0.979755759239197,-0.138509288430214,0.201887860894203,-0.969565093517303,0.0158703587949276,0.188980087637901,-0.981852769851685,0.00755036389455199,0.193987116217613,-0.980975031852722,-0.138639479875565,0.19736909866333,-0.970476448535919,0.021293468773365,0.214232474565506,-0.976550579071045,0.0754718631505966,0.196761772036552,-0.977542221546173,0.00838382262736559,0.204360544681549,-0.978859782218933,0.0751263052225113,0.17741522192955,-0.981264531612396,0.0125013021752238,0.185429260134697,-0.982578098773956,0.00620326865464449,0.177197083830833,-0.984155833721161,
  1862. 0.07577995210886,0.215511783957481,-0.973556399345398,0.0242694690823555,0.228055864572525,-0.973345518112183,0.185604155063629,0.197392329573631,-0.962594091892242,0.147450864315033,0.173740968108177,-0.973690152168274,0.0138658126816154,0.176337137818336,-0.984232187271118,0.051589734852314,0.190699383616447,-0.980292022228241,0.0747856348752975,0.159707307815552,-0.984327554702759,0.0507608614861965,0.194802731275558,-0.979528069496155,0.0130866318941116,0.181531935930252,-0.983298063278198,0.334441602230072,0.375230073928833,-0.864494740962982,0.123629130423069,0.420497357845306,-0.898831367492676,0.0175712294876575,0.352713048458099,-0.935566544532776,0.189047768712044,0.232037484645844,-0.954159200191498,0.0760500952601433,0.23347744345665,-0.969383656978607,0.189691558480263,0.224917262792587,-0.955734968185425,0.0461966022849083,0.217254564166069,-0.975021183490753,0.0757511779665947,0.213689729571342,-0.973960220813751,0.189294308423996,0.230108797550201,-0.954577207565308,0.0379218757152557,0.257348090410233,-0.965574383735657,0.18207910656929,0.283965677022934,-0.94138765335083,0.352184265851974,0.306551814079285,-0.884303271770477,0.205003768205643,0.33731684088707,-0.918798685073853,0.213255494832993,0.291974633932114,-0.932348072528839,0.179988071322441,0.298669815063477,-0.937230288982391,0.217386037111282,0.272270888090134,-0.937343001365662,0.35517680644989,0.294005930423737,-0.887361228466034,0.184397891163826,0.267209857702255,-0.945831000804901,0.218079522252083,-0.153944969177246,-0.963712751865387,0.103788666427135,-0.187231987714767,-0.976817309856415,0.373848885297775,-0.124871604144573,-0.919045209884644,-0.34244766831398,0.721442520618439,-0.601872324943542,-0.132470950484276,0.786944210529327,-0.602636098861694,-0.0483339801430702,0.819191694259644,-0.571479678153992,0.216608554124832,-0.855371713638306,-0.470552802085876,0.315413266420364,-0.849033713340759,-0.42385870218277,0.189406588673592,-0.864476084709167,-0.465624541044235,-0.342205584049225,0.720487475395203,-0.603152751922607,-0.344222784042358,0.719637513160706,-0.60301947593689,
  1863. -0.13218280673027,0.786003172397614,-0.603926301002502,-0.185385584831238,0.743744552135468,-0.642243146896362,-0.127087250351906,0.769210040569305,-0.626230597496033,-0.341787576675415,0.702993035316467,-0.623684346675873,-0.333202511072159,0.651060521602631,-0.681979656219482,-0.32232540845871,0.652612030506134,-0.68571412563324,-0.178747922182083,0.689604341983795,-0.701779901981354,0.373415917158127,-0.105507463216782,-0.921644568443298,0.101298749446869,-0.175051093101501,-0.97933429479599,0.127260744571686,-0.128151938319206,-0.983555674552917,-0.145536094903946,0.459959119558334,-0.875931978225708,0.064725250005722,0.489152193069458,-0.86979353427887,-0.0460280627012253,0.472212433815002,-0.88028222322464,0.110892467200756,0.0876894667744637,-0.989956378936768,0.249716624617577,0.101239338517189,-0.963012039661407,0.339964300394058,0.107844263315201,-0.934234499931335,0.2369244992733,0.727457284927368,-0.643950819969177,0.121663309633732,0.739907920360565,-0.661614894866943,0.1677325963974,0.72556746006012,-0.667396187782288,0.222981035709381,0.43820783495903,-0.870777428150177,0.379238158464432,0.425283342599869,-0.821774005889893,0.295215159654617,0.43774425983429,-0.849251449108124,0.379964560270309,0.538801550865173,-0.751877546310425,0.206542298197746,0.547371387481689,-0.811002373695374,0.150358006358147,0.566306293010712,-0.81036388874054,0.203067943453789,0.567045211791992,-0.798262596130371,0.0541972145438194,0.558605968952179,-0.82766056060791,0.151072531938553,0.553289234638214,-0.819175243377686,0.148907542228699,0.590499758720398,-0.793181300163269,0.374503821134567,0.560869216918945,-0.73835813999176,0.379213601350784,0.562626600265503,-0.734607636928558,-0.152038335800171,0.501666069030762,-0.851595878601074,0.011080608703196,0.527235090732574,-0.849647223949432,0.0585848987102509,0.530405938625336,-0.845717072486877,0.152756556868553,0.518772184848785,-0.841154515743256,0.0583986453711987,0.5316241979599,-0.844964683055878,0.011450887657702,0.522838175296783,-0.852355062961578,-0.147255510091782,0.514478385448456,-0.844765067100525,
  1864. 0.0102223744615912,0.537358522415161,-0.843291938304901,-0.152892336249352,0.507230401039124,-0.848139882087708,-0.120087005198002,0.31070864200592,-0.942888796329498,-0.121497631072998,0.313848733901978,-0.941667318344116,-0.269167333841324,0.280896335840225,-0.921220064163208,0.0111466953530908,0.526451647281647,-0.850131988525391,0.0185195058584213,0.529788851737976,-0.847927391529083,0.152598544955254,0.522288262844086,-0.839004576206207,0.0103993779048324,0.535278379917145,-0.844611704349518,-0.146984159946442,0.512267827987671,-0.846154451370239,0.0181860886514187,0.532478511333466,-0.846248149871826,-0.265678375959396,0.263580769300461,-0.92732959985733,-0.137260779738426,0.283486396074295,-0.949102163314819,-0.117399148643017,0.292012482881546,-0.949181854724884,0.017078684642911,0.541362643241882,-0.840615749359131,-0.14811035990715,0.521474301815033,-0.840314269065857,-0.158781677484512,0.530999720096588,-0.832362711429596,-0.156177133321762,0.494524866342545,-0.855016887187958,-0.301883041858673,0.468940734863281,-0.830036878585815,-0.29283481836319,0.470713973045349,-0.832271695137024,-0.293638646602631,0.485253006219864,-0.823593258857727,-0.137242376804352,0.494909763336182,-0.858037769794464,-0.157230526208878,0.508903861045837,-0.846342384815216,-0.131377324461937,0.569722473621368,-0.811268329620361,0.0167680457234383,0.543841123580933,-0.839020669460297,-0.159030511975288,0.534660220146179,-0.829968512058258,-0.13714200258255,0.496352016925812,-0.857220351696014,-0.293708503246307,0.486585944890976,-0.822781503200531,-0.203062072396278,0.492045968770981,-0.846555709838867,-0.198125123977661,0.537202000617981,-0.819853901863098,0.0215872600674629,0.521361231803894,-0.853063106536865,-0.134274780750275,0.53495454788208,-0.834142744541168,0.0159181486815214,0.54206246137619,-0.840187430381775,0.0169953238219023,0.542028367519379,-0.840188324451447,-0.133401989936829,0.54582691192627,-0.827210307121277,0.0248080957680941,0.5321284532547,-0.84630012512207,0.0152763156220317,0.537266314029694,-0.843274295330048,
  1865. -0.133717477321625,0.54193913936615,-0.82971179485321,0.0313208848237991,0.553663790225983,-0.832151055335999,0.0843769833445549,0.535948514938354,-0.840023636817932,0.0163903180509806,0.545581817626953,-0.837897300720215,0.0831886380910873,0.519020795822144,-0.850703895092011,0.0185660049319267,0.529413163661957,-0.848160982131958,0.0133656654506922,0.522906601428986,-0.852285206317902,0.0854758769273758,0.551850497722626,-0.829551041126251,0.0348457805812359,0.565186142921448,-0.824227154254913,0.196594640612602,0.526248693466187,-0.827292501926422,0.153091609477997,0.511086583137512,-0.845785856246948,0.0195744093507528,0.521233201026917,-0.853189766407013,0.0594421923160553,0.532542526721954,-0.844313383102417,0.0820803716778755,0.503465712070465,-0.860107600688934,0.0587745532393456,0.536086678504944,-0.842114508152008,0.0190098974853754,0.525820195674896,-0.850383281707764,0.352076023817062,0.650699973106384,-0.672779321670532,0.138682097196579,0.713121712207794,-0.687186062335968,0.0318687371909618,0.666992783546448,-0.744382321834564,0.198174610733986,0.556078433990479,-0.807157754898071,0.0865199267864227,0.567199528217316,-0.819023311138153,0.20172044634819,0.54914402961731,-0.811017692089081,0.0551122389733791,0.55526077747345,-0.829848289489746,0.0853631421923637,0.550207436084747,-0.830653429031372,0.198332324624062,0.554559588432312,-0.808163344860077,0.0484271720051765,0.589124917984009,-0.806589484214783,0.193231463432312,0.599983930587769,-0.776325225830078,0.367018580436707,0.593905508518219,-0.715942442417145,0.221274808049202,0.639575064182281,-0.736193716526031,0.224480926990509,0.603339731693268,-0.765238165855408,0.191732689738274,0.612077713012695,-0.767202377319336,0.227845728397369,0.586215376853943,-0.777456164360046,0.369523495435715,0.583251178264618,-0.723374366760254,0.194897070527077,0.585927069187164,-0.786577820777893,0.0829754844307899,-0.714953482151031,-0.694230914115906,-0.0234413594007492,-0.708236038684845,-0.705586433410645,0.124820552766323,-0.720839500427246,-0.681769967079163,
  1866. 0.2453942745924,-0.691260874271393,-0.679661750793457,0.0838727951049805,-0.704729199409485,-0.704501330852509,0.129836991429329,-0.697256147861481,-0.70496541261673,-0.016286663711071,-0.687128961086273,-0.72635293006897,0.0831699073314667,-0.712767422199249,-0.696452021598816,-0.0375632755458355,-0.698039412498474,-0.71507340669632,-0.21212063729763,-0.69355434179306,-0.68846732378006,-0.0342465192079544,-0.738981187343597,-0.672855079174042,-0.0434684231877327,-0.727483808994293,-0.684746563434601,0.0837103128433228,-0.706606566905975,-0.702637732028961,0.245456114411354,-0.693503737449646,-0.677350640296936,0.13417674601078,-0.712044656276703,-0.68919450044632,0.328971385955811,-0.675145149230957,-0.6602703332901,0.134357511997223,-0.715039908885956,-0.68605101108551,0.245512798428535,-0.695639193058014,-0.675136744976044,-0.0426588095724583,-0.723502159118652,-0.689002752304077,-0.123459748923779,-0.710197806358337,-0.693092167377472,-0.210129901766777,-0.687393188476563,-0.695223748683929,-0.338215559720993,-0.6701300740242,-0.660708665847778,-0.21787329018116,-0.711339354515076,-0.668227195739746,-0.124254629015923,-0.717466592788696,-0.685421407222748,-0.0405413843691349,-0.713005304336548,-0.699985682964325,0.0827301666140556,-0.717688679695129,-0.691432356834412,0.000133588866447099,-0.715538799762726,-0.698573052883148,-0.122944250702858,-0.705508291721344,-0.697956204414368,-0.040220033377409,-0.711401700973511,-0.701633810997009,0.00020210824732203,-0.719824194908142,-0.694156408309937,0.0829024910926819,-0.715770065784454,-0.693397700786591,0.133472323417664,-0.700629234313965,-0.700930714607239,8.07589603937231e-005,-0.712216317653656,-0.701960027217865,-0.338118195533752,-0.677504301071167,-0.653195321559906,-0.125432059168816,-0.72832316160202,-0.673655867576599,-0.166959956288338,-0.70452219247818,-0.689763009548187,-0.166389226913452,-0.715573847293854,-0.678431153297424,-0.122764758765697,-0.70388001203537,-0.699629724025726,0.000206479686312377,-0.720096707344055,-0.693873703479767,-0.166932418942451,-0.70507824420929,-0.689201176166534,
  1867. -0.267466008663177,-0.687353432178497,-0.675283074378967,-0.338092297315598,-0.679081201553345,-0.651569128036499,8.31518264021724e-005,-0.712367177009583,-0.701806962490082,0.133476838469505,-0.700701355934143,-0.700857758522034,0.061267901211977,-0.709280550479889,-0.702258765697479,0.134473502635956,-0.716977119445801,-0.684003412723541,0.32911804318428,-0.677008211612701,-0.658286571502686,0.0617589540779591,-0.72199946641922,-0.689131855964661,-0.0662490651011467,-0.718334317207336,-0.692536652088165,-0.166499331593513,-0.713517129421234,-0.680566906929016,0.00017947846208699,-0.718411862850189,-0.695617973804474,-0.265909284353256,-0.703094363212585,-0.659507811069489,-0.166374057531357,-0.715853273868561,-0.678139925003052,-0.0660740956664085,-0.723461270332336,-0.687195777893066,0.211954310536385,-0.705035150051117,-0.676757574081421,0.061859630048275,-0.724644660949707,-0.686340630054474,0.329403132200241,-0.68070787191391,-0.65431672334671,0.330080091953278,-0.689965605735779,-0.64420074224472,0.298206180334091,-0.700431108474731,-0.648436069488525,0.211993798613548,-0.709611654281616,-0.671944916248322,-0.000115155198727734,-0.714381396770477,-0.699756562709808,9.2181442596484e-005,-0.712935984134674,-0.701229095458984,0.0612709820270538,-0.709358990192413,-0.702179312705994,0.0613153837621212,-0.710497498512268,-0.70102334022522,0.211856424808502,-0.696470737457275,-0.68559855222702,-0.000128612940898165,-0.715226590633392,-0.698892652988434,-0.000208739220397547,-0.720237374305725,-0.693727672100067,-0.0660942941904068,-0.722877085208893,-0.687808275222778,0.00024084496544674,-0.722235143184662,-0.69164764881134,0.296951800584793,-0.686667919158936,-0.663556277751923,0.0497673600912094,-0.736855924129486,-0.67421555519104,0.211948603391647,-0.704448401927948,-0.677370131015778,0.211863353848457,-0.696999967098236,-0.685058355331421,0.0448971539735794,-0.706688284873962,-0.706099092960358,-0.000129482781630941,-0.715281188488007,-0.698836803436279,0.030741810798645,-0.742241084575653,-0.669427454471588,
  1868. 0.0492143258452415,-0.733472645282745,-0.677935004234314,0.296716958284378,-0.684203684329987,-0.666201412677765,-0.132519513368607,-0.66563093662262,-0.734420895576477,0.0369328297674656,-0.655618906021118,-0.754188179969788,0.0111320642754436,-0.654169082641602,-0.756266415119171,-0.160889282822609,-0.715040624141693,-0.680317342281342,-0.266117602586746,-0.701083481311798,-0.66156142950058,-0.0660878270864487,-0.723063826560974,-0.687612652778625,-0.159357935190201,-0.738119781017303,-0.655579328536987,-0.0654983818531036,-0.739377021789551,-0.670098185539246,-0.000456608569948003,-0.735506594181061,-0.677517533302307,-0.264506310224533,-0.715981900691986,-0.646069943904877,-0.160033419728279,-0.728380024433136,-0.666222035884857,-0.21914005279541,-0.721843600273132,-0.656444549560547,0.0468513518571854,-0.718893468379974,-0.693539559841156,-0.0914379805326462,-0.727059721946716,-0.680458128452301,-0.000225358773604967,-0.721272230148315,-0.692651689052582,-0.0867959856987,-0.755360186100006,-0.649536371231079,-0.159040600061417,-0.742487072944641,-0.650706589221954,-0.000565477355848998,-0.742102086544037,-0.670286655426025,0.041787538677454,-0.686997890472412,-0.725456893444061,-0.125376328825951,-0.697740614414215,-0.705293416976929,-0.0961993485689163,-0.695522129535675,-0.712035596370697,-0.0899040773510933,-0.736665606498718,-0.670254468917847,-0.21820630133152,-0.730132579803467,-0.647527933120728,-0.159549862146378,-0.73541659116745,-0.658563911914825,-0.219641134142876,-0.71722537279129,-0.661321043968201,-0.0920063704252243,-0.723433971405029,-0.684235394001007,-0.119853854179382,-0.720964729785919,-0.682528376579285,0.0852681547403336,0.19499759376049,-0.977090239524841,-0.0224270597100258,0.208333685994148,-0.977800667285919,0.125582918524742,0.181540176272392,-0.975331783294678,0.245642110705376,0.195799276232719,-0.949380099773407,0.0861880853772163,0.209335669875145,-0.974038183689117,0.130544051527977,0.213645845651627,-0.968149602413177,-0.0150009924545884,0.237782835960388,-0.971202611923218,0.0854719504714012,0.198152989149094,-0.976437389850616,
  1869. -0.0319028757512569,0.22212940454483,-0.974495112895966,-0.210120633244514,0.201542019844055,-0.956676721572876,-0.0336109772324562,0.163437157869339,-0.985981047153473,-0.0382593087852001,0.179063200950623,-0.983093500137329,0.0860236287117004,0.206754431128502,-0.974603772163391,0.245698362588882,0.192649498581886,-0.950009703636169,0.135779425501823,0.19254170358181,-0.971849620342255,0.33268129825592,0.18838295340538,-0.924031913280487,0.135964021086693,0.188247382640839,-0.972664773464203,0.245748355984688,0.189721435308456,-0.950585901737213,-0.0373878106474876,0.185019016265869,-0.982023477554321,-0.12791320681572,0.197033062577248,-0.972016572952271,-0.20820477604866,0.210386589169502,-0.955190181732178,-0.337000846862793,0.191587328910828,-0.921805143356323,-0.21566067636013,0.175393298268318,-0.96058714389801,-0.128851935267448,0.18559817969799,-0.974141001701355,-0.0351118184626102,0.200496017932892,-0.979065120220184,0.0850170850753784,0.191126137971878,-0.977876842021942,-0.00156284274999052,0.198481053113937,-0.980103492736816,-0.127278864383698,0.204628199338913,-0.970529556274414,-0.034738551825285,0.203023672103882,-0.978557407855988,-0.0015168123645708,0.192635133862495,-0.981269299983978,0.0851903408765793,0.193795815110207,-0.977336049079895,0.135056808590889,0.208770498633385,-0.968594133853912,-0.00159872858785093,0.203038573265076,-0.979169428348541,-0.336959630250931,0.180936262011528,-0.923969864845276,-0.130139052867889,0.169516935944557,-0.976897060871124,-0.167146250605583,0.196052804589272,-0.966242969036102,-0.166723474860191,0.182758837938309,-0.968918204307556,-0.127071723341942,0.20708592236042,-0.970035254955292,-0.00151454715523869,0.192347407341003,-0.981325745582581,-0.167113170027733,0.194977656006813,-0.966466188430786,-0.272631675004959,0.194175660610199,-0.94232040643692,-0.336943835020065,0.178377062082291,-0.924473106861115,-0.00159699050709605,0.202817857265472,-0.979215204715729,0.135061234235764,0.208673521876335,-0.968614399433136,0.0599393136799335,0.20429240167141,-0.977073132991791,
  1870. 0.136082038283348,0.185468271374702,-0.973182022571564,0.332833528518677,0.185704976320267,-0.924519062042236,0.0602605901658535,0.188572824001312,-0.9802086353302,-0.0615349374711514,0.191639080643654,-0.979534566402435,-0.16681569814682,0.185580670833588,-0.968365907669067,-0.00153283018153161,0.194669380784035,-0.980867743492126,-0.270957559347153,0.171767398715019,-0.947142004966736,-0.166660010814667,0.180839776992798,-0.969289124011993,-0.0613648369908333,0.185704246163368,-0.98068767786026,0.214773595333099,0.185492619872093,-0.958887279033661,0.0603267326951027,0.185233324766159,-0.980841219425201,0.333136558532715,0.180234879255295,-0.925491988658905,0.333854079246521,0.166433110833168,-0.927815437316895,0.301347970962524,0.164737969636917,-0.939175605773926,0.214833274483681,0.178575977683067,-0.960186064243317,0.00157862959895283,0.200485855340958,-0.979695320129395,-0.00158964935690165,0.201885566115379,-0.979407846927643,0.0599476173520088,0.203896075487137,-0.977155387401581,0.0599794425070286,0.202372431755066,-0.97747015953064,0.214629262685776,0.198740899562836,-0.95626163482666,0.00156897958368063,0.19926030933857,-0.979945361614227,0.00150771311018616,0.191479712724686,-0.981495440006256,-0.0613398142158985,0.184836983680725,-0.980853080749512,-0.00149223627522588,0.189513877034187,-0.981876909732819,0.300102382898331,0.184844359755516,-0.935826539993286,0.0531935356557369,0.166125804185867,-0.984668910503387,0.214763686060905,0.186533346772194,-0.958687603473663,0.214639529585838,0.197908356785774,-0.956432104110718,0.0480434559285641,0.210348680615425,-0.976445317268372,0.00156754651106894,0.199078351259232,-0.979982316493988,0.0310552343726158,0.15922985970974,-0.986752986907959,0.0526122525334358,0.171181574463844,-0.983833730220795,0.299868732690811,0.18839704990387,-0.9351926445961,-0.134367987513542,0.25540229678154,-0.957452297210693,0.0397938117384911,0.278626978397369,-0.959574639797211,0.0111049776896834,0.280543029308319,-0.959777235984802,-0.160617679357529,0.183377727866173,-0.969832241535187,
  1871. -0.271187126636505,0.174735799431801,-0.946533143520355,-0.0613872893154621,0.186483547091484,-0.980538368225098,-0.159149497747421,0.150596767663956,-0.975700795650482,-0.0606297180056572,0.160829216241837,-0.985118269920349,0.00133407104294747,0.169427216053009,-0.985541820526123,-0.269485086202621,0.153410777449608,-0.950706541538239,-0.159787312150002,0.164376795291901,-0.973369657993317,-0.219818919897079,0.159685850143433,-0.96238249540329,0.0500904507935047,0.192924007773399,-0.979934334754944,-0.0924293920397758,0.176676750183105,-0.97991955280304,0.00149907090235502,0.190382033586502,-0.981708943843842,-0.0876528099179268,0.135108649730682,-0.986946105957031,-0.158836245536804,0.144053488969803,-0.976739406585693,0.00125953019596636,0.159960448741913,-0.987122714519501,0.0448237583041191,0.237360626459122,-0.970386922359467,-0.127252027392387,0.213519886136055,-0.968615591526031,-0.0973260775208473,0.220529615879059,-0.970512509346008,-0.0909130796790123,0.163357987999916,-0.982369065284729,-0.218917965888977,0.147803634405136,-0.964483797550201,-0.159318298101425,0.154182314872742,-0.975113093852997,-0.220312371850014,0.166370570659637,-0.96113646030426,-0.0930652692914009,0.182297736406326,-0.978829085826874,-0.121737562119961,0.181744396686554,-0.975781202316284,0.0888707190752029,-0.260225623846054,-0.961449205875397,-0.0212745238095522,-0.248620092868805,-0.968367397785187,0.122490830719471,-0.270477563142776,-0.954902052879334,0.241353943943977,-0.247295930981636,-0.938399195671082,0.0898281708359718,-0.245750725269318,-0.965161919593811,0.127215147018433,-0.239269509911537,-0.962583303451538,-0.013817748054862,-0.219247937202454,-0.97557133436203,0.0890923142433167,-0.25690746307373,-0.962320804595947,-0.0352624952793121,-0.233846068382263,-0.971634089946747,-0.207823187112808,-0.245558843016624,-0.946842432022095,-0.0325068160891533,-0.292560368776321,-0.955694377422333,-0.0416970774531364,-0.276517421007156,-0.960103988647461,0.0896606743335724,-0.248309031128883,-0.964522480964661,0.241408824920654,-0.250400573015213,-0.937561392784119,
  1872. 0.132422462105751,-0.259584158658981,-0.956598341464996,0.332565426826477,-0.242427885532379,-0.911388456821442,0.132572889328003,-0.263519465923309,-0.955500900745392,0.241457179188728,-0.253258973360062,-0.93678081035614,-0.0408161580562592,-0.270675539970398,-0.961804986000061,-0.127308398485184,-0.255954027175903,-0.958269357681274,-0.205834776163101,-0.236818820238113,-0.949499309062958,-0.338464170694351,-0.238405868411064,-0.910277247428894,-0.213579550385475,-0.271200984716415,-0.938527464866638,-0.128191933035851,-0.266755312681198,-0.955200731754303,-0.0385150797665119,-0.255415797233582,-0.966063857078552,0.0886113494634628,-0.264085948467255,-0.96042001247406,0.00203292979858816,-0.258182048797607,-0.966094255447388,-0.126719281077385,-0.24884195625782,-0.960218667984009,-0.0381332039833069,-0.25288337469101,-0.966744959354401,0.0020781981293112,-0.263931185007095,-0.964539289474487,0.0887861996889114,-0.26148647069931,-0.961114883422852,0.13185116648674,-0.245098158717155,-0.960490584373474,0.00199750903993845,-0.253683596849442,-0.967285215854645,-0.338370084762573,-0.248598158359528,-0.907581746578217,-0.129437193274498,-0.282268732786179,-0.950563311576843,-0.164170995354652,-0.2548828125,-0.952933728694916,-0.163827061653137,-0.266659319400787,-0.949764966964722,-0.126522436738014,-0.246480852365494,-0.960853517055511,0.00208036997355521,-0.264207065105438,-0.964463710784912,-0.164135918021202,-0.256125628948212,-0.952606558799744,-0.267315536737442,-0.245596751570702,-0.931785702705383,-0.338344722986221,-0.250804513692856,-0.906983971595764,0.0019992315210402,-0.253902345895767,-0.967227816581726,0.131855830550194,-0.245213657617569,-0.960460484027863,0.0631255507469177,-0.251144200563431,-0.965889096260071,0.132676780223846,-0.266268610954285,-0.954724013805389,0.332713276147842,-0.245051026344299,-0.91063266992569,0.0635314360260963,-0.267750531435013,-0.961391389369965,-0.0585752725601196,-0.263649165630341,-0.962838530540466,-0.163908690214157,-0.263941913843155,-0.950509667396545,0.00206240313127637,-0.261925250291824,-0.965085983276367,
  1873. -0.265718817710876,-0.267414152622223,-0.926219820976257,-0.163741007447243,-0.269476741552353,-0.948984384536743,-0.0584002956748009,-0.270573019981384,-0.960926473140717,0.214196592569351,-0.260041773319244,-0.9415403008461,0.063614621758461,-0.271242141723633,-0.960406601428986,0.333000689744949,-0.250276446342468,-0.90910530090332,0.333681732416153,-0.263427257537842,-0.905131280422211,0.297525823116302,-0.270689994096756,-0.915535509586334,0.214231669902802,-0.266329169273376,-0.939773142337799,-0.00201726402156055,-0.256192624568939,-0.966623663902283,0.00200652936473489,-0.25482913851738,-0.966984033584595,0.0631316006183624,-0.251386731863022,-0.965825617313385,0.0631700083613396,-0.252930194139481,-0.965420067310333,0.214107766747475,-0.248394891619682,-0.944699883460999,-0.00202680286020041,-0.257404059171677,-0.966301739215851,-0.00208725966513157,-0.265081822872162,-0.964223682880402,-0.0584141835570335,-0.270028799772263,-0.961078703403473,0.00210218247957528,-0.266977310180664,-0.963700532913208,0.296302706003189,-0.251328021287918,-0.921433091163635,0.0495525971055031,-0.288759410381317,-0.95611846446991,0.214191541075706,-0.259248167276382,-0.941760241985321,0.214114055037498,-0.24910381436348,-0.944511771202087,0.0447423793375492,-0.246763661503792,-0.968042254447937,-0.00202823337167501,-0.257585674524307,-0.966253340244293,0.0320647694170475,-0.295873761177063,-0.954688727855682,0.0490053929388523,-0.283967941999435,-0.957580626010895,0.296072989702225,-0.247882470488548,-0.922439754009247,-0.131346449255943,-0.196618244051933,-0.97164261341095,0.0368370115756989,-0.178326666355133,-0.983281672000885,0.0123480809852481,-0.175613641738892,-0.98438173532486,-0.159672513604164,-0.266803830862045,-0.950431704521179,-0.265933841466904,-0.264588207006454,-0.926969408988953,-0.058415237814188,-0.269986718893051,-0.961090445518494,-0.158042684197426,-0.300081938505173,-0.940730214118958,-0.0578037314116955,-0.293241590261459,-0.954289317131042,-0.00225704978220165,-0.286645144224167,-0.958034157752991,-0.26429408788681,-0.285377532243729,-0.921253681182861,
  1874. -0.158778160810471,-0.285587251186371,-0.94510817527771,-0.216098949313164,-0.285039216279984,-0.933838248252869,0.0466761998832226,-0.263613611459732,-0.963498532772064,-0.0918502658605576,-0.277272939682007,-0.956390857696533,-0.00209560780785978,-0.266142189502716,-0.963931500911713,-0.0872231349349022,-0.317397654056549,-0.944272756576538,-0.15771858394146,-0.306231170892715,-0.938800990581512,-0.00232931645587087,-0.295823037624359,-0.95523989200592,0.0416557528078556,-0.219959050416946,-0.974619328975677,-0.124489665031433,-0.238971948623657,-0.963013470172882,-0.0965916141867638,-0.234062686562538,-0.96741133928299,-0.0903132930397987,-0.290813982486725,-0.952507615089417,-0.215213283896446,-0.296561479568481,-0.930448591709137,-0.158271446824074,-0.295656591653824,-0.942092001438141,-0.21658943593502,-0.278457313776016,-0.935708582401276,-0.0924081578850746,-0.272303104400635,-0.957763910293579,-0.119057230651379,-0.271215230226517,-0.955127060413361
  1875. }
  1876. TangentsW: *795 {
  1877. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1878. }
  1879. }
  1880. LayerElementTangent: 1 {
  1881. Version: 102
  1882. Name: "LightMapUV"
  1883. MappingInformationType: "ByPolygonVertex"
  1884. ReferenceInformationType: "Direct"
  1885. Tangents: *2385 {
  1886. a: 0.212910175323486,-0.32036504149437,-0.923057794570923,0.102717958390713,-0.355350345373154,-0.929072201251984,0.373439460992813,-0.28341206908226,-0.883301079273224,-0.342492073774338,0.605881690979004,-0.718057513237,-0.133591175079346,0.669870913028717,-0.730360448360443,-0.0459399521350861,0.706354558467865,-0.706365883350372,0.216487854719162,-0.925403475761414,-0.311065346002579,0.316656589508057,-0.910433769226074,-0.266155958175659,0.191925495862961,-0.933427274227142,-0.303114116191864,-0.342252820730209,0.604714930057526,-0.719154357910156,-0.344762682914734,0.603756010532379,-0.718760967254639,-0.133304104208946,0.668718338012695,-0.731468319892883,-0.183686390519142,0.618658840656281,-0.763885140419006,-0.127683132886887,0.646080374717712,-0.752513885498047,-0.3420769572258,0.581511318683624,-0.73812460899353,-0.333263069391251,0.518491864204407,-0.787465631961823,-0.319394320249558,0.520143985748291,-0.792109549045563,-0.176921382546425,0.553150951862335,-0.814077913761139,0.370004862546921,-0.264312505722046,-0.890637695789337,0.0999090000987053,-0.342356592416763,-0.934243202209473,0.128297060728073,-0.297401607036591,-0.946093201637268,-0.144877627491951,0.302771478891373,-0.941987335681915,0.0628303214907646,0.332157999277115,-0.941128790378571,-0.0478007532656193,0.313308447599411,-0.948447644710541,0.111222103238106,-0.0881177335977554,-0.989881277084351,0.247517943382263,-0.0695405527949333,-0.966384589672089,0.335921257734299,-0.0586290881037712,-0.94006359577179,0.237195059657097,0.601754665374756,-0.762646615505219,0.116900786757469,0.609698116779327,-0.783965826034546,0.164206638932228,0.595903635025024,-0.786088466644287,0.219409316778183,0.281529992818832,-0.934130847454071,0.372580230236053,0.27888622879982,-0.88510262966156,0.294447064399719,0.285269856452942,-0.912097632884979,0.373044818639755,0.404954493045807,-0.83477509021759,0.202265575528145,0.401568323373795,-0.893214285373688,0.153134912252426,0.421303689479828,-0.893897712230682,0.199740722775459,0.41700941324234,-0.88668304681778,
  1887. 0.0526299253106117,0.403402417898178,-0.91350781917572,0.154185399413109,0.399295717477798,-0.903764367103577,0.151668459177017,0.448965519666672,-0.880583107471466,0.369535833597183,0.428825974464417,-0.824349164962769,0.372206181287766,0.43220254778862,-0.8213791847229,-0.151348233222961,0.348503977060318,-0.925007402896881,0.0129791805520654,0.373633950948715,-0.927485525608063,0.0564556643366814,0.377216905355453,-0.924402594566345,0.155714675784111,0.362670987844467,-0.918816030025482,0.0566946864128113,0.375560075044632,-0.925062358379364,0.0136140491813421,0.365557610988617,-0.93068915605545,-0.150532722473145,0.360511690378189,-0.920527696609497,0.0122282020747662,0.383134573698044,-0.923611581325531,-0.152009814977646,0.353281527757645,-0.923084616661072,-0.123225271701813,0.138325080275536,-0.982691168785095,-0.120318673551083,0.142256334424019,-0.982490003108978,-0.265939265489578,0.114161744713783,-0.957206070423126,0.0132718104869127,0.369916349649429,-0.928970277309418,0.0159599650651217,0.373465985059738,-0.927506685256958,0.155551224946976,0.366911917924881,-0.917158365249634,0.0124104348942637,0.380834370851517,-0.924560010433197,-0.150265797972679,0.358075499534607,-0.921521604061127,0.0155260981991887,0.377154380083084,-0.926020264625549,-0.262447685003281,0.0960381627082825,-0.960155129432678,-0.131680399179459,0.11244210600853,-0.984894454479218,-0.120555274188519,0.118786782026291,-0.985574126243591,0.0139998318627477,0.390065431594849,-0.920680701732636,-0.151728823781013,0.371516913175583,-0.91594409942627,-0.155088409781456,0.38087722659111,-0.911526262760162,-0.15200312435627,0.337846487760544,-0.928846061229706,-0.298895448446274,0.316345363855362,-0.900326132774353,-0.293148577213287,0.316924005746841,-0.902010560035706,-0.293890595436096,0.33303102850914,-0.89594566822052,-0.137775659561157,0.336908757686615,-0.931402385234833,-0.153164133429527,0.35359326004982,-0.922774374485016,-0.131803601980209,0.423312097787857,-0.896345198154449,0.0136632546782494,0.392899096012115,-0.919480085372925,
  1888. -0.15536667406559,0.384960383176804,-0.909762024879456,-0.137821972370148,0.336150079965591,-0.931669592857361,-0.29385507106781,0.332216650247574,-0.896259605884552,-0.202541381120682,0.333374619483948,-0.920781373977661,-0.197065964341164,0.387821048498154,-0.900422155857086,0.0213323868811131,0.366513222455978,-0.930168271064758,-0.134776279330254,0.382843345403671,-0.913929045200348,0.0208286009728909,0.385160535573959,-0.922614514827728,0.0145603325217962,0.385335743427277,-0.922661542892456,-0.134183153510094,0.391273707151413,-0.910439312458038,0.0232844259589911,0.373649448156357,-0.927277684211731,0.0200225003063679,0.378499299287796,-0.925384998321533,-0.134576663374901,0.385702103376389,-0.912755727767944,0.0345180630683899,0.414361387491226,-0.909457743167877,0.0853453204035759,0.395696401596069,-0.914407193660736,0.0232331063598394,0.404963195323944,-0.914037883281708,0.0836857035756111,0.369709134101868,-0.92537122964859,0.015140388160944,0.380426824092865,-0.924687206745148,0.019311435520649,0.372614085674286,-0.927785456180573,0.0856348052620888,0.400308430194855,-0.912370443344116,0.0345546305179596,0.414492845535278,-0.909396290779114,0.192241385579109,0.376526802778244,-0.906239926815033,0.155952632427216,0.356325626373291,-0.921255052089691,0.0168412104249001,0.365948855876923,-0.930482566356659,0.0582879483699799,0.377014011144638,-0.924371659755707,0.082137368619442,0.346104979515076,-0.934593379497528,0.0577535443007946,0.38025775551796,-0.923075616359711,0.0163562726229429,0.370089560747147,-0.928852081298828,0.347154885530472,0.528917133808136,-0.774422466754913,0.141570404171944,0.587592244148254,-0.796676337718964,0.0301279574632645,0.536231160163879,-0.843533337116241,0.194291204214096,0.407493591308594,-0.892300367355347,0.0866324454545975,0.416396915912628,-0.905046105384827,0.197237774729729,0.401091516017914,-0.894551753997803,0.0546123869717121,0.399140983819962,-0.915261685848236,0.0852522328495979,0.394218504428864,-0.915054023265839,0.194771096110344,0.402400732040405,-0.894504249095917,
  1889. 0.0475868508219719,0.440271854400635,-0.89660257101059,0.189439505338669,0.455170959234238,-0.870018422603607,0.363385200500488,0.459165006875992,-0.810628592967987,0.218383029103279,0.510731816291809,-0.831541895866394,0.225781843066216,0.468768775463104,-0.853977978229523,0.186972260475159,0.477176398038864,-0.858687400817871,0.230053693056107,0.44500607252121,-0.865473806858063,0.365137368440628,0.450781226158142,-0.814537286758423,0.190744236111641,0.442969709634781,-0.876010537147522,0.213982760906219,-0.828896760940552,-0.516857385635376,0.105895504355431,-0.859575092792511,-0.499916821718216,0.370757639408112,-0.776410043239594,-0.509633660316467,-0.340619534254074,0.0348470211029053,-0.9395552277565,-0.134486302733421,0.0774169638752937,-0.987886667251587,-0.0484480410814285,0.120486207306385,-0.99153208732605,0.217702075839043,-0.91852194070816,0.330035269260406,0.320652782917023,-0.877904713153839,0.355619341135025,0.191471606492996,-0.920622706413269,0.34028285741806,-0.340619534254074,0.0348470211029053,-0.9395552277565,-0.34293720126152,0.0341385677456856,-0.938737809658051,-0.134486302733421,0.0774169638752937,-0.987886667251587,-0.182735800743103,0.00520291412249208,-0.983148396015167,-0.126722067594528,0.0351590625941753,-0.991314947605133,-0.339187443256378,-0.00666111242026091,-0.940695345401764,-0.329768359661102,-0.0898445174098015,-0.939777016639709,-0.319887518882751,-0.0919441133737564,-0.94298380613327,-0.176097452640533,-0.0808817148208618,-0.981044352054596,0.37275505065918,-0.767236888408661,-0.521920919418335,0.104181729257107,-0.855393588542938,-0.507393538951874,0.127064540982246,-0.828926086425781,-0.544735133647919,-0.146121188998222,-0.35070475935936,-0.925016105175018,0.0618452653288841,-0.328184902667999,-0.942586898803711,-0.0461508296430111,-0.347007900476456,-0.936726033687592,0.110793881118298,-0.696820020675659,-0.708637118339539,0.249716430902481,-0.6671422123909,-0.701828300952911,0.339638352394104,-0.641605138778687,-0.687741696834564,0.233527421951294,-0.00217500561848283,-0.972347795963287,
  1890. 0.113802902400494,-0.00833021197468042,-0.993468403816223,0.164401352405548,-0.0199004542082548,-0.986192762851715,0.222309753298759,-0.373179733753204,-0.900730431079865,0.373649567365646,-0.34526115655899,-0.860918521881104,0.292346388101578,-0.357440978288651,-0.887000322341919,0.375094503164291,-0.209297373890877,-0.90304970741272,0.204451203346252,-0.248440191149712,-0.946824789047241,0.149376526474953,-0.234049573540688,-0.960680723190308,0.200306102633476,-0.222130060195923,-0.954219937324524,0.0510990470647812,-0.250268012285233,-0.966827213764191,0.149978145956993,-0.247447371482849,-0.957223236560822,0.147711217403412,-0.199652746319771,-0.968669295310974,0.372775286436081,-0.179189309477806,-0.910455822944641,0.374286502599716,-0.175210610032082,-0.910610139369965,-0.152656331658363,-0.301740705966949,-0.941089153289795,0.0126178516075015,-0.284560263156891,-0.958575129508972,0.0552237667143345,-0.280078858137131,-0.95838737487793,0.151997640728951,-0.297812074422836,-0.942446112632751,0.0568040646612644,-0.29153123497963,-0.954873204231262,0.0139530468732119,-0.302777379751205,-0.952959179878235,-0.149440348148346,-0.296238750219345,-0.943350613117218,0.0122534455731511,-0.279581248760223,-0.960043847560883,-0.152687013149261,-0.301501125097275,-0.94116085767746,-0.121627971529961,-0.508024275302887,-0.852712154388428,-0.12168787419796,-0.50584751367569,-0.853996694087982,-0.266398042440414,-0.511238217353821,-0.817109286785126,0.0136572262272239,-0.298744797706604,-0.954235315322876,0.0175527799874544,-0.294474571943283,-0.955498099327087,0.151855006814003,-0.293907642364502,-0.943693995475769,0.0123754637315869,-0.28124874830246,-0.959555089473724,-0.149246156215668,-0.298029720783234,-0.942817091941834,0.0165091529488564,-0.285474568605423,-0.95824408531189,-0.26310458779335,-0.526296257972717,-0.808571696281433,-0.132327124476433,-0.529273867607117,-0.838068425655365,-0.119068488478661,-0.524108171463013,-0.843287229537964,0.0157095156610012,-0.278569757938385,-0.960287511348724,-0.150024697184563,-0.290813505649567,-0.944944500923157,
  1891. -0.154728636145592,-0.279431790113449,-0.947616457939148,-0.152092352509499,-0.318492978811264,-0.935644209384918,-0.299528807401657,-0.317048013210297,-0.899868369102478,-0.291642844676971,-0.317666977643967,-0.902237415313721,-0.292422533035278,-0.302134394645691,-0.907305955886841,-0.137282624840736,-0.321675568819046,-0.936844885349274,-0.15316441655159,-0.30312392115593,-0.940561830997467,-0.131288677453995,-0.235432654619217,-0.96298223733902,0.0152288395911455,-0.274415612220764,-0.96149069070816,-0.155085265636444,-0.273794710636139,-0.949202299118042,-0.137415006756783,-0.323748916387558,-0.936111092567444,-0.292319387197495,-0.304286479949951,-0.906619608402252,-0.198388800024986,-0.31933405995369,-0.926643192768097,-0.192661166191101,-0.261936992406845,-0.945658981800079,0.0230993684381247,-0.297029197216034,-0.954589068889618,-0.134050071239471,-0.273501724004745,-0.952484846115112,0.0171745270490646,-0.276953041553497,-0.960729956626892,0.0155410608276725,-0.277114033699036,-0.960711359977722,-0.133419990539551,-0.264593511819839,-0.955086052417755,0.0250553041696548,-0.289650112390518,-0.956804573535919,0.0163622088730335,-0.283896446228027,-0.958715319633484,-0.133836254477501,-0.270462960004807,-0.953382194042206,0.0363076291978359,-0.246724992990494,-0.968405246734619,0.0831379890441895,-0.263973742723465,-0.96094012260437,0.019600760191679,-0.25608041882515,-0.966456770896912,0.0815585777163506,-0.290804743766785,-0.953300058841705,0.0161231011152267,-0.282141745090485,-0.959237337112427,0.0156471151858568,-0.289990276098251,-0.956901669502258,0.0834197402000427,-0.259045839309692,-0.962255895137787,0.0363416634500027,-0.246593877673149,-0.968437254428864,0.195553362369537,-0.274309039115906,-0.941548407077789,0.152052462100983,-0.299329936504364,-0.941956281661987,0.0178313385695219,-0.296874672174454,-0.954750061035156,0.0554232150316238,-0.284322649240494,-0.957125306129456,0.0800801739096642,-0.314797937870026,-0.945774614810944,0.0548888519406319,-0.281095087528229,-0.958108961582184,0.0173425413668156,-0.292662471532822,-0.95605856180191,
  1892. 0.347031742334366,-0.0567960180342197,-0.93613213300705,0.13650768995285,-0.022702606394887,-0.990378856658936,0.0239468906074762,-0.0951518788933754,-0.995174705982208,0.194078728556633,-0.240948989987373,-0.950934827327728,0.0843700468540192,-0.242083936929703,-0.966580092906952,0.200574114918709,-0.247791469097137,-0.947823524475098,0.0517657585442066,-0.262243211269379,-0.963612377643585,0.0830574184656143,-0.265374779701233,-0.960561156272888,0.194553643465042,-0.246193557977676,-0.94949346780777,0.0438644737005234,-0.214635774493217,-0.975708663463593,0.188710868358612,-0.185131460428238,-0.96442449092865,0.365805953741074,-0.14334811270237,-0.919585406780243,0.221759080886841,-0.122837334871292,-0.967333495616913,0.22489807009697,-0.169589027762413,-0.959510505199432,0.186714112758636,-0.165738984942436,-0.968332827091217,0.229321882128716,-0.195970118045807,-0.953418672084808,0.368721187114716,-0.15804260969162,-0.916006147861481,0.190594926476479,-0.204061284661293,-0.960225284099579,0.23161868751049,-0.488207459449768,-0.841431081295013,0.127445459365845,-0.525986969470978,-0.840889632701874,0.387427031993866,-0.43807515501976,-0.811166107654572,-0.360495865345001,0.435327708721161,-0.824943959712982,-0.149476021528244,0.505641162395477,-0.849696397781372,-0.0687883272767067,0.547558546066284,-0.833935260772705,0.255715429782867,-0.960022449493408,-0.113870702683926,0.35361921787262,-0.932661592960358,-0.0713848620653152,0.222343310713768,-0.969115197658539,-0.10667347162962,-0.360102921724319,0.433545082807541,-0.826053738594055,-0.359419375658035,0.433607816696167,-0.826318323612213,-0.149020552635193,0.503875136375427,-0.85082471370697,-0.199236631393433,0.448541074991226,-0.871272444725037,-0.143114104866982,0.48100358247757,-0.864958882331848,-0.356059074401855,0.411377370357513,-0.839041471481323,-0.344444274902344,0.34244704246521,-0.874121487140656,-0.333216547966003,0.342686206102371,-0.878369450569153,-0.189888969063759,0.376631557941437,-0.906692266464233,0.390151709318161,-0.411117643117905,-0.823871314525604,
  1893. 0.12211774289608,-0.506882548332214,-0.853321373462677,0.144300788640976,-0.465196520090103,-0.87336677312851,-0.146782651543617,0.102479748427868,-0.983845889568329,0.0568851828575134,0.138809651136398,-0.988684058189392,-0.0472507067024708,0.115987405180931,-0.992126166820526,0.117517247796059,-0.254534393548965,-0.959896862506866,0.256776630878448,-0.226741552352905,-0.939496695995331,0.344261556863785,-0.206006944179535,-0.915994048118591,0.21709905564785,0.440562456846237,-0.871075749397278,0.106008999049664,0.44151172041893,-0.890971124172211,0.148777842521667,0.427909821271896,-0.891492187976837,0.21701280772686,0.0944695398211479,-0.97158682346344,0.371817588806152,0.107223562896252,-0.922092616558075,0.28747233748436,0.104996591806412,-0.952016472816467,0.367551535367966,0.247534945607185,-0.896455407142639,0.193626150488853,0.225823819637299,-0.95473176240921,0.141843765974045,0.243318036198616,-0.95951896905899,0.189122393727303,0.248647272586823,-0.949951171875,0.0421364270150661,0.22353920340538,-0.973783731460571,0.1433394998312,0.225722789764404,-0.963588714599609,0.139356642961502,0.271272391080856,-0.95236074924469,0.360371649265289,0.271446526050568,-0.892439961433411,0.365782409906387,0.275259494781494,-0.889064371585846,-0.154964089393616,0.149632796645164,-0.976522505283356,0.00489013502374291,0.179616630077362,-0.983724534511566,0.0488659963011742,0.185318872332573,-0.981462717056274,0.146514445543289,0.18610043823719,-0.971545338630676,0.0475137270987034,0.193057402968407,-0.980036377906799,0.00483109662309289,0.180165961384773,-0.983624458312988,-0.153977707028389,0.167245373129845,-0.97381716966629,0.00317321624606848,0.195556446909904,-0.980687320232391,-0.156749904155731,0.160164520144463,-0.974564909934998,-0.117604717612267,-0.0607714802026749,-0.991199254989624,-0.116828314960003,-0.057382345199585,-0.991493046283722,-0.263811856508255,-0.085863895714283,-0.960744976997375,0.00429403595626354,0.185157865285873,-0.982699394226074,0.0117780202999711,0.190239176154137,-0.981667101383209,
  1894. 0.146134316921234,0.191023632884026,-0.970646560192108,0.00351276388391852,0.192408815026283,-0.981308579444885,-0.153498083353043,0.163925722241402,-0.974457144737244,0.0120140220969915,0.188670456409454,-0.981966972351074,-0.259387731552124,-0.105152733623981,-0.960031747817993,-0.130699455738068,-0.0896871462464333,-0.987357020378113,-0.11396736651659,-0.0814426094293594,-0.990140676498413,0.00896624010056257,0.208875581622124,-0.977901220321655,-0.156504839658737,0.184913516044617,-0.970212996006012,-0.164331763982773,0.196341454982758,-0.966667115688324,-0.158803105354309,0.141370579600334,-0.977136611938477,-0.304351150989532,0.121105208992958,-0.944830119609833,-0.297798663377762,0.121718935668468,-0.946837186813354,-0.299275517463684,0.139446690678597,-0.94392204284668,-0.139984920620918,0.142164692282677,-0.979894578456879,-0.160611972212791,0.158863440155983,-0.974148988723755,-0.137322098016739,0.239023357629776,-0.96125465631485,0.0086956238374114,0.210663944482803,-0.977519869804382,-0.164642885327339,0.199577540159225,-0.965951204299927,-0.139741837978363,0.153657853603363,-0.978192985057831,-0.300160467624664,0.15064962208271,-0.941917419433594,-0.206866085529327,0.150314494967461,-0.966753304004669,-0.203939646482468,0.198440715670586,-0.958660483360291,0.0139659009873867,0.180093139410019,-0.983550429344177,-0.138763785362244,0.192952051758766,-0.97134655714035,0.00782432034611702,0.197398096323013,-0.980292201042175,0.0106854597106576,0.197492390871048,-0.980246186256409,-0.138579145073891,0.199476540088654,-0.970054090023041,0.0152876153588295,0.18626181781292,-0.982381224632263,0.00732984114438295,0.191240563988686,-0.981515824794769,-0.138717293739319,0.194617137312889,-0.971021056175232,0.0189518984407187,0.20333893597126,-0.978924989700317,0.0752792954444885,0.185788661241531,-0.979701817035675,0.00749428942799568,0.193288818001747,-0.981113255023956,0.0749327391386032,0.167206957936287,-0.983070135116577,0.0140494983643293,0.175111398100853,-0.984448373317719,0.00540469819679856,0.167229980230331,-0.985903203487396,
  1895. 0.0757947191596031,0.216453015804291,-0.973346412181854,0.0244700498878956,0.228986695408821,-0.97312206029892,0.185746714472771,0.198338016867638,-0.962372183799744,0.147411242127419,0.174270525574684,-0.973601400852203,0.0137892188504338,0.176848143339157,-0.984141647815704,0.0514870434999466,0.191208139061928,-0.980198204517365,0.0746735855937004,0.154131561517715,-0.985224485397339,0.0518643483519554,0.1893380433321,-0.980541288852692,0.0139115899801254,0.176031708717346,-0.984286189079285,0.337311327457428,0.364715367555618,-0.867873132228851,0.124981693923473,0.409132063388824,-0.903875291347504,0.0202633403241634,0.340356707572937,-0.940078020095825,0.188354715704918,0.237422525882721,-0.952970743179321,0.0761282816529274,0.239008575677872,-0.968028604984283,0.190483927726746,0.230355769395828,-0.954281032085419,0.0460164621472359,0.218135729432106,-0.974832952022552,0.0757652893662453,0.214580714702606,-0.973763287067413,0.189178764820099,0.231013461947441,-0.954381585121155,0.0391417965292931,0.251486003398895,-0.967069149017334,0.182872384786606,0.278288155794144,-0.942928075790405,0.35358527302742,0.300717204809189,-0.885746359825134,0.205652862787247,0.342491298913956,-0.916736960411072,0.212193846702576,0.296949446201324,-0.931018173694611,0.17924477159977,0.303808629512787,-0.935719966888428,0.216627299785614,0.275932997465134,-0.936447441577911,0.354294717311859,0.29773673415184,-0.886469483375549,0.183902740478516,0.270829379558563,-0.944897592067719,0.217685461044312,-0.151439279317856,-0.96419882774353,0.103276126086712,-0.184720367193222,-0.977349698543549,0.373970687389374,-0.122276023030281,-0.91934460401535,-0.341858744621277,0.719122171401978,-0.604975938796997,-0.13175542652607,0.78460556268692,-0.605833828449249,-0.0472537018358707,0.816947937011719,-0.574772298336029,0.216287106275558,-0.85210919380188,-0.476581424474716,0.317113250494003,-0.845291614532471,-0.430025011301041,0.191796392202377,-0.860756874084473,-0.471499472856522,-0.341535747051239,0.717853665351868,-0.606662571430206,-0.343834429979324,0.716902613639832,-0.606488704681396,
  1896. -0.131373271346092,0.783354163169861,-0.607533812522888,-0.185109585523605,0.741384506225586,-0.645045340061188,-0.126411706209183,0.766962766647339,-0.629117012023926,-0.341436356306076,0.700682580471039,-0.626470386981964,-0.332780182361603,0.648697793483734,-0.684433043003082,-0.322152674198151,0.650163650512695,-0.688116908073425,-0.178434029221535,0.687157392501831,-0.704255640506744,0.372460573911667,-0.0974593162536621,-0.92291647195816,0.0996283516287804,-0.166907951235771,-0.980926156044006,0.126721531152725,-0.119647204875946,-0.984696090221405,-0.145178601145744,0.457697778940201,-0.877174973487854,0.0650494545698166,0.486913681030273,-0.871024489402771,-0.0454742014408112,0.470024079084396,-0.881481409072876,0.109008513391018,0.108624674379826,-0.988087952136993,0.24898998439312,0.121515959501266,-0.960852682590485,0.335815370082855,0.128557816147804,-0.933113574981689,0.235692396759987,0.731490910053253,-0.639820396900177,0.119457267224789,0.743765771389008,-0.657679557800293,0.166642114520073,0.729537844657898,-0.66332870721817,0.221989780664444,0.445735692977905,-0.867202520370483,0.379484802484512,0.432717978954315,-0.817769169807434,0.294279873371124,0.445237934589386,-0.845672845840454,0.379876106977463,0.542284667491913,-0.749414086341858,0.205919712781906,0.55096846818924,-0.808721721172333,0.150152280926704,0.569908678531647,-0.807872891426086,0.202636763453484,0.569420874118805,-0.796679496765137,0.0538258142769337,0.560945987701416,-0.826100826263428,0.150945276021957,0.555668532848358,-0.817586719989777,0.148723512887955,0.593385577201843,-0.79105931520462,0.373899191617966,0.56367814540863,-0.736523151397705,0.379103302955627,0.565406024456024,-0.732527613639832,-0.151649922132492,0.499142348766327,-0.85314667224884,0.0112914023920894,0.524734199047089,-0.851191282272339,0.0589631348848343,0.527926087379456,-0.847241044044495,0.152622386813164,0.521761834621429,-0.839327692985535,0.0579546131193638,0.534520924091339,-0.843165993690491,0.011205798946321,0.525750517845154,-0.850565016269684,
  1897. -0.147345140576363,0.51520973443985,-0.844303607940674,0.0101619837805629,0.53806734085083,-0.842840611934662,-0.153004303574562,0.507961511611938,-0.847681999206543,-0.119791835546494,0.308645218610764,-0.943603754043579,-0.121147103607655,0.311795324087143,-0.942394316196442,-0.26876375079155,0.27887436747551,-0.921951830387115,0.0108376471325755,0.530110597610474,-0.847859263420105,0.0180675350129604,0.533433258533478,-0.845649182796478,0.152426362037659,0.526045739650726,-0.836685299873352,0.0103941420093179,0.535339951515198,-0.844572722911835,-0.146991983056068,0.512331426143646,-0.846114575862885,0.018178453668952,0.532540023326874,-0.846209585666656,-0.265063881874084,0.260568588972092,-0.928356170654297,-0.136939376592636,0.280383110046387,-0.950069963932037,-0.116951614618301,0.288919478654861,-0.950183093547821,0.0159921087324619,0.550006151199341,-0.835007607936859,-0.149195402860641,0.530424654483795,-0.834500074386597,-0.159387066960335,0.539967358112335,-0.826456904411316,-0.156038463115692,0.492665618658066,-0.85611480474472,-0.301618456840515,0.467134803533554,-0.831150770187378,-0.292727440595627,0.468870341777802,-0.833349406719208,-0.293586194515228,0.484259814023972,-0.824196338653564,-0.137313216924667,0.493887722492218,-0.858615159988403,-0.157158583402634,0.50790673494339,-0.846954464912415,-0.130691289901733,0.577437579631805,-0.805906713008881,0.01579081825912,0.551599383354187,-0.833959817886353,-0.159570023417473,0.542719841003418,-0.824616611003876,-0.136604458093643,0.503962695598602,-0.852854490280151,-0.294084072113037,0.493983060121536,-0.818226933479309,-0.202285394072533,0.499599725008011,-0.842306792736053,-0.197743684053421,0.540435671806335,-0.817818284034729,0.0225338749587536,0.524533748626709,-0.851091384887695,-0.134021550416946,0.53814697265625,-0.832127451896667,0.015649588778615,0.540057301521301,-0.841482758522034,0.0172586664557457,0.539923906326294,-0.84153687953949,-0.133569970726967,0.543762743473053,-0.828541576862335,0.0241135582327843,0.529813170433044,-0.847771525382996,
  1898. 0.0149623630568385,0.534915208816528,-0.844773232936859,-0.13390725851059,0.539577662944794,-0.831218838691711,0.0336283892393112,0.561217308044434,-0.826985061168671,0.0849150866270065,0.543704211711884,-0.83497017621994,0.0174381881952286,0.553365230560303,-0.832756161689758,0.083598680794239,0.524831593036652,-0.84709095954895,0.0178330987691879,0.535318672657013,-0.844461917877197,0.0141192162409425,0.528584659099579,-0.848763167858124,0.0852776020765305,0.548962652683258,-0.831485390663147,0.0339839421212673,0.562377631664276,-0.826181888580322,0.195947259664536,0.523377060890198,-0.829265415668488,0.153071865439415,0.511548459529877,-0.845510005950928,0.0195196773856878,0.521678805351257,-0.85291862487793,0.0593588873744011,0.53298556804657,-0.844039618968964,0.0820620879530907,0.50321090221405,-0.86025857925415,0.0588216334581375,0.535837233066559,-0.842269957065582,0.0190408937633038,0.525568902492523,-0.850537955760956,0.354537814855576,0.642040550708771,-0.679769694805145,0.139603599905968,0.704308807849884,-0.69603157043457,0.0340904481709003,0.657025992870331,-0.753096759319305,0.198805630207062,0.549951255321503,-0.81119042634964,0.0861009508371353,0.561010539531708,-0.823318779468536,0.200384050607681,0.543146967887878,-0.815375745296478,0.0557024739682674,0.552200794219971,-0.83184826374054,0.0851530805230141,0.547153294086456,-0.832689762115479,0.198654532432556,0.551430821418762,-0.810222446918488,0.0494244173169136,0.584164559841156,-0.81012898683548,0.193804040551186,0.595228433609009,-0.77983546257019,0.368196159601212,0.588943839073181,-0.719428062438965,0.222120091319084,0.643618404865265,-0.732405662536621,0.223633795976639,0.607528984546661,-0.762165606021881,0.191189795732498,0.616338014602661,-0.76392012834549,0.227246403694153,0.589323818683624,-0.775278329849243,0.368784308433533,0.586434721946716,-0.721174359321594,0.194542646408081,0.588975846767426,-0.784385502338409,0.0829683765769005,-0.715033113956451,-0.694149792194366,-0.0234681628644466,-0.708314001560211,-0.705507278442383,0.12480304390192,-0.720919251441956,-0.681688785552979,
  1899. 0.245411038398743,-0.691860437393188,-0.67904531955719,0.0838195309042931,-0.705345869064331,-0.703890264034271,0.129709839820862,-0.697872221469879,-0.704378962516785,-0.0162073448300362,-0.686891615390778,-0.726579129695892,0.0831898748874664,-0.712542057037354,-0.696680188179016,-0.0375168584287167,-0.69780433177948,-0.715305268764496,-0.21216382086277,-0.693687975406647,-0.688319325447083,-0.0342947915196419,-0.739115476608276,-0.672705113887787,-0.0434962958097458,-0.727620542049408,-0.684599459171295,0.0836098194122314,-0.707761824131012,-0.701485991477966,0.24548614025116,-0.694624364376068,-0.676190435886383,0.134244322776794,-0.713161110877991,-0.688025951385498,0.329097509384155,-0.676746010780334,-0.658566355705261,0.134454667568207,-0.716661751270294,-0.684337556362152,0.245554193854332,-0.697252571582794,-0.67345529794693,-0.0426709726452827,-0.723562121391296,-0.688939034938812,-0.123466365039349,-0.71025812625885,-0.693029165267944,-0.210148766636848,-0.687451601028442,-0.695160269737244,-0.338216096162796,-0.670080602169037,-0.660758554935455,-0.217858880758286,-0.711294770240784,-0.668279409408569,-0.124249272048473,-0.717417478561401,-0.685473740100861,-0.0405047610402107,-0.712822675704956,-0.700173795223236,0.0827470347285271,-0.717501401901245,-0.691624641418457,0.000130595013615675,-0.715350925922394,-0.698765397071838,-0.122975245118141,-0.705789864063263,-0.697665989398956,-0.0402750670909882,-0.711676478385925,-0.701351881027222,0.000206601092941128,-0.720104277133942,-0.693865835666656,0.0829282850027084,-0.715481877326965,-0.693691968917847,0.13345393538475,-0.700336396694183,-0.701226770877838,7.6185489888303e-005,-0.711927950382233,-0.702252507209778,-0.33808508515358,-0.679503321647644,-0.651132643222809,-0.125647634267807,-0.730323135852814,-0.671446800231934,-0.166857495903969,-0.706580102443695,-0.687679529190063,-0.166395291686058,-0.715461254119873,-0.678548336029053,-0.122752442955971,-0.703768372535706,-0.699744164943695,0.000204714975552633,-0.719986736774445,-0.693987846374512,
  1900. -0.166813239455223,-0.707458257675171,-0.686786830425262,-0.267242401838303,-0.689721763134003,-0.672952711582184,-0.338051974773407,-0.68134868144989,-0.649218678474426,7.93668732512742e-005,-0.712128579616547,-0.702049076557159,0.133461654186249,-0.700459241867065,-0.701102674007416,0.061258539557457,-0.709040820598602,-0.702501595020294,0.134576171636581,-0.718702137470245,-0.682170450687408,0.329250425100327,-0.678713083267212,-0.656462252140045,0.061825767159462,-0.723753273487091,-0.687283635139465,-0.0662562325596809,-0.718120813369751,-0.692757248878479,-0.166510820388794,-0.713300466537476,-0.680791199207306,0.000176076660864055,-0.718199253082275,-0.695837438106537,-0.265860706567764,-0.703559577465057,-0.659031093120575,-0.166349053382874,-0.716314494609833,-0.67765885591507,-0.066057987511158,-0.723926186561584,-0.686707615852356,0.211974173784256,-0.707203984260559,-0.674484610557556,0.0619436614215374,-0.726862370967865,-0.683983981609344,0.329561769962311,-0.682814180850983,-0.652038216590881,0.329716205596924,-0.684899866580963,-0.649768710136414,0.297756969928741,-0.695376753807068,-0.65405809879303,0.211946710944176,-0.704262018203735,-0.677564442157745,-0.000129170264699496,-0.715261578559875,-0.698856830596924,0.000106197614513803,-0.71381813287735,-0.700331151485443,0.061305683106184,-0.710248589515686,-0.701276361942291,0.0613767318427563,-0.712073743343353,-0.699416935443878,0.211877420544624,-0.698099732398987,-0.683933258056641,-0.000153505636262707,-0.716787278652191,-0.697291970252991,-0.000185363795026205,-0.718779325485229,-0.695238292217255,-0.0661446824669838,-0.721410989761353,-0.689341127872467,0.000217473949305713,-0.720781564712524,-0.693162202835083,0.296852499246597,-0.68562239408493,-0.664680778980255,0.0495941154658794,-0.735797226428986,-0.675383508205414,0.211937934160233,-0.703392207622528,-0.678470134735107,0.211902439594269,-0.700162947177887,-0.681813180446625,0.0453809089958668,-0.709721922874451,-0.70301878452301,-0.000178292291820981,-0.718337714672089,-0.695694506168365,
  1901. 0.0310132689774036,-0.743392944335938,-0.668135583400726,0.0494056157767773,-0.734644114971161,-0.676651477813721,0.296828776597977,-0.68537312746048,-0.664948403835297,-0.132543474435806,-0.665518999099731,-0.734517991542816,0.0369155183434486,-0.655505657196045,-0.754287481307983,0.0111082382500172,-0.654056310653687,-0.756364285945892,-0.160852283239365,-0.715643167495728,-0.679692208766937,-0.266055524349213,-0.70168536901474,-0.660947859287262,-0.0660667419433594,-0.723673403263092,-0.686973094940186,-0.159594789147377,-0.734776198863983,-0.659267365932465,-0.0656209290027618,-0.736104130744934,-0.673680007457733,-0.00040326380985789,-0.732250034809113,-0.681035757064819,-0.264254420995712,-0.71818470954895,-0.643723785877228,-0.159885004162788,-0.730575084686279,-0.663850009441376,-0.218896597623825,-0.724043428897858,-0.654098927974701,0.0462832674384117,-0.715359091758728,-0.697222530841827,-0.0919962376356125,-0.723498940467834,-0.684168100357056,-0.000167258345754817,-0.717647910118103,-0.696406126022339,-0.0871991515159607,-0.752991557121277,-0.652226984500885,-0.159221172332764,-0.740017533302307,-0.653469741344452,-0.000525269715581089,-0.739674091339111,-0.672965049743652,0.041326280683279,-0.684049606323242,-0.728263914585114,-0.126051843166351,-0.694806933403015,-0.708063781261444,-0.0966211706399918,-0.692595481872559,-0.714825749397278,-0.0896058604121208,-0.738503396511078,-0.668269038200378,-0.217994004487991,-0.731962978839874,-0.645529866218567,-0.159421175718308,-0.737234473228455,-0.656559407711029,-0.219425931572914,-0.719224154949188,-0.659218370914459,-0.0916909947991371,-0.725450217723846,-0.682139813899994,-0.119357347488403,-0.722988307476044,-0.68047171831131,0.0852609425783157,0.194886162877083,-0.97711306810379,-0.0224543251097202,0.208225071430206,-0.977823257446289,0.125565513968468,0.18142868578434,-0.975354790687561,0.245657429099083,0.194956079125404,-0.949549674987793,0.086134135723114,0.208488091826439,-0.974224627017975,0.130417615175247,0.212818801403046,-0.968348920345306,
  1902. -0.0149202886968851,0.23810125887394,-0.971125721931458,0.0854921787977219,0.198466926813126,-0.976371824741364,-0.0318548679351807,0.222451403737068,-0.974423229694366,-0.210162982344627,0.201345220208168,-0.95670872926712,-0.0336601287126541,0.163238361477852,-0.986012279987335,-0.0382882431149483,0.178865164518356,-0.983128309249878,0.0859218463301659,0.205160871148109,-0.974949479103088,0.24572566151619,0.191066786646843,-0.950322270393372,0.135847970843315,0.190954744815826,-0.972153067588806,0.33281221985817,0.18608221411705,-0.924450874328613,0.136062562465668,0.185928598046303,-0.973096907138824,0.245785862207413,0.187434390187263,-0.951029777526855,-0.0374004207551479,0.184932962059975,-0.982039213180542,-0.12792032957077,0.196947425603867,-0.972033083438873,-0.208223327994347,0.210301578044891,-0.955204963684082,-0.337000966072083,0.191656187176704,-0.921790778636932,-0.215646475553513,0.175461441278458,-0.96057790517807,-0.128846198320389,0.185668721795082,-0.974128246307373,-0.0350739434361458,0.200752690434456,-0.979013979434967,0.0850341767072678,0.191389247775078,-0.977823793888092,-0.00156491750385612,0.198744535446167,-0.980050086975098,-0.127312183380127,0.204231843352318,-0.970608651638031,-0.034795455634594,0.20263859629631,-0.978635311126709,-0.00151369441300631,0.19223915040493,-0.981346964836121,0.0852164849638939,0.194199457764626,-0.977253675460815,0.135038152337074,0.209178194403648,-0.968508839607239,-0.0016018949681893,0.203440710902214,-0.979085981845856,-0.336942106485367,0.178115874528885,-0.924524068832397,-0.130369991064072,0.166579827666283,-0.977371394634247,-0.167057499289513,0.193182960152626,-0.966836154460907,-0.166728720068932,0.182918399572372,-0.968887209892273,-0.127058461308479,0.207242593169212,-0.970003426074982,-0.00151577196083963,0.192502975463867,-0.981295228004456,-0.167009830474854,0.191659465432167,-0.967147648334503,-0.272398144006729,0.190936729311943,-0.943049550056458,-0.336920827627182,0.175173938274384,-0.925093770027161,-0.00159961148165166,0.203150704503059,-0.979146182537079,
  1903. 0.135045811533928,0.209010675549507,-0.968543827533722,0.0599323026835918,0.204626604914665,-0.977003633975983,0.136186167597771,0.182993054389954,-0.973635911941528,0.332971036434174,0.183246538043022,-0.924960017204285,0.0603102147579193,0.186070472002029,-0.98068368434906,-0.0615435056388378,0.191939935088158,-0.979475080966949,-0.166825607419014,0.185886770486832,-0.96830540895462,-0.00153519038576633,0.19496913254261,-0.980808198451996,-0.270906746387482,0.171114549040794,-0.947274684906006,-0.166638225317001,0.180185630917549,-0.969414710998535,-0.0613457038998604,0.185041099786758,-0.980814218521118,0.214801535010338,0.182407587766647,-0.95947265625,0.0603891089558601,0.182048574090004,-0.981433391571045,0.333301275968552,0.177178665995598,-0.92602276802063,0.333476662635803,0.173853650689125,-0.926589548587799,0.300900936126709,0.172198355197906,-0.937979936599731,0.214766934514046,0.18619404733181,-0.958752810955048,0.00156891660299152,0.199252307415009,-0.979946970939636,-0.00157994183246046,0.200652703642845,-0.979661166667938,0.0599735602736473,0.202654629945755,-0.977412045001984,0.060025230050087,0.200167372822762,-0.977921366691589,0.214656963944435,0.196456372737885,-0.956727385520935,0.00155172147788107,0.19706854224205,-0.980388581752777,0.0015239326748997,0.193539589643478,-0.981091260910034,-0.0613997988402843,0.186917841434479,-0.980454981327057,-0.00150846759788692,0.191575244069099,-0.981476783752441,0.300003439188004,0.186356320977211,-0.935558259487152,0.053015012294054,0.167680248618126,-0.984414935112,0.214748993515968,0.188031166791916,-0.958398222923279,0.214691489934921,0.193463608622551,-0.957329332828522,0.0485425926744938,0.206118017435074,-0.977322340011597,0.00153370504267514,0.194780483841896,-0.98084568977356,0.031329944729805,0.157520413398743,-0.987018644809723,0.0528093092143536,0.169469460844994,-0.984119534492493,0.299980193376541,0.18670965731144,-0.935495257377625,-0.134391874074936,0.255544602870941,-0.957410991191864,0.0397759154438972,0.278771847486496,-0.959533274173737,
  1904. 0.0110808620229363,0.280686348676682,-0.959735572338104,-0.160581663250923,0.182525560259819,-0.969998955726624,-0.271122306585312,0.173894390463829,-0.946706652641296,-0.0613622665405273,0.185614883899689,-0.980704843997955,-0.15938027203083,0.155509024858475,-0.974892258644104,-0.0607736818492413,0.16560685634613,-0.984317600727081,0.00137124408502132,0.174148187041283,-0.984718501567841,-0.269222110509872,0.15024608373642,-0.951286256313324,-0.159642592072487,0.161192879080772,-0.973925709724426,-0.219581946730614,0.156520903110504,-0.962956488132477,0.0495047047734261,0.197930306196213,-0.978965222835541,-0.0930002480745316,0.181721940636635,-0.978942334651947,0.0015393776120618,0.195500984787941,-0.98070228099823,-0.0880650281906128,0.138651952147484,-0.986417949199677,-0.159012347459793,0.147714927792549,-0.976163625717163,0.0012876084074378,0.163526400923729,-0.986538231372833,0.0443471223115921,0.241319239139557,-0.96943199634552,-0.127925381064415,0.217439442873001,-0.967654466629028,-0.0977578237652779,0.224461287260056,-0.96956729888916,-0.0906082019209862,0.160694137215614,-0.982836484909058,-0.21871118247509,0.145131558179855,-0.964936375617981,-0.159192770719528,0.151512131094933,-0.975552022457123,-0.220103114843369,0.163519814610481,-0.961673498153687,-0.0927427560091019,0.179444208741188,-0.979386806488037,-0.121242471039295,0.178918913006783,-0.976364850997925,-0.0886831656098366,0.263019621372223,0.960705995559692,0.02196847461164,0.251345425844193,0.967648208141327,-0.122059136629105,0.273273378610611,0.954160988330841,-0.241365984082222,0.247965276241302,0.938219428062439,-0.0897838398814201,0.246428996324539,0.964993178844452,-0.127115651965141,0.239938542246819,0.962429821491241,0.0117723448202014,0.211163222789764,0.97737991809845,-0.0896121188998222,0.249048590660095,0.964336276054382,0.0340380035340786,0.225725740194321,0.973596096038818,0.208694159984589,0.249405845999718,0.945644497871399,0.0335026159882545,0.296438127756119,0.954464256763458,0.0422844588756561,0.280412673950195,0.958947837352753,
  1905. -0.0895568579435349,0.249889254570007,0.964124023914337,-0.241435408592224,0.251957148313522,0.937137424945831,-0.132482305169106,0.261142730712891,0.956165850162506,-0.332676351070404,0.244392260909081,0.910823166370392,-0.132648006081581,0.265504151582718,0.954940974712372,-0.241489186882973,0.25522243976593,0.936239540576935,0.0408626161515713,0.270983636379242,0.96171635389328,0.127333775162697,0.256262093782425,0.958183646202087,0.205903872847557,0.237121567130089,0.949408769607544,0.338460624217987,0.238882124423981,0.910153687000275,0.213680654764175,0.271656036376953,0.938372850418091,0.128231033682823,0.267237156629562,0.95506078004837,0.0383658669888973,0.254426270723343,0.966330885887146,-0.0886797681450844,0.263070285320282,0.960692524909973,-0.00202491716481745,0.25716444849968,0.966365516185761,0.126734048128128,0.249019399285316,0.960170745849609,0.0381592214107513,0.253055900335312,0.966698825359344,-0.00207959138788283,0.264108151197433,0.964490950107574,-0.088812917470932,0.261088192462921,0.961220681667328,-0.131834894418716,0.244695201516151,0.960595667362213,-0.00199438026174903,0.253286242485046,0.967389345169067,0.338336497545242,0.25149142742157,0.906796932220459,0.129672139883041,0.285235971212387,0.949644982814789,0.164086937904358,0.257843285799026,0.952151417732239,0.163839489221573,0.266248494386673,0.949878096580505,0.126488566398621,0.246075585484505,0.960961759090424,-0.00207721279002726,0.263806104660034,0.964573502540588,0.164042070508003,0.259400874376297,0.951735973358154,0.267088502645493,0.248823940753937,0.930994272232056,0.338305413722992,0.253954172134399,0.906121790409088,-0.00199576793238521,0.253462463617325,0.967343270778656,-0.13183781504631,0.244767785072327,0.96057665348053,-0.0631145164370537,0.250702381134033,0.966004610061646,-0.132779642939568,0.269017368555069,0.953938782215118,-0.332864254713058,0.247774735093117,0.909840106964111,-0.0635978206992149,0.270534157752991,0.960607528686523,0.0585939586162567,0.26290163397789,0.96304178237915,0.163931280374527,0.26318171620369,0.950716555118561,
  1906. -0.00205653719604015,0.261180281639099,0.965287864208221,0.265908360481262,0.264924883842468,0.926880538463593,0.163816899061203,0.266995042562485,0.949672520160675,0.0584642365574837,0.268058001995087,0.961627185344696,-0.214214622974396,0.263067036867142,0.940695405006409,-0.0636881068348885,0.274353176355362,0.959517776966095,-0.333160012960434,0.253251135349274,0.908222615718842,-0.333649873733521,0.262784868478775,0.905329704284668,-0.297486960887909,0.27004536986351,0.915738523006439,-0.214228376746178,0.265662580728531,0.939962565898895,0.00201141252182424,0.25544947385788,0.966820418834686,-0.00200067297555506,0.254085391759872,0.967179715633392,-0.0631128922104836,0.250637322664261,0.966021597385406,-0.0631805211305618,0.253353595733643,0.965308308601379,-0.214111670851707,0.248833119869232,0.944583654403687,0.0020301106851548,0.257824122905731,0.966189742088318,0.00209283758886158,0.265790224075317,0.964028596878052,0.0583959892392159,0.270742326974869,0.960879027843475,-0.00210775434970856,0.267684936523438,0.963504314422607,-0.296308606863022,0.251417487859726,0.921406805515289,-0.0495630428195,0.288850903511047,0.956090271472931,-0.214192107319832,0.259337425231934,0.941735565662384,-0.21412293612957,0.250126302242279,0.944239497184753,-0.0448545701801777,0.247740030288696,0.967787683010101,0.002036013873294,0.258573800325394,0.965989351272583,-0.0321411713957787,0.296336650848389,0.954542577266693,-0.0490587204694748,0.284434676170349,0.957439482212067,-0.296103984117508,0.248344242572784,0.922305583953857,0.131377682089806,0.196420878171921,0.97167831659317,-0.0368137545883656,0.178126350045204,0.983318746089935,-0.0123157138004899,0.175414934754372,0.98441755771637,0.159777224063873,0.264510452747345,0.951054930686951,0.266105204820633,0.26231324672699,0.927566707134247,0.0584744960069656,0.267652839422226,0.961739420890808,0.158093631267548,0.299102604389191,0.941033482551575,0.057829599827528,0.292286992073059,0.954580664634705,0.00224959314800799,0.285698145627975,0.958317041397095,0.264304667711258,0.285248547792435,0.921290576457977,
  1907. 0.158784538507462,0.285457968711853,0.945146143436432,0.216108664870262,0.284910321235657,0.933875322341919,-0.0465917773544788,0.262877106666565,0.963703691959381,0.0919337421655655,0.276531130075455,0.956597447395325,0.00208967737853527,0.265388995409012,0.96413916349411,0.0873391702771187,0.316414326429367,0.944591879844666,0.157772734761238,0.305213153362274,0.939123392105103,0.00232147402130067,0.294827073812485,0.95554780960083,-0.0415889956057072,0.219380542635918,0.97475254535675,0.124584719538689,0.238397642970085,0.963143408298492,0.096653014421463,0.233488112688065,0.967544078826904,0.0903132930397987,0.290813982486725,0.952507615089417,0.215213283896446,0.296561479568481,0.930448591709137,0.158271446824074,0.295656591653824,0.942092001438141,0.216589942574501,0.278450548648834,0.935710489749908,0.0924089178442955,0.272296279668808,0.957765817642212,0.119058392941952,0.271208465099335,0.955128848552704
  1908. }
  1909. TangentsW: *795 {
  1910. a: -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  1911. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
  1912. }
  1913. }
  1914. LayerElementColor: 0 {
  1915. Version: 101
  1916. Name: "colorSet0"
  1917. MappingInformationType: "ByPolygonVertex"
  1918. ReferenceInformationType: "IndexToDirect"
  1919. Colors: *3180 {
  1920. a: 1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,
  1921. 0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,
  1922. 0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,
  1923. 0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0
  1924. }
  1925. ColorIndex: *795 {
  1926. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,
  1927. 534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794
  1928. }
  1929. }
  1930. LayerElementUV: 0 {
  1931. Version: 101
  1932. Name: "UVmap_0"
  1933. MappingInformationType: "ByPolygonVertex"
  1934. ReferenceInformationType: "IndexToDirect"
  1935. UV: *1244 {
  1936. a: 0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.306396484375,1.472900390625,0.6533203125,1.53662109375,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.420166015625,1.485107421875,0.292236328125,1.521484375,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.671875,2.3876953125,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.810546875,3.412109375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.7392578125,3.287109375,0.9033203125,3.009765625,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.32763671875,2.7802734375,0.66796875,2.755859375,0.28271484375,2.3271484375,0.2122802734375,2.25390625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.331787109375,1.96875,0.484130859375,2.134765625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.5107421875,1.318603515625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.306396484375,1.472900390625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.6533203125,1.53662109375,0.5107421875,1.318603515625,0.60888671875,1.572265625,0.5107421875,1.318603515625,0.6533203125,1.53662109375,0.6533203125,1.53662109375,0.7958984375,1.78955078125,0.60888671875,1.572265625,0.306396484375,1.472900390625,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.60888671875,1.572265625,0.420166015625,1.485107421875,0.5107421875,1.318603515625,
  1937. 0.420166015625,1.485107421875,0.292236328125,1.521484375,0.306396484375,1.472900390625,0.174560546875,1.478271484375,0.306396484375,1.472900390625,0.292236328125,1.521484375,0.292236328125,1.521484375,0.257568359375,1.7607421875,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.292236328125,1.521484375,0.33740234375,1.80126953125,0.292236328125,1.521484375,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.257568359375,1.7607421875,0.60888671875,1.572265625,0.51513671875,1.84814453125,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.420166015625,1.485107421875,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.51513671875,1.84814453125,0.60888671875,1.572265625,0.64892578125,1.830078125,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.51513671875,1.84814453125,0.52734375,2.1748046875,0.33740234375,1.80126953125,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.7958984375,1.78955078125,0.6494140625,2.1064453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.64892578125,1.830078125,0.6494140625,2.1064453125,0.6494140625,2.1064453125,0.7958984375,1.78955078125,0.75048828125,2.1279296875,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.75048828125,2.1279296875,0.671875,2.3876953125,0.671875,2.3876953125,0.450927734375,2.416015625,0.58642578125,2.3134765625,0.453857421875,2.3212890625,0.52734375,2.1748046875,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.3720703125,2.2958984375,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.52734375,2.1748046875,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.450927734375,2.416015625,0.294189453125,2.375,0.33740234375,1.80126953125,0.52734375,2.1748046875,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.382080078125,
  1938. 2.068359375,0.52734375,2.1748046875,0.347412109375,2.0087890625,0.33740234375,1.80126953125,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.186767578125,2.1904296875,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.347412109375,2.0087890625,0.294189453125,2.375,0.1043701171875,2.1630859375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.347412109375,2.0087890625,0.186767578125,2.1904296875,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.5107421875,1.318603515625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.306396484375,1.472900390625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.6533203125,1.53662109375,0.5107421875,1.318603515625,0.60888671875,1.572265625,0.5107421875,1.318603515625,0.6533203125,1.53662109375,0.6533203125,1.53662109375,0.7958984375,1.78955078125,0.60888671875,1.572265625,0.306396484375,1.472900390625,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.60888671875,1.572265625,0.420166015625,1.485107421875,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.292236328125,1.521484375,0.306396484375,1.472900390625,0.174560546875,1.478271484375,0.306396484375,1.472900390625,0.292236328125,1.521484375,0.292236328125,1.521484375,0.257568359375,1.7607421875,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.292236328125,1.521484375,0.33740234375,1.80126953125,0.292236328125,1.521484375,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.257568359375,1.7607421875,0.60888671875,1.572265625,0.51513671875,1.84814453125,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.420166015625,1.485107421875,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.51513671875,1.84814453125,0.60888671875,1.572265625,0.64892578125,1.830078125,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.51513671875,1.84814453125,
  1939. 0.52734375,2.1748046875,0.33740234375,1.80126953125,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.7958984375,1.78955078125,0.6494140625,2.1064453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.64892578125,1.830078125,0.6494140625,2.1064453125,0.6494140625,2.1064453125,0.7958984375,1.78955078125,0.75048828125,2.1279296875,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.75048828125,2.1279296875,0.671875,2.3876953125,0.671875,2.3876953125,0.450927734375,2.416015625,0.58642578125,2.3134765625,0.453857421875,2.3212890625,0.52734375,2.1748046875,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.3720703125,2.2958984375,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.52734375,2.1748046875,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.450927734375,2.416015625,0.294189453125,2.375,0.33740234375,1.80126953125,0.52734375,2.1748046875,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.382080078125,2.068359375,0.52734375,2.1748046875,0.347412109375,2.0087890625,0.33740234375,1.80126953125,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.186767578125,2.1904296875,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.347412109375,2.0087890625,0.294189453125,2.375,0.1043701171875,2.1630859375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.347412109375,2.0087890625,0.186767578125,2.1904296875,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.5107421875,1.318603515625,0.4990234375,1.1295166015625,0.5107421875,1.318603515625,0.306396484375,1.472900390625,0.283935546875,1.445556640625,0.5615234375,1.3173828125,0.6533203125,1.53662109375,0.5107421875,1.318603515625,0.60888671875,
  1940. 1.572265625,0.5107421875,1.318603515625,0.6533203125,1.53662109375,0.6533203125,1.53662109375,0.7958984375,1.78955078125,0.60888671875,1.572265625,0.306396484375,1.472900390625,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.60888671875,1.572265625,0.420166015625,1.485107421875,0.5107421875,1.318603515625,0.420166015625,1.485107421875,0.292236328125,1.521484375,0.306396484375,1.472900390625,0.174560546875,1.478271484375,0.306396484375,1.472900390625,0.292236328125,1.521484375,0.292236328125,1.521484375,0.257568359375,1.7607421875,0.174560546875,1.478271484375,0.257568359375,1.7607421875,0.292236328125,1.521484375,0.33740234375,1.80126953125,0.292236328125,1.521484375,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.33740234375,1.80126953125,0.347412109375,2.0087890625,0.257568359375,1.7607421875,0.60888671875,1.572265625,0.51513671875,1.84814453125,0.420166015625,1.485107421875,0.33740234375,1.80126953125,0.420166015625,1.485107421875,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.51513671875,1.84814453125,0.60888671875,1.572265625,0.64892578125,1.830078125,0.60888671875,1.572265625,0.7958984375,1.78955078125,0.51513671875,1.84814453125,0.52734375,2.1748046875,0.33740234375,1.80126953125,0.51513671875,1.84814453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.7958984375,1.78955078125,0.6494140625,2.1064453125,0.64892578125,1.830078125,0.52734375,2.1748046875,0.64892578125,1.830078125,0.6494140625,2.1064453125,0.6494140625,2.1064453125,0.7958984375,1.78955078125,0.75048828125,2.1279296875,0.75048828125,2.1279296875,0.58642578125,2.3134765625,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.52734375,2.1748046875,0.6494140625,2.1064453125,0.58642578125,2.3134765625,0.75048828125,2.1279296875,0.671875,2.3876953125,0.671875,2.3876953125,0.450927734375,2.416015625,0.58642578125,2.3134765625,0.453857421875,2.3212890625,0.52734375,2.1748046875,0.58642578125,2.3134765625,0.450927734375,2.416015625,0.453857421875,2.3212890625,0.58642578125,2.3134765625,0.450927734375,2.416015625,
  1941. 0.3720703125,2.2958984375,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.52734375,2.1748046875,0.453857421875,2.3212890625,0.3720703125,2.2958984375,0.450927734375,2.416015625,0.294189453125,2.375,0.33740234375,1.80126953125,0.52734375,2.1748046875,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.382080078125,2.068359375,0.52734375,2.1748046875,0.347412109375,2.0087890625,0.33740234375,1.80126953125,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.3720703125,2.2958984375,0.294189453125,2.375,0.382080078125,2.068359375,0.3720703125,2.2958984375,0.186767578125,2.1904296875,0.382080078125,2.068359375,0.186767578125,2.1904296875,0.347412109375,2.0087890625,0.294189453125,2.375,0.1043701171875,2.1630859375,0.186767578125,2.1904296875,0.1043701171875,2.1630859375,0.347412109375,2.0087890625,0.186767578125,2.1904296875,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.2003173828125,3.380859375,0.08258056640625,3.56640625,0.43359375,3.587890625,0.2003173828125,3.380859375,0.4453125,3.49609375,0.810546875,3.412109375,0.43359375,3.587890625,0.4453125,3.49609375,0.2003173828125,3.380859375,0.0078887939453125,3.169921875,0.1475830078125,3.130859375,0.224609375,2.7421875,0.1475830078125,3.130859375,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.7392578125,3.287109375,0.810546875,3.412109375,0.9033203125,3.009765625,0.810546875,3.412109375,0.7392578125,3.287109375,0.4453125,3.49609375,0.2003173828125,3.380859375,0.5263671875,3.09375,0.7392578125,3.287109375,0.4453125,3.49609375,0.5263671875,3.09375,0.2003173828125,3.380859375,0.1475830078125,3.130859375,0.5263671875,3.09375,0.9033203125,3.009765625,0.7392578125,3.287109375,0.822265625,2.9921875,0.822265625,2.9921875,0.7392578125,3.287109375,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.9033203125,3.009765625,0.5263671875,3.09375,0.1475830078125,3.130859375,0.32763671875,2.7802734375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.32763671875,2.7802734375,0.66796875,
  1942. 2.755859375,0.822265625,2.9921875,0.5263671875,3.09375,0.794921875,2.7119140625,0.822265625,2.9921875,0.66796875,2.755859375,0.28271484375,2.3271484375,0.32763671875,2.7802734375,0.224609375,2.7421875,0.224609375,2.7421875,0.2122802734375,2.25390625,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.5263671875,3.09375,0.32763671875,2.7802734375,0.32763671875,2.7802734375,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.517578125,2.4833984375,0.66796875,2.755859375,0.5263671875,3.09375,0.2122802734375,2.25390625,0.374755859375,2.2138671875,0.28271484375,2.3271484375,0.28271484375,2.3271484375,0.374755859375,2.2138671875,0.517578125,2.4833984375,0.331787109375,1.96875,0.374755859375,2.2138671875,0.2122802734375,2.25390625,0.484130859375,2.134765625,0.374755859375,2.2138671875,0.331787109375,1.96875,0.62939453125,2.3837890625,0.794921875,2.7119140625,0.66796875,2.755859375,0.62939453125,2.3837890625,0.66796875,2.755859375,0.517578125,2.4833984375,0.794921875,2.7119140625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.374755859375,2.2138671875,0.5283203125,2.2587890625,0.517578125,2.4833984375,0.5283203125,2.2587890625,0.62939453125,2.3837890625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.484130859375,2.134765625,0.5283203125,2.2587890625,0.5283203125,2.2587890625,0.828125,2.2900390625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.484130859375,2.134765625,0.2003173828125,3.380859375,0.43359375,3.587890625,0.08258056640625,3.56640625,0.0078887939453125,3.169921875,0.2003173828125,3.380859375,0.08258056640625,3.56640625,0.43359375,3.587890625,0.2003173828125,3.380859375,0.4453125,3.49609375,0.810546875,3.412109375,0.43359375,3.587890625,0.4453125,3.49609375,0.2003173828125,3.380859375,0.0078887939453125,3.169921875,0.1475830078125,3.130859375,0.224609375,2.7421875,0.1475830078125,3.130859375,0.0078887939453125,3.169921875,0.4453125,3.49609375,0.7392578125,3.287109375,0.810546875,3.412109375,0.9033203125,3.009765625,0.810546875,3.412109375,0.7392578125,3.287109375,0.4453125,
  1943. 3.49609375,0.2003173828125,3.380859375,0.5263671875,3.09375,0.7392578125,3.287109375,0.4453125,3.49609375,0.5263671875,3.09375,0.2003173828125,3.380859375,0.1475830078125,3.130859375,0.5263671875,3.09375,0.9033203125,3.009765625,0.7392578125,3.287109375,0.822265625,2.9921875,0.822265625,2.9921875,0.7392578125,3.287109375,0.5263671875,3.09375,0.822265625,2.9921875,0.794921875,2.7119140625,0.9033203125,3.009765625,0.5263671875,3.09375,0.1475830078125,3.130859375,0.32763671875,2.7802734375,0.1475830078125,3.130859375,0.224609375,2.7421875,0.32763671875,2.7802734375,0.66796875,2.755859375,0.822265625,2.9921875,0.5263671875,3.09375,0.794921875,2.7119140625,0.822265625,2.9921875,0.66796875,2.755859375,0.28271484375,2.3271484375,0.32763671875,2.7802734375,0.224609375,2.7421875,0.224609375,2.7421875,0.2122802734375,2.25390625,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.5263671875,3.09375,0.32763671875,2.7802734375,0.32763671875,2.7802734375,0.28271484375,2.3271484375,0.517578125,2.4833984375,0.517578125,2.4833984375,0.66796875,2.755859375,0.5263671875,3.09375,0.2122802734375,2.25390625,0.374755859375,2.2138671875,0.28271484375,2.3271484375,0.28271484375,2.3271484375,0.374755859375,2.2138671875,0.517578125,2.4833984375,0.331787109375,1.96875,0.374755859375,2.2138671875,0.2122802734375,2.25390625,0.484130859375,2.134765625,0.374755859375,2.2138671875,0.331787109375,1.96875,0.62939453125,2.3837890625,0.794921875,2.7119140625,0.66796875,2.755859375,0.62939453125,2.3837890625,0.66796875,2.755859375,0.517578125,2.4833984375,0.794921875,2.7119140625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.374755859375,2.2138671875,0.5283203125,2.2587890625,0.517578125,2.4833984375,0.5283203125,2.2587890625,0.62939453125,2.3837890625,0.517578125,2.4833984375,0.374755859375,2.2138671875,0.484130859375,2.134765625,0.5283203125,2.2587890625,0.5283203125,2.2587890625,0.828125,2.2900390625,0.62939453125,2.3837890625,0.828125,2.2900390625,0.5283203125,2.2587890625,0.484130859375,2.134765625
  1944. }
  1945. UVIndex: *795 {
  1946. a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,26,23,24,25,23,26,25,26,13,24,27,26,27,13,26,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,28,29,30,31,28,30,29,28,32,33,29,32,28,31,34,35,34,31,32,36,33,37,33,36,32,28,38,36,32,38,28,34,38,37,36,39,39,36,38,39,40,37,38,34,41,34,35,41,42,39,38,40,39,42,43,41,35,35,44,43,45,38,41,41,43,45,45,42,38,44,46,43,43,46,45,47,46,44,48,46,47,49,40,42,49,42,45,40,49,50,46,51,45,51,49,45,46,48,51,51,50,49,50,51,48,
  1947. 412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621
  1948. }
  1949. }
  1950. LayerElementUV: 1 {
  1951. Version: 101
  1952. Name: "LightMapUV"
  1953. MappingInformationType: "ByPolygonVertex"
  1954. ReferenceInformationType: "IndexToDirect"
  1955. UV: *368 {
  1956. a: 0.8896484375,0.8333740234375,0.89306640625,0.7769775390625,0.82666015625,0.739013671875,0.908203125,0.77734375,0.83349609375,0.73095703125,0.93505859375,0.7119140625,0.921875,0.701171875,0.9765625,0.636474609375,0.86669921875,0.727294921875,0.8291015625,0.71630859375,0.794921875,0.729248046875,0.8193359375,0.64501953125,0.84228515625,0.6328125,0.84521484375,0.571044921875,0.89453125,0.618896484375,0.93359375,0.624267578125,0.89794921875,0.521484375,0.93408203125,0.541748046875,0.96337890625,0.535400390625,0.91552734375,0.47998046875,0.9404296875,0.4580078125,0.8759765625,0.44970703125,0.87646484375,0.4775390625,0.8525390625,0.4853515625,0.830078125,0.4619140625,0.85546875,0.55322265625,0.79833984375,0.5166015625,0.7744140625,0.52490234375,0.45849609375,0.4609375,0.4619140625,0.40478515625,0.3955078125,0.36669921875,0.476806640625,0.40478515625,0.402099609375,0.3583984375,0.50341796875,0.33935546875,0.49072265625,0.32861328125,0.54541015625,0.26416015625,0.435546875,0.35498046875,0.39794921875,0.34423828125,0.363525390625,0.35693359375,0.387939453125,0.2724609375,0.4111328125,0.26025390625,0.4140625,0.19873046875,0.46337890625,0.24658203125,0.50244140625,0.251953125,0.466796875,0.14892578125,0.50244140625,0.16943359375,0.5322265625,0.1630859375,0.484130859375,0.107421875,0.50927734375,0.08544921875,0.444580078125,0.0771484375,0.4453125,0.10498046875,0.42138671875,0.11279296875,0.398681640625,0.08935546875,0.42431640625,0.1806640625,0.3671875,0.14404296875,0.343017578125,0.15234375,0.71337890625,0.519775390625,0.716796875,0.46337890625,0.650390625,0.42529296875,0.7314453125,0.4638671875,0.65673828125,0.41748046875,0.75830078125,0.3984375,0.74560546875,0.3876953125,0.80029296875,0.32275390625,0.6904296875,0.41357421875,0.65283203125,0.40283203125,0.6181640625,0.41552734375,0.642578125,0.33154296875,0.666015625,0.3193359375,0.6689453125,0.25732421875,0.71826171875,0.30517578125,0.75732421875,0.310546875,0.7216796875,0.2080078125,0.75732421875,0.22802734375,0.787109375,0.2216796875,0.73876953125,
  1957. 0.16650390625,0.76416015625,0.14404296875,0.69921875,0.1357421875,0.7001953125,0.1640625,0.67626953125,0.17138671875,0.6533203125,0.14794921875,0.67919921875,0.23974609375,0.6220703125,0.203125,0.59765625,0.21142578125,0.242919921875,0.539306640625,0.246337890625,0.48291015625,0.179931640625,0.4453125,0.26123046875,0.4833984375,0.1865234375,0.43701171875,0.2880859375,0.41796875,0.275146484375,0.4072265625,0.329833984375,0.34228515625,0.2198486328125,0.43310546875,0.182373046875,0.42236328125,0.14794921875,0.435546875,0.1722412109375,0.35107421875,0.1956787109375,0.3388671875,0.1986083984375,0.27685546875,0.2476806640625,0.32470703125,0.286865234375,0.330078125,0.251220703125,0.2275390625,0.286865234375,0.24755859375,0.31640625,0.2412109375,0.2685546875,0.18603515625,0.29345703125,0.16357421875,0.2288818359375,0.1552734375,0.229736328125,0.18359375,0.205810546875,0.19140625,0.1829833984375,0.16748046875,0.208740234375,0.25927734375,0.1514892578125,0.22265625,0.12744140625,0.23095703125,0.578125,0.9259033203125,0.6494140625,0.990196228027344,0.5419921875,0.983535766601563,0.51953125,0.8604736328125,0.65283203125,0.961700439453125,0.76416015625,0.93560791015625,0.56201171875,0.8482666015625,0.58544921875,0.727783203125,0.74267578125,0.89678955078125,0.79248046875,0.8106689453125,0.677734375,0.8367919921875,0.76806640625,0.8052978515625,0.759765625,0.71826171875,0.6171875,0.739501953125,0.720703125,0.73193359375,0.60302734375,0.598876953125,0.58154296875,0.575927734375,0.6748046875,0.647216796875,0.63134765625,0.5634765625,0.6181640625,0.48779296875,0.66455078125,0.5390625,0.708984375,0.616455078125,0.76953125,0.587158203125,0.67822265625,0.57763671875,0.06854248046875,0.9259033203125,0.1396484375,0.990196228027344,0.0325927734375,0.983535766601563,0.00980377197265625,0.8604736328125,0.143310546875,0.961700439453125,0.254638671875,0.93560791015625,0.05242919921875,0.8482666015625,0.075927734375,0.727783203125,0.2330322265625,0.89678955078125,0.282958984375,0.8106689453125,0.16796875,0.8367919921875,0.25830078125,0.8052978515625,
  1958. 0.25,0.71826171875,0.10736083984375,0.739501953125,0.2113037109375,0.73193359375,0.09368896484375,0.598876953125,0.0721435546875,0.575927734375,0.165283203125,0.647216796875,0.12176513671875,0.5634765625,0.108642578125,0.48779296875,0.1551513671875,0.5390625,0.199462890625,0.616455078125,0.260009765625,0.587158203125,0.1685791015625,0.57763671875,0.498779296875,0.5517578125,0.427490234375,0.48779296875,0.53466796875,0.494140625,0.5576171875,0.6171875,0.424072265625,0.515869140625,0.3125,0.5419921875,0.5146484375,0.62939453125,0.491455078125,0.75,0.334228515625,0.580810546875,0.2841796875,0.6669921875,0.399169921875,0.640869140625,0.308837890625,0.67236328125,0.3173828125,0.7593994140625,0.4599609375,0.73828125,0.35595703125,0.745849609375,0.4736328125,0.87890625,0.4951171875,0.90167236328125,0.40185546875,0.8304443359375,0.445556640625,0.91412353515625,0.458740234375,0.990196228027344,0.412109375,0.93865966796875,0.367919921875,0.861328125,0.30712890625,0.89044189453125,0.398681640625,0.900146484375
  1959. }
  1960. UVIndex: *795 {
  1961. a: 0,1,2,3,1,0,1,4,2,3,5,1,6,1,5,5,7,6,4,1,8,6,8,1,8,9,4,10,4,9,9,11,10,11,9,12,9,8,12,12,13,11,6,14,8,12,8,14,15,14,6,15,6,7,14,16,12,14,15,16,7,17,15,16,15,17,17,7,18,18,19,17,19,16,17,19,18,20,20,21,19,22,16,19,21,22,19,21,23,22,23,16,22,23,21,24,12,16,25,23,25,16,13,12,25,26,23,24,25,23,26,25,26,13,24,27,26,27,13,26,28,29,30,31,29,28,29,32,30,31,33,29,34,29,33,33,35,34,32,29,36,34,36,29,36,37,32,38,32,37,37,39,38,39,37,40,37,36,40,40,41,39,34,42,36,40,36,42,43,42,34,43,34,35,42,44,40,42,43,44,35,45,43,44,43,45,45,35,46,46,47,45,47,44,45,47,46,48,48,49,47,50,44,47,49,50,47,49,51,50,51,44,50,51,49,52,40,44,53,51,53,44,41,40,53,54,51,52,53,51,54,53,54,41,52,55,54,55,41,54,56,57,58,59,57,56,57,60,58,59,61,57,62,57,61,61,63,62,60,57,64,62,64,57,64,65,60,66,60,65,65,67,66,67,65,68,65,64,68,68,69,67,62,70,64,68,64,70,71,70,62,71,62,63,70,72,68,70,71,72,63,73,71,72,71,73,73,63,74,74,75,73,75,72,73,75,74,76,76,77,75,78,72,75,77,78,75,77,79,78,79,72,78,79,77,80,68,72,81,79,81,72,69,68,81,82,79,80,81,79,82,81,82,69,80,83,82,83,69,82,84,85,86,87,85,84,85,88,86,87,89,85,90,85,89,89,91,90,88,85,92,90,92,85,92,93,88,94,88,93,93,95,94,95,93,96,93,92,96,96,97,95,90,98,92,96,92,98,99,98,90,99,90,91,98,100,96,98,99,100,91,101,99,100,99,101,101,91,102,102,103,101,103,100,101,103,102,104,104,105,103,106,100,103,105,106,103,105,107,106,107,100,106,107,105,108,96,100,109,107,109,100,97,96,109,110,107,108,109,107,110,109,110,97,108,111,110,111,97,110,112,113,114,115,112,114,113,112,116,117,113,116,112,115,118,119,118,115,116,120,117,121,117,120,116,112,122,120,116,122,112,118,122,121,120,123,123,120,122,123,124,121,122,118,125,118,119,125,126,123,122,124,123,126,127,125,119,119,128,127,129,122,125,125,127,129,129,126,122,128,130,127,127,130,129,131,130,128,132,130,131,133,124,126,133,126,129,124,133,134,130,135,129,135,133,129,130,132,135,135,134,133,134,135,132,136,137,138,139,136,138,137,136,140,141,137,140,136,139,142,143,142,139,140,144,141,145,141,144,140,136,146,144,140,146,136,142,146,145,144,147,147,144,146,
  1962. 147,148,145,146,142,149,142,143,149,150,147,146,148,147,150,151,149,143,143,152,151,153,146,149,149,151,153,153,150,146,152,154,151,151,154,153,155,154,152,156,154,155,157,148,150,157,150,153,148,157,158,154,159,153,159,157,153,154,156,159,159,158,157,158,159,156,160,161,162,163,160,162,161,160,164,165,161,164,160,163,166,167,166,163,164,168,165,169,165,168,164,160,170,168,164,170,160,166,170,169,168,171,171,168,170,171,172,169,170,166,173,166,167,173,174,171,170,172,171,174,175,173,167,167,176,175,177,170,173,173,175,177,177,174,170,176,178,175,175,178,177,179,178,176,180,178,179,181,172,174,181,174,177,172,181,182,178,183,177,183,181,177,178,180,183,183,182,181,182,183,180
  1963. }
  1964. }
  1965. LayerElementSmoothing: 0 {
  1966. Version: 102
  1967. Name: ""
  1968. MappingInformationType: "ByEdge"
  1969. ReferenceInformationType: "Direct"
  1970. Smoothing: *442 {
  1971. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1972. }
  1973. }
  1974. LayerElementMaterial: 0 {
  1975. Version: 101
  1976. Name: ""
  1977. MappingInformationType: "AllSame"
  1978. ReferenceInformationType: "IndexToDirect"
  1979. Materials: *1 {
  1980. a: 0
  1981. }
  1982. }
  1983. Layer: 0 {
  1984. Version: 100
  1985. LayerElement: {
  1986. Type: "LayerElementNormal"
  1987. TypedIndex: 0
  1988. }
  1989. LayerElement: {
  1990. Type: "LayerElementBinormal"
  1991. TypedIndex: 0
  1992. }
  1993. LayerElement: {
  1994. Type: "LayerElementTangent"
  1995. TypedIndex: 0
  1996. }
  1997. LayerElement: {
  1998. Type: "LayerElementMaterial"
  1999. TypedIndex: 0
  2000. }
  2001. LayerElement: {
  2002. Type: "LayerElementColor"
  2003. TypedIndex: 0
  2004. }
  2005. LayerElement: {
  2006. Type: "LayerElementSmoothing"
  2007. TypedIndex: 0
  2008. }
  2009. LayerElement: {
  2010. Type: "LayerElementUV"
  2011. TypedIndex: 0
  2012. }
  2013. }
  2014. Layer: 1 {
  2015. Version: 100
  2016. LayerElement: {
  2017. Type: "LayerElementBinormal"
  2018. TypedIndex: 1
  2019. }
  2020. LayerElement: {
  2021. Type: "LayerElementTangent"
  2022. TypedIndex: 1
  2023. }
  2024. LayerElement: {
  2025. Type: "LayerElementUV"
  2026. TypedIndex: 1
  2027. }
  2028. }
  2029. }
  2030. Model: 2268468994064, "Model::SM_Ivy_Preset_06", "Null" {
  2031. Version: 232
  2032. Properties70: {
  2033. P: "RotationActive", "bool", "", "",1
  2034. P: "InheritType", "enum", "", "",1
  2035. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2036. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2037. }
  2038. Shading: Y
  2039. Culling: "CullingOff"
  2040. }
  2041. Model: 2268468991744, "Model::LOD_Group_SM_Ivy_Preset_06", "LodGroup" {
  2042. Version: 232
  2043. Properties70: {
  2044. P: "RotationActive", "bool", "", "",1
  2045. P: "InheritType", "enum", "", "",1
  2046. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2047. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2048. }
  2049. Shading: Y
  2050. Culling: "CullingOff"
  2051. }
  2052. Model: 2268468966224, "Model::SM_Ivy_Preset_06_LOD0", "Mesh" {
  2053. Version: 232
  2054. Properties70: {
  2055. P: "RotationActive", "bool", "", "",1
  2056. P: "InheritType", "enum", "", "",1
  2057. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2058. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2059. P: "currentUVSet", "KString", "", "U", "UVmap_0"
  2060. }
  2061. Shading: T
  2062. Culling: "CullingOff"
  2063. }
  2064. Model: 2268468998704, "Model::SM_Ivy_Preset_06_LOD1", "Mesh" {
  2065. Version: 232
  2066. Properties70: {
  2067. P: "RotationActive", "bool", "", "",1
  2068. P: "InheritType", "enum", "", "",1
  2069. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2070. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2071. P: "currentUVSet", "KString", "", "U", "UVmap_0"
  2072. }
  2073. Shading: T
  2074. Culling: "CullingOff"
  2075. }
  2076. Model: 2268468968544, "Model::SM_Ivy_Preset_06_LOD2", "Mesh" {
  2077. Version: 232
  2078. Properties70: {
  2079. P: "RotationActive", "bool", "", "",1
  2080. P: "InheritType", "enum", "", "",1
  2081. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2082. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2083. P: "currentUVSet", "KString", "", "U", "UVmap_0"
  2084. }
  2085. Shading: T
  2086. Culling: "CullingOff"
  2087. }
  2088. Material: 2267913051200, "Material::MI_Ivy_Tileable_01", "" {
  2089. Version: 102
  2090. ShadingModel: "phong"
  2091. MultiLayer: 0
  2092. Properties70: {
  2093. P: "AmbientColor", "Color", "", "A",0,0,0
  2094. P: "DiffuseColor", "Color", "", "A",1,1,1
  2095. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  2096. P: "TransparencyFactor", "Number", "", "A",1
  2097. P: "SpecularColor", "Color", "", "A",0,0,0
  2098. P: "ReflectionFactor", "Number", "", "A",0.5
  2099. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  2100. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  2101. P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
  2102. P: "Specular", "Vector3D", "Vector", "",0,0,0
  2103. P: "Shininess", "double", "Number", "",20
  2104. P: "Opacity", "double", "Number", "",1
  2105. P: "Reflectivity", "double", "Number", "",0
  2106. }
  2107. }
  2108. Material: 2267913034880, "Material::MI_Ivy_Atlas_01", "" {
  2109. Version: 102
  2110. ShadingModel: "phong"
  2111. MultiLayer: 0
  2112. Properties70: {
  2113. P: "AmbientColor", "Color", "", "A",0,0,0
  2114. P: "DiffuseColor", "Color", "", "A",1,1,1
  2115. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  2116. P: "TransparencyFactor", "Number", "", "A",1
  2117. P: "SpecularColor", "Color", "", "A",0,0,0
  2118. P: "ReflectionFactor", "Number", "", "A",0.5
  2119. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  2120. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  2121. P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
  2122. P: "Specular", "Vector3D", "Vector", "",0,0,0
  2123. P: "Shininess", "double", "Number", "",20
  2124. P: "Opacity", "double", "Number", "",1
  2125. P: "Reflectivity", "double", "Number", "",0
  2126. }
  2127. }
  2128. Video: 2268161663952, "Video::file40", "Clip" {
  2129. Type: "Clip"
  2130. Properties70: {
  2131. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
  2132. }
  2133. UseMipMap: 0
  2134. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
  2135. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
  2136. }
  2137. Video: 2268161662752, "Video::file42", "Clip" {
  2138. Type: "Clip"
  2139. Properties70: {
  2140. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
  2141. }
  2142. UseMipMap: 0
  2143. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
  2144. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
  2145. }
  2146. Video: 2268161652752, "Video::file41", "Clip" {
  2147. Type: "Clip"
  2148. Properties70: {
  2149. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
  2150. }
  2151. UseMipMap: 0
  2152. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
  2153. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
  2154. }
  2155. Video: 2268161655952, "Video::file43", "Clip" {
  2156. Type: "Clip"
  2157. Properties70: {
  2158. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
  2159. }
  2160. UseMipMap: 0
  2161. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
  2162. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
  2163. }
  2164. Texture: 2267913053120, "Texture::file40", "" {
  2165. Type: "TextureVideoClip"
  2166. Version: 202
  2167. TextureName: "Texture::file40"
  2168. Properties70: {
  2169. P: "CurrentTextureBlendMode", "enum", "", "",0
  2170. P: "UVSet", "KString", "", "", "UVmap_0"
  2171. P: "UseMaterial", "bool", "", "",1
  2172. }
  2173. Media: "Video::file40"
  2174. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
  2175. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
  2176. ModelUVTranslation: 0,0
  2177. ModelUVScaling: 1,1
  2178. Texture_Alpha_Source: "None"
  2179. Cropping: 0,0,0,0
  2180. }
  2181. Texture: 2267913035360, "Texture::file42", "" {
  2182. Type: "TextureVideoClip"
  2183. Version: 202
  2184. TextureName: "Texture::file42"
  2185. Properties70: {
  2186. P: "CurrentTextureBlendMode", "enum", "", "",0
  2187. P: "UVSet", "KString", "", "", "UVmap_0"
  2188. P: "UseMaterial", "bool", "", "",1
  2189. }
  2190. Media: "Video::file42"
  2191. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
  2192. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
  2193. ModelUVTranslation: 0,0
  2194. ModelUVScaling: 1,1
  2195. Texture_Alpha_Source: "None"
  2196. Cropping: 0,0,0,0
  2197. }
  2198. Texture: 2267913032000, "Texture::file41", "" {
  2199. Type: "TextureVideoClip"
  2200. Version: 202
  2201. TextureName: "Texture::file41"
  2202. Properties70: {
  2203. P: "CurrentTextureBlendMode", "enum", "", "",0
  2204. P: "UVSet", "KString", "", "", "UVmap_0"
  2205. P: "UseMaterial", "bool", "", "",1
  2206. }
  2207. Media: "Video::file41"
  2208. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Tileable_01_BC.png"
  2209. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Tileable_01_BC.png"
  2210. ModelUVTranslation: 0,0
  2211. ModelUVScaling: 1,1
  2212. Texture_Alpha_Source: "None"
  2213. Cropping: 0,0,0,0
  2214. }
  2215. Texture: 2267913051680, "Texture::file43", "" {
  2216. Type: "TextureVideoClip"
  2217. Version: 202
  2218. TextureName: "Texture::file43"
  2219. Properties70: {
  2220. P: "CurrentTextureBlendMode", "enum", "", "",0
  2221. P: "UVSet", "KString", "", "", "UVmap_0"
  2222. P: "UseMaterial", "bool", "", "",1
  2223. }
  2224. Media: "Video::file43"
  2225. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Ivy_Atlas_01_BC.png"
  2226. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Ivy_Atlas_01_BC.png"
  2227. ModelUVTranslation: 0,0
  2228. ModelUVScaling: 1,1
  2229. Texture_Alpha_Source: "None"
  2230. Cropping: 0,0,0,0
  2231. }
  2232. AnimationStack: 2268394789424, "AnimStack::Take 001", "" {
  2233. Properties70: {
  2234. P: "LocalStart", "KTime", "Time", "",1539538600
  2235. P: "LocalStop", "KTime", "Time", "",46186158000
  2236. P: "ReferenceStart", "KTime", "Time", "",1539538600
  2237. P: "ReferenceStop", "KTime", "Time", "",46186158000
  2238. }
  2239. }
  2240. AnimationLayer: 2272349526512, "AnimLayer::BaseLayer", "" {
  2241. }
  2242. }
  2243. ; Object connections
  2244. ;------------------------------------------------------------------
  2245. Connections: {
  2246. ;Model::SM_Ivy_Preset_06, Model::RootNode
  2247. C: "OO",2268468994064,0
  2248. ;AnimLayer::BaseLayer, AnimStack::Take 001
  2249. C: "OO",2272349526512,2268394789424
  2250. ;NodeAttribute::, Model::SM_Ivy_Preset_06
  2251. C: "OO",2270628000656,2268468994064
  2252. ;Model::LOD_Group_SM_Ivy_Preset_06, Model::SM_Ivy_Preset_06
  2253. C: "OO",2268468991744,2268468994064
  2254. ;NodeAttribute::, Model::LOD_Group_SM_Ivy_Preset_06
  2255. C: "OO",2268467037120,2268468991744
  2256. ;Model::SM_Ivy_Preset_06_LOD0, Model::LOD_Group_SM_Ivy_Preset_06
  2257. C: "OO",2268468966224,2268468991744
  2258. ;Model::SM_Ivy_Preset_06_LOD1, Model::LOD_Group_SM_Ivy_Preset_06
  2259. C: "OO",2268468998704,2268468991744
  2260. ;Model::SM_Ivy_Preset_06_LOD2, Model::LOD_Group_SM_Ivy_Preset_06
  2261. C: "OO",2268468968544,2268468991744
  2262. ;Texture::file40, Material::MI_Ivy_Tileable_01
  2263. C: "OP",2267913053120,2267913051200, "DiffuseColor"
  2264. ;Texture::file41, Material::MI_Ivy_Tileable_01
  2265. C: "OP",2267913032000,2267913051200, "TransparentColor"
  2266. ;Texture::file42, Material::MI_Ivy_Atlas_01
  2267. C: "OP",2267913035360,2267913034880, "DiffuseColor"
  2268. ;Texture::file43, Material::MI_Ivy_Atlas_01
  2269. C: "OP",2267913051680,2267913034880, "TransparentColor"
  2270. ;Video::file40, Texture::file40
  2271. C: "OO",2268161663952,2267913053120
  2272. ;Video::file42, Texture::file42
  2273. C: "OO",2268161662752,2267913035360
  2274. ;Video::file41, Texture::file41
  2275. C: "OO",2268161652752,2267913032000
  2276. ;Video::file43, Texture::file43
  2277. C: "OO",2268161655952,2267913051680
  2278. ;Geometry::, Model::SM_Ivy_Preset_06_LOD0
  2279. C: "OO",2267733796512,2268468966224
  2280. ;Material::MI_Ivy_Tileable_01, Model::SM_Ivy_Preset_06_LOD0
  2281. C: "OO",2267913051200,2268468966224
  2282. ;Material::MI_Ivy_Atlas_01, Model::SM_Ivy_Preset_06_LOD0
  2283. C: "OO",2267913034880,2268468966224
  2284. ;Geometry::, Model::SM_Ivy_Preset_06_LOD1
  2285. C: "OO",2267733790880,2268468998704
  2286. ;Material::MI_Ivy_Tileable_01, Model::SM_Ivy_Preset_06_LOD1
  2287. C: "OO",2267913051200,2268468998704
  2288. ;Material::MI_Ivy_Atlas_01, Model::SM_Ivy_Preset_06_LOD1
  2289. C: "OO",2267913034880,2268468998704
  2290. ;Geometry::, Model::SM_Ivy_Preset_06_LOD2
  2291. C: "OO",2267733782176,2268468968544
  2292. ;Material::MI_Ivy_Tileable_01, Model::SM_Ivy_Preset_06_LOD2
  2293. C: "OO",2267913051200,2268468968544
  2294. }
  2295. ;Takes section
  2296. ;----------------------------------------------------
  2297. Takes: {
  2298. Current: "Take 001"
  2299. Take: "Take 001" {
  2300. FileName: "Take_001.tak"
  2301. LocalTime: 1539538600,46186158000
  2302. ReferenceTime: 1539538600,46186158000
  2303. }
  2304. }